Skip to content

v0.7.1

Latest

Choose a tag to compare

@github-actions github-actions released this 26 May 18:49
· 8 commits to main since this release
  • Fix for #45 Persistent Global Instructions — v0.7.0 saved your global prompt to MMKV but never injected it into any LLM call. The injection helper was wired into AgentConfig.Builder.build() but the runtime construction path is ResolvedModelConfig.toAgentConfig() which uses the data class constructor directly. Verified via in-app logs: zero PromptUtils entries on v0.7.0 even with the prompt set. v0.7.1 also injects in toAgentConfig so the global prompt now reaches every cloud + local LLM call.