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
- settings.py docstring claimed the default model was
anthropic/claude-sonnet-4-6; the code defaults to openai/gpt-4o (#485).
- Add langchain-anthropic to the langchain and agents extras, so
langgraph/43_react_agent_multi_model.py runs after the documented
install. It requires anthropic >=0.120 and langchain-core >=1.5.4, which
the lock file now reflects (#486).
- Wrap the body of langgraph/46_crash_and_resume.py in a __main__ guard.
Without it, spawned workers re-imported the module and re-ran the whole
demo. The tools and graph stay at module level so workers can still
rebuild them (#489).
- Replace anthropic/claude-sonnet-4-20250514, which the API answers with
404 not_found_error, with anthropic/claude-sonnet-5, the replacement
#494 verified against a live server (#480).
- 74_cli_error_output.py asserted against result.output, which is a dict,
so the substring check tested keys and the example could never pass. Use
str(result.output), as the other examples that need a string do (#481).
- Point run_examples.sh at examples/agents. It globbed examples/, where no
numbered examples live, so it collected nothing and always passed (#484).
Because that glob matched nothing, the script's skip list had never been
exercised. Add the examples that must not run unattended: seven that act on
real third-party accounts, and eight that block on stdin with no canned
response. --all still runs them.
Co-Authored-By: Claude Opus 5 (1M context) <noreply@anthropic.com>
0 commit comments