mirror of
https://github.com/QuivrHQ/quivr.git
synced 2024-12-23 23:22:15 +03:00
11f76f4e75
# Description Please include a summary of the changes and the related issue. Please also include relevant motivation and context. ## Checklist before requesting a review Please delete options that are not relevant. - [ ] My code follows the style guidelines of this project - [ ] I have performed a self-review of my code - [ ] I have commented hard-to-understand areas - [ ] I have ideally added tests that prove my fix is effective or that my feature works - [ ] New and existing unit tests pass locally with my changes - [ ] Any dependent changes have been merged ## Screenshots (if appropriate):
103 lines
2.7 KiB
Python
103 lines
2.7 KiB
Python
from fastapi import HTTPException
|
|
from models.settings import get_supabase_client
|
|
from modules.prompt.entity.prompt import Prompt
|
|
from modules.prompt.repository.prompts_interface import (
|
|
DeletePromptResponse,
|
|
PromptsInterface,
|
|
)
|
|
|
|
|
|
class Prompts(PromptsInterface):
|
|
def __init__(self):
|
|
supabase_client = get_supabase_client()
|
|
self.db = supabase_client
|
|
|
|
def create_prompt(self, prompt):
|
|
"""
|
|
Create a prompt
|
|
"""
|
|
|
|
response = (self.db.from_("prompts").insert(prompt.dict()).execute()).data
|
|
|
|
return Prompt(**response[0])
|
|
|
|
def delete_prompt_by_id(self, prompt_id):
|
|
"""
|
|
Delete a prompt by id
|
|
Args:
|
|
prompt_id (UUID): The id of the prompt
|
|
|
|
Returns:
|
|
A dictionary containing the status of the delete and prompt_id of the deleted prompt
|
|
"""
|
|
|
|
# Update brains where prompt_id is equal to the value to NULL
|
|
self.db.from_("brains").update({"prompt_id": None}).filter(
|
|
"prompt_id", "eq", prompt_id
|
|
).execute()
|
|
|
|
# Update chat_history where prompt_id is equal to the value to NULL
|
|
self.db.from_("chat_history").update({"prompt_id": None}).filter(
|
|
"prompt_id", "eq", prompt_id
|
|
).execute()
|
|
|
|
# Delete the prompt
|
|
response = (
|
|
self.db.from_("prompts")
|
|
.delete()
|
|
.filter("id", "eq", prompt_id)
|
|
.execute()
|
|
.data
|
|
)
|
|
|
|
if response == []:
|
|
raise HTTPException(404, "Prompt not found")
|
|
|
|
return DeletePromptResponse(status="deleted", prompt_id=prompt_id)
|
|
|
|
def get_prompt_by_id(self, prompt_id):
|
|
"""
|
|
Get a prompt by its id
|
|
|
|
Args:
|
|
prompt_id (UUID): The id of the prompt
|
|
|
|
Returns:
|
|
Prompt: The prompt
|
|
"""
|
|
|
|
response = (
|
|
self.db.from_("prompts").select("*").filter("id", "eq", prompt_id).execute()
|
|
).data
|
|
|
|
if response == []:
|
|
return None
|
|
return Prompt(**response[0])
|
|
|
|
def get_public_prompts(self):
|
|
"""
|
|
List all public prompts
|
|
"""
|
|
|
|
return (
|
|
self.db.from_("prompts")
|
|
.select("*")
|
|
.filter("status", "eq", "public")
|
|
.execute()
|
|
).data
|
|
|
|
def update_prompt_by_id(self, prompt_id, prompt):
|
|
"""Update a prompt by id"""
|
|
|
|
response = (
|
|
self.db.from_("prompts")
|
|
.update(prompt.dict(exclude_unset=True))
|
|
.filter("id", "eq", prompt_id)
|
|
.execute()
|
|
).data
|
|
|
|
if response == []:
|
|
raise HTTPException(404, "Prompt not found")
|
|
|
|
return Prompt(**response[0])
|