Raffaele Terribile commited on
Commit
667a559
·
unverified ·
1 Parent(s): 2f5d748

Elimina parametri modello

Browse files
Files changed (1) hide show
  1. app.py +1 -4
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: