SergeyO7 commited on
Commit
892d2c3
·
verified ·
1 Parent(s): e31dd8e

Update agent.py

Browse files
Files changed (1) hide show
  1. agent.py +2 -1
agent.py CHANGED
@@ -44,6 +44,7 @@ def GoogleSearchTool(query: str) -> str:
44
  return f"Error performing Google search: {str(e)}"
45
 
46
  #@tool
 
47
  #def ImageAnalysisTool(question: str, model: LiteLLMModel) -> str:
48
  # """Tool for analyzing images mentioned in the question.
49
  # Args:
@@ -285,7 +286,7 @@ class MagAgent:
285
  tools=[
286
  DownloadTaskAttachmentTool(rate_limiter=rate_limiter),
287
  # DuckDuckGoSearchTool(),
288
- WikipediaSearchTool(),
289
  SpeechToTextTool(),
290
  ExcelReaderTool(),
291
  VisitWebpageTool(),
 
44
  return f"Error performing Google search: {str(e)}"
45
 
46
  #@tool
47
+
48
  #def ImageAnalysisTool(question: str, model: LiteLLMModel) -> str:
49
  # """Tool for analyzing images mentioned in the question.
50
  # Args:
 
286
  tools=[
287
  DownloadTaskAttachmentTool(rate_limiter=rate_limiter),
288
  # DuckDuckGoSearchTool(),
289
+ # WikipediaSearchTool(),
290
  SpeechToTextTool(),
291
  ExcelReaderTool(),
292
  VisitWebpageTool(),