AI_Agent_Final_Assignment / get_prompts.py
shulapy's picture
final-agent-code (#1)
6e31f04 verified
# Get the prompt from the file
import yaml
with open("prompts.yaml", 'r') as stream:
prompt_templates = yaml.safe_load(stream)
system_prompt = prompt_templates["system_prompt"]