eaglelandsonce commited on
Commit
be2634a
1 Parent(s): 45fadcd

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +14 -9
app.py CHANGED
@@ -46,7 +46,8 @@ def crewai_process(research_topic):
46
  allow_delegation=False,
47
  llm = gemini_llm,
48
  tools=[
49
- MixtralSearchTools.mixtral_crazy
 
50
 
51
  ]
52
 
@@ -62,7 +63,8 @@ def crewai_process(research_topic):
62
  allow_delegation=False,
63
  llm = gemini_llm,
64
  tools=[
65
- MixtralSearchTools.mixtral_normal
 
66
 
67
  ]
68
 
@@ -78,7 +80,8 @@ def crewai_process(research_topic):
78
  allow_delegation=False,
79
  llm = gemini_llm,
80
  tools=[
81
- MixtralSearchTools.mixtral_crazy
 
82
 
83
  ]
84
 
@@ -94,7 +97,8 @@ def crewai_process(research_topic):
94
  allow_delegation=False,
95
  llm = gemini_llm,
96
  tools=[
97
- MixtralSearchTools.mixtral_normal
 
98
 
99
  ]
100
 
@@ -111,6 +115,7 @@ def crewai_process(research_topic):
111
  allow_delegation=False,
112
  llm = gemini_llm,
113
  tools=[
 
114
  GeminiSearchTools.gemini_search
115
 
116
  ]
@@ -162,30 +167,30 @@ def crewai_process(research_topic):
162
 
163
  task6 = Task(
164
  description=f"""Continue the discussion and express your feelinga about {research_topic} use Mixtral to assist in gaining content for your expression.
165
- """,
166
  agent=Emily
167
  )
168
 
169
  task7 = Task(
170
  description=f"""Continue the discussion and express your feelinga about {research_topic} use Mixtral to assist in gaining content for your expression.
171
- """,
172
  agent=David
173
  )
174
 
175
  task8 = Task(
176
  description=f"""Continue the discussion and express your feelinga about {research_topic} use Mixtral to assist in gaining content for your expression.
177
- """,
178
  agent=Sarah
179
  )
180
  task9 = Task(
181
  description=f"""Continue the discussion and express your feelinga about {research_topic} use Mixtral to assist in gaining content for your expression.
182
- """,
183
  agent=Michael
184
  )
185
  task10 = Task(
186
  description=f"""Offer sound advice for coping with topic {research_topic} address specific issues brought up in the
187
  group discussion search the web suing Gemini if needed. Give a 4 paragraph summary of the group therapy session
188
- including all Agents Emily, David, Sarah, Michael .
189
  """,
190
  agent=Lisa
191
  )
 
46
  allow_delegation=False,
47
  llm = gemini_llm,
48
  tools=[
49
+ MixtralSearchTools.mixtral_crazy,
50
+ GeminiSearchTools.gemini_search
51
 
52
  ]
53
 
 
63
  allow_delegation=False,
64
  llm = gemini_llm,
65
  tools=[
66
+ MixtralSearchTools.mixtral_normal,
67
+ GeminiSearchTools.gemini_search
68
 
69
  ]
70
 
 
80
  allow_delegation=False,
81
  llm = gemini_llm,
82
  tools=[
83
+ MixtralSearchTools.mixtral_crazy,
84
+ GeminiSearchTools.gemini_search
85
 
86
  ]
87
 
 
97
  allow_delegation=False,
98
  llm = gemini_llm,
99
  tools=[
100
+ MixtralSearchTools.mixtral_normal,
101
+ GeminiSearchTools.gemini_search
102
 
103
  ]
104
 
 
115
  allow_delegation=False,
116
  llm = gemini_llm,
117
  tools=[
118
+ MixtralSearchTools.mixtral_normal,
119
  GeminiSearchTools.gemini_search
120
 
121
  ]
 
167
 
168
  task6 = Task(
169
  description=f"""Continue the discussion and express your feelinga about {research_topic} use Mixtral to assist in gaining content for your expression.
170
+ If you need information use Gemini to search the web.""",
171
  agent=Emily
172
  )
173
 
174
  task7 = Task(
175
  description=f"""Continue the discussion and express your feelinga about {research_topic} use Mixtral to assist in gaining content for your expression.
176
+ If you need information use Gemini to search the web.""",
177
  agent=David
178
  )
179
 
180
  task8 = Task(
181
  description=f"""Continue the discussion and express your feelinga about {research_topic} use Mixtral to assist in gaining content for your expression.
182
+ If you need information use Gemini to search the web.""",
183
  agent=Sarah
184
  )
185
  task9 = Task(
186
  description=f"""Continue the discussion and express your feelinga about {research_topic} use Mixtral to assist in gaining content for your expression.
187
+ If you need information use Gemini to search the web.""",
188
  agent=Michael
189
  )
190
  task10 = Task(
191
  description=f"""Offer sound advice for coping with topic {research_topic} address specific issues brought up in the
192
  group discussion search the web suing Gemini if needed. Give a 4 paragraph summary of the group therapy session
193
+ including all Agents Emily, David, Sarah, Michael. If you need information use Gemini to search the web.
194
  """,
195
  agent=Lisa
196
  )