Skip to content

Commit 33c94b8

Browse files
authored
Removing unused code (#179)
1 parent 8f3c0e3 commit 33c94b8

File tree

1 file changed

+1
-6
lines changed

1 file changed

+1
-6
lines changed

eval_protocol/mcp/execution/policy.py

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -194,12 +194,7 @@ async def _make_llm_call(self, messages: List[Dict[str, Any]], tools: List[Dict[
194194
request_params["tools"] = tools
195195

196196
try:
197-
response = await acompletion(
198-
model=self.model_id,
199-
**request_params,
200-
# api_base="https://litellm-cloud-proxy-prod-zfdbl7ykrq-uc.a.run.app/v1",
201-
# extra_body={"tags": ["kimi-k2-tau-bench"]},
202-
)
197+
response = await acompletion(model=self.model_id, **request_params)
203198

204199
# Log cache hit/miss for monitoring
205200
hidden = getattr(response, "_hidden_params", {})

0 commit comments

Comments
 (0)