fix: Naprawiono błąd w API konwersacji (started_at zamiast created_at)

Model AIChatConversation używa started_at, nie created_at.

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
Maciej Pienczyn 2026-01-14 07:42:19 +01:00
parent 80c0b0005c
commit 26e17ba1e3

2
app.py
View File

@ -4310,7 +4310,7 @@ def chat_list_conversations():
{
'id': c.id,
'title': c.title,
'created_at': c.created_at.isoformat() if c.created_at else None,
'created_at': c.started_at.isoformat() if c.started_at else None,
'updated_at': c.updated_at.isoformat() if c.updated_at else None,
'message_count': len(c.messages) if c.messages else 0
}