Spaces:
Sleeping
Sleeping
eaglelandsonce
commited on
Commit
•
b4cd1b2
1
Parent(s):
8e51459
Update app.py
Browse files
app.py
CHANGED
@@ -55,7 +55,7 @@ def crewai_process_gemini(research_topic):
|
|
55 |
|
56 |
# Create tasks for your agents
|
57 |
task1 = Task(
|
58 |
-
description=f"""
|
59 |
agent=GeminiAgent
|
60 |
)
|
61 |
|
@@ -92,7 +92,7 @@ def crewai_process_mixtral_crazy(research_topic):
|
|
92 |
|
93 |
# Create tasks for your agents
|
94 |
task1 = Task(
|
95 |
-
description=f"""
|
96 |
agent=MixtralCrazyAgent
|
97 |
)
|
98 |
|
@@ -128,7 +128,7 @@ def crewai_process_mixtral_normal(research_topic):
|
|
128 |
|
129 |
# Create tasks for your agents
|
130 |
task1 = Task(
|
131 |
-
description=f"""
|
132 |
agent=MixtralNormalAgent
|
133 |
)
|
134 |
|
@@ -164,7 +164,7 @@ def crewai_process_zephyr_normal(research_topic):
|
|
164 |
|
165 |
# Create tasks for your agents
|
166 |
task1 = Task(
|
167 |
-
description=f"""
|
168 |
agent=ZephrNormalAgent
|
169 |
)
|
170 |
|
@@ -200,7 +200,7 @@ def crewai_process_phi2(research_topic):
|
|
200 |
|
201 |
# Create tasks for your agents
|
202 |
task1 = Task(
|
203 |
-
description=f"""
|
204 |
agent=Phi2Agent
|
205 |
)
|
206 |
|
|
|
55 |
|
56 |
# Create tasks for your agents
|
57 |
task1 = Task(
|
58 |
+
description=f"""Create a one paragraph summary of the {research_topic}""",
|
59 |
agent=GeminiAgent
|
60 |
)
|
61 |
|
|
|
92 |
|
93 |
# Create tasks for your agents
|
94 |
task1 = Task(
|
95 |
+
description=f"""Create a one paragraph summary of the {research_topic}""",
|
96 |
agent=MixtralCrazyAgent
|
97 |
)
|
98 |
|
|
|
128 |
|
129 |
# Create tasks for your agents
|
130 |
task1 = Task(
|
131 |
+
description=f"""Create a one paragraph summary of the {research_topic}""",
|
132 |
agent=MixtralNormalAgent
|
133 |
)
|
134 |
|
|
|
164 |
|
165 |
# Create tasks for your agents
|
166 |
task1 = Task(
|
167 |
+
description=f"""Create a one paragraph summary of the {research_topic}""",
|
168 |
agent=ZephrNormalAgent
|
169 |
)
|
170 |
|
|
|
200 |
|
201 |
# Create tasks for your agents
|
202 |
task1 = Task(
|
203 |
+
description=f"""Create a one paragraph summary of the {research_topic}""",
|
204 |
agent=Phi2Agent
|
205 |
)
|
206 |
|