Raffaele Terribile
commited on
Elimina parametri modello
Browse files
app.py
CHANGED
@@ -37,10 +37,7 @@ class FirstAgent:
|
|
37 |
VisitWebpageTool(),
|
38 |
FinalAnswerTool,
|
39 |
Tool(name="invert_sentence", func=invert_sentence, description="Inverts the order of characters in a sentence.")
|
40 |
-
]
|
41 |
-
max_iterations=10,
|
42 |
-
max_tokens=1000,
|
43 |
-
temperature=0.7
|
44 |
)
|
45 |
print("FirstAgent initialized.")
|
46 |
def __call__(self, question: str) -> str:
|
|
|
37 |
VisitWebpageTool(),
|
38 |
FinalAnswerTool,
|
39 |
Tool(name="invert_sentence", func=invert_sentence, description="Inverts the order of characters in a sentence.")
|
40 |
+
]
|
|
|
|
|
|
|
41 |
)
|
42 |
print("FirstAgent initialized.")
|
43 |
def __call__(self, question: str) -> str:
|