@@ -146,22 +146,22 @@ export const agentsIntegrations: AgentIntegrationConfig[] = [
146146 agents : async ( ) => {
147147 return {
148148 agentic_chat : new LangGraphHttpAgent ( {
149- url : "http://localhost:8000/ agent/agentic_chat" ,
149+ url : ` ${ envVars . langgraphFastApiUrl } / agent/agentic_chat` ,
150150 } ) ,
151151 agentic_generative_ui : new LangGraphHttpAgent ( {
152- url : "http://localhost:8000/ agent/agentic_generative_ui" ,
152+ url : ` ${ envVars . langgraphFastApiUrl } / agent/agentic_generative_ui` ,
153153 } ) ,
154154 human_in_the_loop : new LangGraphHttpAgent ( {
155- url : "http://localhost:8000/ agent/human_in_the_loop" ,
155+ url : ` ${ envVars . langgraphFastApiUrl } / agent/human_in_the_loop` ,
156156 } ) ,
157157 predictive_state_updates : new LangGraphHttpAgent ( {
158- url : "http://localhost:8000/ agent/predictive_state_updates" ,
158+ url : ` ${ envVars . langgraphFastApiUrl } / agent/predictive_state_updates` ,
159159 } ) ,
160160 shared_state : new LangGraphHttpAgent ( {
161- url : "http://localhost:8000/ agent/shared_state" ,
161+ url : ` ${ envVars . langgraphFastApiUrl } / agent/shared_state` ,
162162 } ) ,
163163 tool_based_generative_ui : new LangGraphHttpAgent ( {
164- url : "http://localhost:8000/ agent/tool_based_generative_ui" ,
164+ url : ` ${ envVars . langgraphFastApiUrl } / agent/tool_based_generative_ui` ,
165165 } ) ,
166166 } ;
167167 } ,
0 commit comments