mirror of
https://github.com/StanGirard/quivr.git
synced 2024-12-12 00:24:05 +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
9 lines
207 B
Python
9 lines
207 B
Python
from models import Chat, get_supabase_db
|
|
|
|
|
|
def get_chat_by_id(chat_id: str) -> Chat:
|
|
supabase_db = get_supabase_db()
|
|
|
|
response = supabase_db.get_chat_by_id(chat_id)
|
|
return Chat(response.data[0])
|