mirror of
https://github.com/QuivrHQ/quivr.git
synced 2024-12-15 17:43:03 +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
18 lines
353 B
Python
18 lines
353 B
Python
from uuid import UUID
|
|
|
|
from models import Prompt, get_supabase_db
|
|
|
|
|
|
def get_prompt_by_id(prompt_id: UUID) -> Prompt | None:
|
|
"""
|
|
Get a prompt by its id
|
|
|
|
Args:
|
|
prompt_id (UUID): The id of the prompt
|
|
|
|
Returns:
|
|
Prompt: The prompt
|
|
"""
|
|
supabase_db = get_supabase_db()
|
|
return supabase_db.get_prompt_by_id(prompt_id)
|