From 0895ca0f5962818cd30d569e1b83cefd934cc742 Mon Sep 17 00:00:00 2001 From: Asia <2736300+humpydonkey@users.noreply.github.com> Date: Fri, 26 Jul 2024 09:08:32 +0800 Subject: [PATCH] Switch to prod tool endpoint Switch the tool endpoint to the production endpoint --- vision_agent/tools/tool_utils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vision_agent/tools/tool_utils.py b/vision_agent/tools/tool_utils.py index c65019fb..452d7f76 100644 --- a/vision_agent/tools/tool_utils.py +++ b/vision_agent/tools/tool_utils.py @@ -14,7 +14,7 @@ _LOGGER = logging.getLogger(__name__) _LND_API_KEY = LandingaiAPIKey().api_key -_LND_API_URL = "https://api.staging.landing.ai/v1/agent" +_LND_API_URL = "https://api.landing.ai/v1/agent" class ToolCallTrace(BaseModel):