mirror of
https://github.com/StanGirard/quivr.git
synced 2024-12-14 21:21:56 +03:00
11 lines
245 B
Python
11 lines
245 B
Python
from models.prompt import Prompt
|
|
from models.settings import get_supabase_db
|
|
|
|
|
|
def get_public_prompts() -> list[Prompt]:
|
|
"""
|
|
List all public prompts
|
|
"""
|
|
supabase_db = get_supabase_db()
|
|
return supabase_db.get_public_prompts()
|