MariaMaraShe commited on
Commit
ddd5aa2
·
verified ·
1 Parent(s): 247a82f

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +4 -0
app.py CHANGED
@@ -7,6 +7,10 @@ import yaml
7
  import re
8
  from bs4 import BeautifulSoup
9
  from tools.final_answer import FinalAnswerTool
 
 
 
 
10
  web_search = DuckDuckGoSearchTool()
11
 
12
  from Gradio_UI import GradioUI
 
7
  import re
8
  from bs4 import BeautifulSoup
9
  from tools.final_answer import FinalAnswerTool
10
+
11
+ with open("prompts.yaml", 'r') as stream:
12
+ prompt_templates = yaml.safe_load(stream)
13
+
14
  web_search = DuckDuckGoSearchTool()
15
 
16
  from Gradio_UI import GradioUI