Update app.py
Browse files
app.py
CHANGED
@@ -4,7 +4,9 @@ import datetime
|
|
4 |
import requests
|
5 |
import pytz
|
6 |
import yaml
|
7 |
-
from tools.final_answer import
|
|
|
|
|
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.
|
|
|
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()
|