mirror of
https://github.com/tiennm99/litellm.git
synced 2026-08-12 20:22:46 +00:00
fix llm responses
This commit is contained in:
@@ -44,5 +44,10 @@ async def test_mcp_agent():
|
||||
print("LLM RESPONSE: ", json.dumps(llm_response, indent=4, default=str))
|
||||
|
||||
# Add assertions to verify the response
|
||||
assert isinstance(llm_response, dict)
|
||||
print(llm_response)
|
||||
assert llm_response["choices"][0]["message"]["tool_calls"] is not None
|
||||
assert (
|
||||
llm_response["choices"][0]["message"]["tool_calls"][0]["function"][
|
||||
"name"
|
||||
]
|
||||
== "add"
|
||||
)
|
||||
|
||||
Reference in New Issue
Block a user