File size: 184 Bytes
6e31f04
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
# 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"]