8000
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 b0fff28 commit 12a5d43Copy full SHA for 12a5d43
src/google/adk/models/lite_llm.py
@@ -673,7 +673,9 @@ async def generate_content_async(
673
function_calls[index]["name"] += chunk.name
674
if chunk.args:
675
function_calls[index]["args"] += chunk.args
676
- function_calls[index]["id"] = chunk.id or function_calls[index]["id"]
+ function_calls[index]["id"] = (
677
+ chunk.id or function_calls[index]["id"]
678
+ )
679
elif isinstance(chunk, TextChunk):
680
text += chunk.text
681
yield _message_to_generate_content_response(
0 commit comments