@@ -120,22 +120,22 @@ export const agentsIntegrations: AgentIntegrationConfig[] = [
120
120
agents : async ( ) => {
121
121
return {
122
122
agentic_chat : new LangGraphHttpAgent ( {
123
- url : "http://localhost:8000/ agent/agentic_chat" ,
123
+ url : ` ${ envVars . langgraphFastApiUrl } / agent/agentic_chat` ,
124
124
} ) ,
125
125
agentic_generative_ui : new LangGraphHttpAgent ( {
126
- url : "http://localhost:8000/ agent/agentic_generative_ui" ,
126
+ url : ` ${ envVars . langgraphFastApiUrl } / agent/agentic_generative_ui` ,
127
127
} ) ,
128
128
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` ,
130
130
} ) ,
131
131
predictive_state_updates : new LangGraphHttpAgent ( {
132
- url : "http://localhost:8000/ agent/predictive_state_updates" ,
132
+ url : ` ${ envVars . langgraphFastApiUrl } / agent/predictive_state_updates` ,
133
133
} ) ,
134
134
shared_state : new LangGraphHttpAgent ( {
135
- url : "http://localhost:8000/ agent/shared_state" ,
135
+ url : ` ${ envVars . langgraphFastApiUrl } / agent/shared_state` ,
136
136
} ) ,
137
137
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` ,
139
139
} ) ,
140
140
} ;
141
141
} ,
0 commit comments