FD900 commited on
Commit
4ab5a1d
·
verified ·
1 Parent(s): c7215e2

Create prompts.py

Browse files
Files changed (1) hide show
  1. prompts.py +5 -0
prompts.py ADDED
@@ -0,0 +1,5 @@
 
 
 
 
 
 
1
+ import yaml
2
+
3
+ def load_prompts(path="prompts.yaml"):
4
+ with open(path, "r", encoding="utf-8") as f:
5
+ return yaml.safe_load(f)