Fed-AI-Savant / src /modules /constants.py
RobertoBarrosoLuque
Add scraper
8cc0920
raw
history blame contribute delete
198 Bytes
import yaml
from pathlib import Path
_PATH_TO_CONFIGS = Path(__file__).parents[2] / "configs" / "prompt_library.yaml"
with open(_PATH_TO_CONFIGS, "r") as f:
PROMPT_LIBRARY = yaml.safe_load(f)