forked from phoenix-oss/llama-stack-mirror
fix: time logging format (#1281)
Summary: missed in last PR Test Plan: ``` LLAMA_STACK_CONFIG=fireworks pytest -s -v tests/client-sdk/agents/test_agents.py::test_create_turn_response --safety-shield meta-llama/Llama-Guard-3-8B ```
This commit is contained in:
parent
6b075e5075
commit
fca84db5b0
1 changed files with 1 additions and 1 deletions
|
@ -746,7 +746,7 @@ class ChatAgent(ShieldRunnerMixin):
|
||||||
)
|
)
|
||||||
],
|
],
|
||||||
started_at=tool_execution_start_time,
|
started_at=tool_execution_start_time,
|
||||||
completed_at=datetime.now(),
|
completed_at=datetime.now().astimezone().isoformat(),
|
||||||
),
|
),
|
||||||
)
|
)
|
||||||
)
|
)
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue