




























1
we are trying to deploy our agents using the self-host standalone ,
we added the LANGGRAPH_AUTH_TYPE=noop in dockercompose environment .
we removed the auth from the config file
{
"node_version": "20",
"graphs": {
"programmer": "./apps/open-swe/src/graphs/programmer/index.ts:graph",
"planner": "./apps/open-swe/src/graphs/planner/index.ts:graph",
"manager": "./apps/open-swe/src/graphs/manager/index.ts:graph",
"new-project": "./apps/open-swe/src/graphs/new-project/index.ts:graph"
},
"env": "./apps/open-swe/.env",
"dependencies": ["./apps/open-swe"],
"http": {
"app": "./apps/open-swe/src/routes/app.ts:app",
"configurable_headers": {
"include": ["x-github-admin-id","x-github-access-token","x-github-installation-id", "x-github-installation-token", "x-github-installation-name", "x-github-user-id","x-github-user-login","x-is-default-github"]
}
}
}
the custom routes was returning not found on cloud .
issue fixed when we add
ENV LANGGRAPH_HTTP='{"app":
"./apps/open-swe/src/routes/app.ts:app"
}' in the docker file which is not added using the command : langgraph dockerfile -c langgraph.json ./Dockerfile .
unlike in python which add the custom route in the docker file .
gdrouet 3
Do you use the same variable to configure the configurable_headers ?
此内容由惯性聚合(RSS阅读器)自动聚合整理,仅供阅读参考。 原文来自 — 版权归原作者所有。