This commit is contained in:
Classic298 2025-12-30 09:15:31 +01:00 committed by GitHub
parent fe3047d53c
commit c02451178c
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 3 additions and 5 deletions

View file

@ -1647,7 +1647,7 @@ async def chat_completion(
)
# Insert chat files from parent message if any
parent_message = metadata.get("parent_message", {})
parent_message = metadata.get("parent_message") or {}
parent_message_files = parent_message.get("files", [])
if parent_message_files:
try:

View file

@ -682,10 +682,8 @@ async def get_user_pinned_chats(
async def get_user_chats(
user=Depends(get_verified_user), db: Session = Depends(get_session)
):
return [
ChatResponse(**chat.model_dump())
for chat in Chats.get_chats_by_user_id(user.id, db=db)
]
result = Chats.get_chats_by_user_id(user.id, db=db)
return [ChatResponse(**chat.model_dump()) for chat in result.items]
############################