Spaces:
Running
Running
File size: 198 Bytes
8cc0920 |
1 2 3 4 5 6 7 8 |
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)
|