Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -5,6 +5,7 @@ import pytz
|
|
5 |
import yaml
|
6 |
from tools.final_answer import FinalAnswerTool
|
7 |
from tools.web_search import DuckDuckGoSearchTool
|
|
|
8 |
|
9 |
from Gradio_UI import GradioUI
|
10 |
|
@@ -55,7 +56,7 @@ with open("prompts.yaml", 'r') as stream:
|
|
55 |
agent = CodeAgent(
|
56 |
model=model,
|
57 |
tools=[
|
58 |
-
|
59 |
duck_search,
|
60 |
final_answer
|
61 |
], ## add your tools here (don't remove final answer)
|
|
|
5 |
import yaml
|
6 |
from tools.final_answer import FinalAnswerTool
|
7 |
from tools.web_search import DuckDuckGoSearchTool
|
8 |
+
from tools.normal_distrbution import generate_normal_distribution, create_histogram_and_theorical_pdf
|
9 |
|
10 |
from Gradio_UI import GradioUI
|
11 |
|
|
|
56 |
agent = CodeAgent(
|
57 |
model=model,
|
58 |
tools=[
|
59 |
+
generate_normal_distribution,
|
60 |
duck_search,
|
61 |
final_answer
|
62 |
], ## add your tools here (don't remove final answer)
|