eaglelandsonce commited on
Commit
e7b63ad
1 Parent(s): 4e4205d

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +5 -2
app.py CHANGED
@@ -38,7 +38,9 @@ def crewai_process(research_topic):
38
  allow_delegation=False,
39
  llm = gemini_llm,
40
  tools=[
41
- MixtralSearchTools.mixtral_crazy
 
 
42
  ]
43
 
44
  )
@@ -50,7 +52,8 @@ def crewai_process(research_topic):
50
  allow_delegation=True,
51
  llm = gemini_llm,
52
  tools=[
53
- MixtralSearchTools.mixtral_crazy
 
54
  ]
55
 
56
  # Add tools and other optional parameters as needed
 
38
  allow_delegation=False,
39
  llm = gemini_llm,
40
  tools=[
41
+ MixtralSearchTools.mixtral_crazy,
42
+ GeminiSearchTools.gemini_search
43
+
44
  ]
45
 
46
  )
 
52
  allow_delegation=True,
53
  llm = gemini_llm,
54
  tools=[
55
+ MixtralSearchTools.mixtral_crazy,
56
+ GeminiSearchTools.gemini_search
57
  ]
58
 
59
  # Add tools and other optional parameters as needed