bstraehle commited on
Commit
cc8df96
·
verified ·
1 Parent(s): aa53293

Update crew.py

Browse files
Files changed (1) hide show
  1. crew.py +1 -3
crew.py CHANGED
@@ -95,7 +95,6 @@ def run_crew(question, file_name):
95
 
96
  # Tasks
97
 
98
- """
99
  image_analysis_task = Task(
100
  agent=image_analysis_agent,
101
  description="Analyze image to help answer question \"{topic}\". ",
@@ -119,8 +118,7 @@ def run_crew(question, file_name):
119
  description="Search the web to help answer question \"{topic}\", then scrape the most relevant web page. ",
120
  expected_output="Content to help answer the question. "
121
  )
122
- """
123
-
124
  manager_task = Task(
125
  agent=manager_agent,
126
  description="Try to answer the following question. If needed, delegate to **one** of your coworkers, image_analysis_agent, python_coding_agent, video_analysis_agent, or web_search_agent for help. Question: \"{topic}\" ",
 
95
 
96
  # Tasks
97
 
 
98
  image_analysis_task = Task(
99
  agent=image_analysis_agent,
100
  description="Analyze image to help answer question \"{topic}\". ",
 
118
  description="Search the web to help answer question \"{topic}\", then scrape the most relevant web page. ",
119
  expected_output="Content to help answer the question. "
120
  )
121
+
 
122
  manager_task = Task(
123
  agent=manager_agent,
124
  description="Try to answer the following question. If needed, delegate to **one** of your coworkers, image_analysis_agent, python_coding_agent, video_analysis_agent, or web_search_agent for help. Question: \"{topic}\" ",