Raffaele Terribile commited on
Commit
d6607aa
·
unverified ·
1 Parent(s): d1f6770

Definisci il modello di LLM da usare

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -27,9 +27,9 @@ class FirstAgent:
27
  ### First Agent is the first attempt to develop an agent for the course. ###
28
  def __init__(self):
29
  self.agent = CodeAgent(
 
30
  tools=[
31
  # DuckDuckGoSearchTool(),
32
- InferenceClientModel(),
33
  # GoogleSearchTool(),
34
  WebSearchTool(),
35
  PythonInterpreterTool(),
 
27
  ### First Agent is the first attempt to develop an agent for the course. ###
28
  def __init__(self):
29
  self.agent = CodeAgent(
30
+ model=InferenceClientModel(),
31
  tools=[
32
  # DuckDuckGoSearchTool(),
 
33
  # GoogleSearchTool(),
34
  WebSearchTool(),
35
  PythonInterpreterTool(),