File: examples/agents/settings.py
Symptom: Docstring says "If unset, defaults to anthropic/claude-sonnet-4-6"; the code says llm_model: str = "openai/gpt-4o".
Cause: Docstring not updated with the default.
Fix: Correct the docstring.
Why it matters now: claude-sonnet-4-6 is the model that breaks the framework-agent examples, so a reader trusting the docstring concludes the default config is broken.
File:
examples/agents/settings.pySymptom: Docstring says "If unset, defaults to
anthropic/claude-sonnet-4-6"; the code saysllm_model: str = "openai/gpt-4o".Cause: Docstring not updated with the default.
Fix: Correct the docstring.
Why it matters now:
claude-sonnet-4-6is the model that breaks the framework-agent examples, so a reader trusting the docstring concludes the default config is broken.