fi: timestamp precision to millisec instead of micro

This commit is contained in:
Sabiha Khan 2026-07-06 09:28:48 +05:30
parent 44053d0a6d
commit 058565726b
2 changed files with 10 additions and 1 deletions

View file

@ -129,7 +129,7 @@ class InMemoryLogsBuffer:
@staticmethod
def _now_iso() -> str:
return datetime.now(UTC).isoformat()
return datetime.now(UTC).isoformat(timespec="milliseconds")
def mark_user_started_speaking(self):
"""Record when the user started speaking for the current turn."""