From d158acd376c41cdacec58972bfafb7c4428812b4 Mon Sep 17 00:00:00 2001 From: Derek Xu Date: Mon, 15 Sep 2025 17:41:01 -0700 Subject: [PATCH] fix old mistake --- eval_protocol/mcp/execution/policy.py | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/eval_protocol/mcp/execution/policy.py b/eval_protocol/mcp/execution/policy.py index 56de4f82..1adb9b95 100644 --- a/eval_protocol/mcp/execution/policy.py +++ b/eval_protocol/mcp/execution/policy.py @@ -194,12 +194,7 @@ async def _make_llm_call(self, messages: List[Dict[str, Any]], tools: List[Dict[ request_params["tools"] = tools try: - response = await acompletion( - model=self.model_id, - **request_params, - # api_base="https://litellm-cloud-proxy-prod-zfdbl7ykrq-uc.a.run.app/v1", - # extra_body={"tags": ["kimi-k2-tau-bench"]}, - ) + response = await acompletion(model=self.model_id, **request_params) # Log cache hit/miss for monitoring hidden = getattr(response, "_hidden_params", {})