fix(utils.py): fix pydantic object default values

This commit is contained in:
Krrish Dholakia 2024-05-01 22:51:46 -07:00
parent a241cdb818
commit 4fe55a28fc
2 changed files with 12 additions and 4 deletions

View file

@ -205,6 +205,8 @@ async def test_langfuse_logging_without_request_response(stream):
assert _trace_data[0].output == {
"role": "assistant",
"content": "redacted-by-litellm",
"function_call": None,
"tool_calls": None,
}
except Exception as e: