kevinalexmathews commited on
Commit
8e0bca8
·
verified ·
1 Parent(s): fe72ed5

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +4 -2
app.py CHANGED
@@ -4,7 +4,9 @@ import datetime
4
  import requests
5
  import pytz
6
  import yaml
7
- from tools.final_answer import FinalAnswerTool
 
 
8
 
9
  # Below is an example of a tool that does nothing. Amaze us with your creativity !
10
  @tool
@@ -67,4 +69,4 @@ agent = CodeAgent(
67
  prompt_templates=prompt_templates
68
  )
69
 
70
- agent.run("Search for the best music recommendations for a party at the Wayne's mansion.")
 
4
  import requests
5
  import pytz
6
  import yaml
7
+ from tools.final_answer import
8
+
9
+ from Gradio_UI import GradioUI
10
 
11
  # Below is an example of a tool that does nothing. Amaze us with your creativity !
12
  @tool
 
69
  prompt_templates=prompt_templates
70
  )
71
 
72
+ GradioUI(agent).launch()