chatvns / app /prompts /__init__.py
liamxdev's picture
Upload folder using huggingface_hub
34b531b verified
Raw
History Blame Contribute Delete
296 Bytes
from __future__ import annotations
from functools import lru_cache
from pathlib import Path
PROMPTS_DIR = Path(__file__).resolve().parent
@lru_cache(maxsize=32)
def load_prompt(name: str) -> str:
path = PROMPTS_DIR / name
return path.read_text(encoding="utf-8").strip()