@@ -120,22 +120,22 @@ export const agentsIntegrations: AgentIntegrationConfig[] = [
120120 agents : async ( ) => {
121121 return {
122122 agentic_chat : new LangGraphHttpAgent ( {
123- url : "http://localhost:8000/ agent/agentic_chat" ,
123+ url : ` ${ envVars . langgraphFastApiUrl } / agent/agentic_chat` ,
124124 } ) ,
125125 agentic_generative_ui : new LangGraphHttpAgent ( {
126- url : "http://localhost:8000/ agent/agentic_generative_ui" ,
126+ url : ` ${ envVars . langgraphFastApiUrl } / agent/agentic_generative_ui` ,
127127 } ) ,
128128 human_in_the_loop : new LangGraphHttpAgent ( {
129- url : "http://localhost:8000/ agent/human_in_the_loop" ,
129+ url : ` ${ envVars . langgraphFastApiUrl } / agent/human_in_the_loop` ,
130130 } ) ,
131131 predictive_state_updates : new LangGraphHttpAgent ( {
132- url : "http://localhost:8000/ agent/predictive_state_updates" ,
132+ url : ` ${ envVars . langgraphFastApiUrl } / agent/predictive_state_updates` ,
133133 } ) ,
134134 shared_state : new LangGraphHttpAgent ( {
135- url : "http://localhost:8000/ agent/shared_state" ,
135+ url : ` ${ envVars . langgraphFastApiUrl } / agent/shared_state` ,
136136 } ) ,
137137 tool_based_generative_ui : new LangGraphHttpAgent ( {
138- url : "http://localhost:8000/ agent/tool_based_generative_ui" ,
138+ url : ` ${ envVars . langgraphFastApiUrl } / agent/tool_based_generative_ui` ,
139139 } ) ,
140140 } ;
141141 } ,
0 commit comments