mirror of
https://github.com/BerriAI/litellm.git
synced 2026-09-21 00:21:49 +00:00
fix(mcp): resolve undefined variable typo in mcp_handler
This commit is contained in:
parent
85947db913
commit
243ee552a5
1 changed files with 1 additions and 1 deletions
|
|
@ -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,
|
||||
)
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue