fix(mcp): resolve undefined variable typo in mcp_handler

This commit is contained in:
Arjun Pakhan 2026-08-19 08:24:59 +00:00
parent 85947db913
commit 243ee552a5

View file

@ -89,7 +89,7 @@ async def anthropic_messages_with_mcp(
max_tokens=max_tokens,
messages=list(messages),
model=model,
tools=list(lists) if tools else None, # kwargs-ok: param pass-through
tools=list(tools) if tools else None, # kwargs-ok: param pass-through
_skip_mcp_handler=True,
**kwargs,
)