You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The live residual behind the (correctly) closed #100.2641bb0 fixed the root cause for newly created agents — but two gaps remain and together they strand every pre-fix instance:
Pre-fix instances are frozen on 3B. An instance copies the model into its DO state at subscribe and never re-reads the template. So an instance created before 2641bb0 (e.g. the live lead-finder 933ebec5) is still on @cf/meta/llama-3.2-3b-instruct → useTools=false → its chat cannot call query_records and confabulates from prose. Reproduced 2026-08-02: asked for exact counts, it returned 106 / 89 (truth: 116 / 95) and said "I did not query a structured collection."
No programmatic path to change an instance's model.get_instance_state is read-only; set_instance_settings only touches declared settings; update_agent changes the template, not existing instances (verified — the instance stayed 3B after the template flip). Only the console PUT /v1/instances/:id/state can do it. So the Non-tool-capable default model silently disables ALL tools — a structured-data agent can't query its own collection #100 fix can't be automated or applied to existing instances.
Ask
A path to set/upgrade an existing instance's model (MCP set_instance_model / a state-write tool, or a one-shot "re-sync from template" action).
Optionally: a migration/backfill to move pre-fix instances declaring tools off the non-tool-capable default.
Blocks the lead-finder chat today. Relates to closed #100, agent-repo #2.
The live residual behind the (correctly) closed #100.
2641bb0fixed the root cause for newly created agents — but two gaps remain and together they strand every pre-fix instance:2641bb0(e.g. the live lead-finder933ebec5) is still on@cf/meta/llama-3.2-3b-instruct→useTools=false→ its chat cannot callquery_recordsand confabulates from prose. Reproduced 2026-08-02: asked for exact counts, it returned 106 / 89 (truth: 116 / 95) and said "I did not query a structured collection."get_instance_stateis read-only;set_instance_settingsonly touches declared settings;update_agentchanges the template, not existing instances (verified — the instance stayed 3B after the template flip). Only the consolePUT /v1/instances/:id/statecan do it. So the Non-tool-capable default model silently disables ALL tools — a structured-data agent can't query its own collection #100 fix can't be automated or applied to existing instances.Ask
set_instance_model/ a state-write tool, or a one-shot "re-sync from template" action).Blocks the lead-finder chat today. Relates to closed #100, agent-repo #2.