From cd49e3de499d1079f119d290e73c5f7899ec791b Mon Sep 17 00:00:00 2001 From: Dillon DuPont Date: Wed, 19 Nov 2025 11:09:42 -0500 Subject: [PATCH] Remove hardcoded test api url --- libs/python/agent/agent/adapters/cua_adapter.py | 1 - 1 file changed, 1 deletion(-) diff --git a/libs/python/agent/agent/adapters/cua_adapter.py b/libs/python/agent/agent/adapters/cua_adapter.py index 1bc2ca24..76ecb7e4 100644 --- a/libs/python/agent/agent/adapters/cua_adapter.py +++ b/libs/python/agent/agent/adapters/cua_adapter.py @@ -71,7 +71,6 @@ class CUAAdapter(CustomLLM): if "anthropic/" in model: model = f"anthropic/{self._normalize_model(model)}" api_base = api_base.removesuffix("/v1") - api_base = "http://127.0.0.1:5001" else: model = f"openai/{self._normalize_model(model)}"