@@ -146,22 +146,22 @@ export const agentsIntegrations: AgentIntegrationConfig[] = [
146
146
agents : async ( ) => {
147
147
return {
148
148
agentic_chat : new LangGraphHttpAgent ( {
149
- url : "http://localhost:8000/ agent/agentic_chat" ,
149
+ url : ` ${ envVars . langgraphFastApiUrl } / agent/agentic_chat` ,
150
150
} ) ,
151
151
agentic_generative_ui : new LangGraphHttpAgent ( {
152
- url : "http://localhost:8000/ agent/agentic_generative_ui" ,
152
+ url : ` ${ envVars . langgraphFastApiUrl } / agent/agentic_generative_ui` ,
153
153
} ) ,
154
154
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` ,
156
156
} ) ,
157
157
predictive_state_updates : new LangGraphHttpAgent ( {
158
- url : "http://localhost:8000/ agent/predictive_state_updates" ,
158
+ url : ` ${ envVars . langgraphFastApiUrl } / agent/predictive_state_updates` ,
159
159
} ) ,
160
160
shared_state : new LangGraphHttpAgent ( {
161
- url : "http://localhost:8000/ agent/shared_state" ,
161
+ url : ` ${ envVars . langgraphFastApiUrl } / agent/shared_state` ,
162
162
} ) ,
163
163
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` ,
165
165
} ) ,
166
166
} ;
167
167
} ,
0 commit comments