mirror of
https://github.com/StanGirard/quivr.git
synced 2024-12-13 07:14:54 +03:00
8af6d61e76
* reorganize import level * add __init__, reorganize import from __init__ * reorganize import level * reorganize import level * fix circular import error by keep the import deep as "from models.settings" * fix the relative import * restor unwanted staged files * add backend/venv and backend/.env to gitignore * clean importing
11 lines
281 B
Python
11 lines
281 B
Python
from typing import List
|
|
|
|
from models import Chat, get_supabase_db
|
|
|
|
|
|
def get_user_chats(user_id: str) -> List[Chat]:
|
|
supabase_db = get_supabase_db()
|
|
response = supabase_db.get_user_chats(user_id)
|
|
chats = [Chat(chat_dict) for chat_dict in response.data]
|
|
return chats
|