First commit

This commit is contained in:
2026-06-19 22:17:09 -03:00
commit 239203ee2a
533 changed files with 75195 additions and 0 deletions

View File

@@ -0,0 +1,11 @@
from __future__ import annotations
import yaml
from evaluator.config.settings import settings
def load_prompt(path: str, key: str) -> str:
p = settings.path(path)
data = yaml.safe_load(p.read_text()) or {}
if key not in data:
raise KeyError(f"Prompt key {key!r} not found in {p}")
return str(data[key])