Files
Airtep/gig-poc/apps/api/app/utils/prompts.py
2026-03-30 20:49:40 +08:00

6 lines
107 B
Python

from pathlib import Path
def load_prompt(path: Path) -> str:
return path.read_text(encoding="utf-8")