# preset.py
with open("theory.md", "r", encoding="utf-8") as f:
    theory_content = f.read()

# litert-lm automatically looks for system_instruction or system_prompt variables
system_instruction = f"""You are a helpful assistant. Use the following theory documentation as context for our conversation:

<theory>
{theory_content}
</theory>"""
