Update crew.py
Browse files
crew.py
CHANGED
@@ -260,11 +260,10 @@ def run_crew(question, file_path):
|
|
260 |
goal="Given a question and image file, analyze the image and answer the question: {question}",
|
261 |
backstory="As an expert image analysis assistant, you analyze the image to answer the question.",
|
262 |
allow_delegation=False,
|
263 |
-
|
264 |
-
llm=IMAGE_ANALYSIS_MODEL,
|
265 |
max_iter=2,
|
266 |
tools=[image_analysis_tool],
|
267 |
-
verbose=
|
268 |
)
|
269 |
|
270 |
audio_analysis_agent = Agent(
|
|
|
260 |
goal="Given a question and image file, analyze the image and answer the question: {question}",
|
261 |
backstory="As an expert image analysis assistant, you analyze the image to answer the question.",
|
262 |
allow_delegation=False,
|
263 |
+
llm=AGENT_MODEL,
|
|
|
264 |
max_iter=2,
|
265 |
tools=[image_analysis_tool],
|
266 |
+
verbose=False
|
267 |
)
|
268 |
|
269 |
audio_analysis_agent = Agent(
|