artyomboyko commited on
Commit
6b85264
·
verified ·
1 Parent(s): d5d9b21

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -42,7 +42,7 @@ class BasicAgent:
42
  def __init__(self):
43
  print("BasicAgent initialized.")
44
 
45
- self.agent = CodeAgent(tools=[DuckDuckGoSearchTool(), VisitWebpageTool(), SpeechToTextTool(), model=InferenceClientModel()], additional_authorized_imports=[])
46
  print("Agent initialized successfully.")
47
 
48
  def __call__(self, question: str) -> str:
 
42
  def __init__(self):
43
  print("BasicAgent initialized.")
44
 
45
+ self.agent = CodeAgent(tools=[DuckDuckGoSearchTool(), VisitWebpageTool(), SpeechToTextTool()] model=InferenceClientModel(), additional_authorized_imports=[])
46
  print("Agent initialized successfully.")
47
 
48
  def __call__(self, question: str) -> str: