bstraehle commited on
Commit
ff22768
·
verified ·
1 Parent(s): c8d8b9d

Update crew.py

Browse files
Files changed (1) hide show
  1. crew.py +2 -2
crew.py CHANGED
@@ -18,7 +18,7 @@ AGENT_MODEL = "gpt-4.1-mini"
18
 
19
  FINAL_ANSWER_MODEL = "gemini-2.5-flash-preview-04-17"
20
 
21
- WEB_SEARCH_MODEL = "gemini-2.0-flash"
22
  IMAGE_ANALYSIS_MODEL = "gemini-2.5-flash-preview-04-17"
23
  AUDIO_ANALYSIS_MODEL = "gemini-2.5-flash-preview-04-17"
24
  VIDEO_ANALYSIS_MODEL = "gemini-2.5-flash-preview-04-17"
@@ -75,7 +75,7 @@ def run_crew(question, file_path):
75
  model=WEB_SEARCH_MODEL,
76
  contents=question,
77
  config=types.GenerateContentConfig(
78
- tools=[types.Tool(google_search_retrieval=types.GoogleSearchRetrieval())]
79
  )
80
  )
81
 
 
18
 
19
  FINAL_ANSWER_MODEL = "gemini-2.5-flash-preview-04-17"
20
 
21
+ WEB_SEARCH_MODEL = "gemini-2.5-flash-preview-04-17"
22
  IMAGE_ANALYSIS_MODEL = "gemini-2.5-flash-preview-04-17"
23
  AUDIO_ANALYSIS_MODEL = "gemini-2.5-flash-preview-04-17"
24
  VIDEO_ANALYSIS_MODEL = "gemini-2.5-flash-preview-04-17"
 
75
  model=WEB_SEARCH_MODEL,
76
  contents=question,
77
  config=types.GenerateContentConfig(
78
+ tools=[types.Tool(google_search=types.GoogleSearchRetrieval())]
79
  )
80
  )
81