We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 889f009 commit 469d395Copy full SHA for 469d395
tests/local_testing/test_stream_chunk_builder.py
@@ -931,9 +931,6 @@ def execute_completion(opts: dict):
931
print("\n\n")
932
assembly = litellm.stream_chunk_builder(partial_streaming_chunks)
933
print(f"assembly.choices[0].message.tool_calls: {assembly.choices[0].message.tool_calls}")
934
- assert len(assembly.choices[0].message.tool_calls) == 3, (
935
- assembly.choices[0].message.tool_calls[0].function.arguments[0]
936
- )
937
print(assembly.choices[0].message.tool_calls)
938
for tool_call in assembly.choices[0].message.tool_calls:
939
json.loads(tool_call.function.arguments) # assert valid json - https://github.com/BerriAI/litellm/issues/10034
0 commit comments