Update app.py
Browse files
app.py
CHANGED
@@ -25,7 +25,7 @@ llm = LiteLLMModel(
|
|
25 |
|
26 |
|
27 |
# Create Alfred with all the tools
|
28 |
-
agent =
|
29 |
tools=[web_search_tool, VisitWebpageTool(), FinalAnswerTool()],
|
30 |
model=llm,
|
31 |
max_steps=10,
|
|
|
25 |
|
26 |
|
27 |
# Create Alfred with all the tools
|
28 |
+
agent = ToolCallingAgent(
|
29 |
tools=[web_search_tool, VisitWebpageTool(), FinalAnswerTool()],
|
30 |
model=llm,
|
31 |
max_steps=10,
|