mirror of
https://github.com/CopilotKit/CopilotKit.git
synced 2026-09-14 16:26:20 +08:00
4dc8d465d4
Move the required, uniform D6 header-conveyance config on-disk so it rides image promotion instead of depending on a per-environment env var. Prod was missing the LANGGRAPH_HTTP configurable_headers env var, and baking the `http.configurable_headers.include: ["x-*"]` setting directly into the langgraph-python and langgraph-fastapi langgraph.json files removes the promote-time drift gap (the config now travels with the image rather than being re-supplied at each promotion). langgraph-typescript needs no change — its header conveyance is pure-code.
35 lines
1.8 KiB
JSON
35 lines
1.8 KiB
JSON
{
|
|
"dependencies": ["."],
|
|
"http": {
|
|
"configurable_headers": {
|
|
"include": ["x-*"]
|
|
}
|
|
},
|
|
"graphs": {
|
|
"sample_agent": "./src/agents/src/agent.py:graph",
|
|
"beautiful_chat": "./src/agents/src/beautiful_chat.py:graph",
|
|
"headless_complete": "./src/agents/src/headless_complete.py:graph",
|
|
"multimodal": "./src/agents/src/multimodal_agent.py:graph",
|
|
"agent_config_agent": "./src/agents/src/agent_config_agent.py:graph",
|
|
"reasoning_agent": "./src/agents/src/reasoning_agent.py:graph",
|
|
"tool_rendering": "./src/agents/src/tool_rendering_agent.py:graph",
|
|
"tool_rendering_reasoning_chain": "./src/agents/src/tool_rendering_reasoning_chain_agent.py:graph",
|
|
"interrupt_agent": "./src/agents/src/interrupt_agent.py:graph",
|
|
"a2ui_dynamic": "./src/agents/src/a2ui_dynamic.py:graph",
|
|
"a2ui_fixed": "./src/agents/src/a2ui_fixed.py:graph",
|
|
"mcp_apps": "./src/agents/src/mcp_apps_agent.py:graph",
|
|
"frontend_tools": "./src/agents/src/frontend_tools.py:graph",
|
|
"frontend_tools_async": "./src/agents/src/frontend_tools_async.py:graph",
|
|
"hitl_in_app": "./src/agents/src/hitl_in_app.py:graph",
|
|
"hitl_in_chat": "./src/agents/src/hitl_in_chat_agent.py:graph",
|
|
"hitl_steps": "./src/agents/src/hitl_steps.py:graph",
|
|
"readonly_state_agent_context": "./src/agents/src/readonly_state_agent_context.py:graph",
|
|
"byoc_hashbrown": "./src/agents/src/byoc_hashbrown_agent.py:graph",
|
|
"byoc_json_render": "./src/agents/src/byoc_json_render_agent.py:graph",
|
|
"open_gen_ui": "./src/agents/src/open_gen_ui_agent.py:graph",
|
|
"open_gen_ui_advanced": "./src/agents/src/open_gen_ui_advanced_agent.py:graph",
|
|
"shared_state_read_write": "./src/agents/src/shared_state_read_write.py:graph",
|
|
"subagents": "./src/agents/src/subagents.py:graph"
|
|
}
|
|
}
|