eaglelandsonce commited on
Commit
c140c84
1 Parent(s): dd37441

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +6 -11
app.py CHANGED
@@ -46,9 +46,8 @@ def crewai_process(research_topic):
46
  allow_delegation=False,
47
  llm = gemini_llm,
48
  tools=[
49
- MixtralSearchTools.mixtral_normal,
50
- GeminiSearchTools.gemini_search
51
-
52
  ]
53
 
54
  )
@@ -63,8 +62,7 @@ def crewai_process(research_topic):
63
  allow_delegation=False,
64
  llm = gemini_llm,
65
  tools=[
66
- ZephyrSearchTools.zephyr_crazy,
67
- GeminiSearchTools.gemini_search
68
 
69
  ]
70
 
@@ -80,8 +78,7 @@ def crewai_process(research_topic):
80
  allow_delegation=False,
81
  llm = gemini_llm,
82
  tools=[
83
- MixtralSearchTools.mixtral_crazy,
84
- GeminiSearchTools.gemini_search
85
 
86
  ]
87
 
@@ -97,8 +94,7 @@ def crewai_process(research_topic):
97
  allow_delegation=False,
98
  llm = gemini_llm,
99
  tools=[
100
- ZephyrSearchTools.zephyr_normal,
101
- GeminiSearchTools.gemini_search
102
 
103
  ]
104
 
@@ -115,8 +111,7 @@ def crewai_process(research_topic):
115
  llm = gemini_llm,
116
  tools=[
117
  MixtralSearchTools.mixtral_normal,
118
- ZephyrSearchTools.zephyr_normal,
119
- GeminiSearchTools.gemini_search
120
 
121
  ]
122
 
 
46
  allow_delegation=False,
47
  llm = gemini_llm,
48
  tools=[
49
+ MixtralSearchTools.mixtral_normal
50
+
 
51
  ]
52
 
53
  )
 
62
  allow_delegation=False,
63
  llm = gemini_llm,
64
  tools=[
65
+ ZephyrSearchTools.zephyr_crazy
 
66
 
67
  ]
68
 
 
78
  allow_delegation=False,
79
  llm = gemini_llm,
80
  tools=[
81
+ MixtralSearchTools.mixtral_crazy
 
82
 
83
  ]
84
 
 
94
  allow_delegation=False,
95
  llm = gemini_llm,
96
  tools=[
97
+ ZephyrSearchTools.zephyr_normal
 
98
 
99
  ]
100
 
 
111
  llm = gemini_llm,
112
  tools=[
113
  MixtralSearchTools.mixtral_normal,
114
+ ZephyrSearchTools.zephyr_normal
 
115
 
116
  ]
117