jeyasee commited on
Commit
507a637
·
verified ·
1 Parent(s): f4c42ee

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -0
app.py CHANGED
@@ -90,6 +90,8 @@ custom_role_conversions=None,
90
  # Import tool from Hub
91
  image_generation_tool = load_tool("agents-course/text-to-image", trust_remote_code=True)
92
 
 
 
93
  with open("prompts.yaml", 'r') as stream:
94
  prompt_templates = yaml.safe_load(stream)
95
 
 
90
  # Import tool from Hub
91
  image_generation_tool = load_tool("agents-course/text-to-image", trust_remote_code=True)
92
 
93
+ # initialize duckduck go search tool
94
+ duckduckgosearch_tool = DuckDuckGoSearchTool()
95
  with open("prompts.yaml", 'r') as stream:
96
  prompt_templates = yaml.safe_load(stream)
97