Update crew.py
Browse files
crew.py
CHANGED
@@ -32,7 +32,7 @@ def run_crew(question, file_name):
|
|
32 |
# Tools
|
33 |
|
34 |
image_analysis_tool = VisionTool()
|
35 |
-
python_coding_tool = CodeInterpreterTool(
|
36 |
web_search_tool = SerperDevTool()
|
37 |
web_rag_tool = WebsiteSearchTool()
|
38 |
video_analysis_tool = YoutubeVideoSearchTool()
|
@@ -58,7 +58,7 @@ def run_crew(question, file_name):
|
|
58 |
llm=AGENT_MODEL,
|
59 |
max_iter=3,
|
60 |
tools=[python_coding_tool],
|
61 |
-
verbose=
|
62 |
allow_code_execution=True,
|
63 |
max_execution_time=300,
|
64 |
max_retry_limit=3
|
|
|
32 |
# Tools
|
33 |
|
34 |
image_analysis_tool = VisionTool()
|
35 |
+
python_coding_tool = CodeInterpreterTool()
|
36 |
web_search_tool = SerperDevTool()
|
37 |
web_rag_tool = WebsiteSearchTool()
|
38 |
video_analysis_tool = YoutubeVideoSearchTool()
|
|
|
58 |
llm=AGENT_MODEL,
|
59 |
max_iter=3,
|
60 |
tools=[python_coding_tool],
|
61 |
+
verbose=False,
|
62 |
allow_code_execution=True,
|
63 |
max_execution_time=300,
|
64 |
max_retry_limit=3
|