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 43083ba commit 17d6042Copy full SHA for 17d6042
src/google/adk/flows/llm_flows/base_llm_flow.py
@@ -16,6 +16,7 @@
16
17
from abc import ABC
18
import asyncio
19
+import datetime
20
import inspect
21
import logging
22
from typing import AsyncGenerator
@@ -320,6 +321,7 @@ async def _run_one_step_async(
320
321
):
322
# Update the mutable event id to avoid conflict
323
model_response_event.id = Event.new_id()
324
+ model_response_event.timestamp = datetime.datetime.now().timestamp()
325
yield event
326
327
async def _preprocess_async(
0 commit comments