website_everyday_builder / load_master_prompt.py
Daviddolor's picture
Fix model selection and add tools passthrough for function-calling
81c99eb
Raw
History Blame Contribute Delete
267 Bytes
from pathlib import Path
MASTER_PROMPT_FILE = "/opt/dolor3v/master_builder_prompt.txt"
def load_master_prompt():
try:
return Path(MASTER_PROMPT_FILE).read_text(encoding="utf-8")
except Exception as e:
return f"MASTER PROMPT LOAD ERROR: {e}"