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:
ehhuang 2025-02-26 13:51:33 -08:00 committed by GitHub
parent 6b075e5075
commit fca84db5b0
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -746,7 +746,7 @@ class ChatAgent(ShieldRunnerMixin):
)
],
started_at=tool_execution_start_time,
completed_at=datetime.now(),
completed_at=datetime.now().astimezone().isoformat(),
),
)
)