mirror of
https://github.com/StanGirard/quivr.git
synced 2024-12-12 19:39:27 +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
12 lines
358 B
Python
12 lines
358 B
Python
from uuid import UUID
|
|
|
|
from models.databases.supabase.prompts import PromptUpdatableProperties
|
|
from models import Prompt, get_supabase_db
|
|
|
|
|
|
def update_prompt_by_id(prompt_id: UUID, prompt: PromptUpdatableProperties) -> Prompt:
|
|
"""Update a prompt by id"""
|
|
supabase_db = get_supabase_db()
|
|
|
|
return supabase_db.update_prompt_by_id(prompt_id, prompt)
|