Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -83,6 +83,7 @@ custom_role_conversions=None,
|
|
83 |
image_generation_tool = load_tool("agents-course/text-to-image", trust_remote_code=True)
|
84 |
weather_tool = load_tool("agents-course/weather-api", trust_remote_code=True)
|
85 |
wiki_tool = load_tool("agents-course/wiki-search", trust_remote_code=True)
|
|
|
86 |
|
87 |
all_tools = [
|
88 |
final_answer,
|
|
|
83 |
image_generation_tool = load_tool("agents-course/text-to-image", trust_remote_code=True)
|
84 |
weather_tool = load_tool("agents-course/weather-api", trust_remote_code=True)
|
85 |
wiki_tool = load_tool("agents-course/wiki-search", trust_remote_code=True)
|
86 |
+
calculator_tool = load_tool("agents-course/calculator", trust_remote_code=True)
|
87 |
|
88 |
all_tools = [
|
89 |
final_answer,
|