eaglelandsonce commited on
Commit
8e73e1c
1 Parent(s): 66a359f

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -5
app.py CHANGED
@@ -144,10 +144,7 @@ def crewai_process(research_topic):
144
  agent=finalizer
145
  )
146
 
147
- task6 = Task(
148
- description="""output the story created by the author""",
149
- agent=finalizer
150
- )
151
 
152
 
153
  # Instantiate your crew with a sequential process
@@ -157,7 +154,7 @@ def crewai_process(research_topic):
157
  # agents=[author, artist, poet, finalizer ],
158
  # tasks=[task1, task2, task3, task5],
159
  agents=[author, poet, finalizer],
160
- tasks=[task1, task3, task6],
161
  verbose=2,
162
  process=Process.sequential
163
  )
 
144
  agent=finalizer
145
  )
146
 
147
+
 
 
 
148
 
149
 
150
  # Instantiate your crew with a sequential process
 
154
  # agents=[author, artist, poet, finalizer ],
155
  # tasks=[task1, task2, task3, task5],
156
  agents=[author, poet, finalizer],
157
+ tasks=[task1, task3, task5],
158
  verbose=2,
159
  process=Process.sequential
160
  )