2023-08-10 11:25:08 +03:00
|
|
|
from typing import Optional
|
|
|
|
from uuid import UUID
|
|
|
|
|
2023-08-02 00:03:47 +03:00
|
|
|
from models.databases.repository import Repository
|
2023-08-10 11:25:08 +03:00
|
|
|
from pydantic import BaseModel
|
|
|
|
|
|
|
|
|
|
|
|
class CreateChatHistory(BaseModel):
|
|
|
|
chat_id: UUID
|
|
|
|
user_message: str
|
|
|
|
assistant: str
|
|
|
|
prompt_id: Optional[UUID]
|
|
|
|
brain_id: Optional[UUID]
|
2023-08-02 00:03:47 +03:00
|
|
|
|
|
|
|
|
|
|
|
class Chats(Repository):
|
|
|
|
def __init__(self, supabase_client):
|
|
|
|
self.db = supabase_client
|
|
|
|
|
|
|
|
def create_chat(self, new_chat):
|
|
|
|
response = self.db.table("chats").insert(new_chat).execute()
|
|
|
|
return response
|
|
|
|
|
|
|
|
def get_chat_by_id(self, chat_id: str):
|
|
|
|
response = (
|
|
|
|
self.db.from_("chats")
|
|
|
|
.select("*")
|
|
|
|
.filter("chat_id", "eq", chat_id)
|
|
|
|
.execute()
|
|
|
|
)
|
|
|
|
return response
|
|
|
|
|
|
|
|
def get_chat_history(self, chat_id: str):
|
|
|
|
reponse = (
|
|
|
|
self.db.from_("chat_history")
|
|
|
|
.select("*")
|
|
|
|
.filter("chat_id", "eq", chat_id)
|
|
|
|
.order("message_time", desc=False) # Add the ORDER BY clause
|
|
|
|
.execute()
|
|
|
|
)
|
|
|
|
|
|
|
|
return reponse
|
|
|
|
|
|
|
|
def get_user_chats(self, user_id: str):
|
|
|
|
response = (
|
|
|
|
self.db.from_("chats")
|
|
|
|
.select("chat_id,user_id,creation_time,chat_name")
|
|
|
|
.filter("user_id", "eq", user_id)
|
|
|
|
.execute()
|
|
|
|
)
|
|
|
|
return response
|
|
|
|
|
2023-08-10 11:25:08 +03:00
|
|
|
def update_chat_history(self, chat_history: CreateChatHistory):
|
2023-08-02 00:03:47 +03:00
|
|
|
response = (
|
|
|
|
self.db.table("chat_history")
|
|
|
|
.insert(
|
|
|
|
{
|
2023-08-10 11:25:08 +03:00
|
|
|
"chat_id": str(chat_history.chat_id),
|
|
|
|
"user_message": chat_history.user_message,
|
|
|
|
"assistant": chat_history.assistant,
|
|
|
|
"prompt_id": str(chat_history.prompt_id)
|
|
|
|
if chat_history.prompt_id
|
|
|
|
else None,
|
|
|
|
"brain_id": str(chat_history.brain_id)
|
|
|
|
if chat_history.brain_id
|
|
|
|
else None,
|
2023-08-02 00:03:47 +03:00
|
|
|
}
|
|
|
|
)
|
|
|
|
.execute()
|
|
|
|
)
|
|
|
|
|
|
|
|
return response
|
|
|
|
|
|
|
|
def update_chat(self, chat_id, updates):
|
|
|
|
response = (
|
|
|
|
self.db.table("chats").update(updates).match({"chat_id": chat_id}).execute()
|
|
|
|
)
|
|
|
|
|
|
|
|
return response
|
|
|
|
|
|
|
|
def update_message_by_id(self, message_id, updates):
|
|
|
|
response = (
|
|
|
|
self.db.table("chat_history")
|
|
|
|
.update(updates)
|
|
|
|
.match({"message_id": message_id})
|
|
|
|
.execute()
|
|
|
|
)
|
|
|
|
|
|
|
|
return response
|
|
|
|
|
|
|
|
def get_chat_details(self, chat_id):
|
|
|
|
response = (
|
|
|
|
self.db.from_("chats")
|
|
|
|
.select("*")
|
|
|
|
.filter("chat_id", "eq", chat_id)
|
|
|
|
.execute()
|
|
|
|
)
|
|
|
|
return response
|
|
|
|
|
|
|
|
def delete_chat(self, chat_id):
|
2023-08-03 13:15:33 +03:00
|
|
|
self.db.table("chats").delete().match({"chat_id": chat_id}).execute()
|
2023-08-02 00:03:47 +03:00
|
|
|
|
|
|
|
def delete_chat_history(self, chat_id):
|
|
|
|
self.db.table("chat_history").delete().match({"chat_id": chat_id}).execute()
|