mirror of
https://github.com/langchain-ai/langgraph.git
synced 2026-08-26 17:42:24 +02:00
Rename the default config filename from `langgraph.json` to `langsmith.json` as part of the "LangGraph Platform" to "LangSmith Deployment" rebranding. Backward compatibility is preserved: the CLI falls back to `langgraph.json` with a deprecation warning when `langsmith.json` is not found. A new `_resolve_config` callback handles the resolution logic for all `--config` click options. Changes span libs/cli (core logic, examples, tests), libs/sdk-py (docstrings), libs/langgraph (Makefile), and .github CI scripts. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
18 lines
339 B
JSON
18 lines
339 B
JSON
{
|
|
"pip_config_file": "./pipconf.txt",
|
|
"dependencies": [
|
|
"langchain_community",
|
|
"langchain_anthropic",
|
|
"langchain_openai",
|
|
"wikipedia",
|
|
"scikit-learn",
|
|
"./graphs"
|
|
],
|
|
"keep_pkg_tools": false,
|
|
"graphs": {
|
|
"agent": "./graphs/agent.py:graph",
|
|
"storm": "./graphs/storm.py:graph"
|
|
},
|
|
"env": ".env"
|
|
}
|