From eb0f03ab7e42ca491b9b11c39159b06648bcfb90 Mon Sep 17 00:00:00 2001 From: aserrador Date: Tue, 7 Apr 2026 02:41:29 -0500 Subject: [PATCH] fix: Update host ip --- src/ui/src/ui/agent_client.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ui/src/ui/agent_client.py b/src/ui/src/ui/agent_client.py index db27f3f..8129ae0 100644 --- a/src/ui/src/ui/agent_client.py +++ b/src/ui/src/ui/agent_client.py @@ -10,7 +10,7 @@ class AgentClient: logger.info(f"Sending message to agent: {message}") response = await self._client.post( - "http://192.168.58.109:8010/chat", + "http://localhost:8010/chat", json={"messages": message}, timeout=60 )