mirror of
https://github.com/QuivrHQ/quivr.git
synced 2024-12-22 05:41:39 +03:00
10 lines
239 B
Python
10 lines
239 B
Python
from models.chat import Chat
|
|
from models.settings import 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])
|