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
fix: clarify architecture prompts to output only structured JSON
Changed 'When complete (STRUCTURED OUTPUT):' to
'When complete, respond with ONLY this JSON (no reasoning, tool_call, or is_final fields):'
This prevents the LLM from outputting both the old wrapper format
AND the new structured format, which was causing parsing to fail.
The LLM should now output JUST:
{"analysis": "...", "hub_nodes": [...], ...}
Instead of:
{"reasoning": "...", "is_final": true}
{"analysis": "...", ...}
0 commit comments