Fixed "LoopEvent" handling in Loops and Branches
Browse filesThe original cel did not properly handle nor implement LoopEvents, leading to an error when the random number triggered the loop.
In this minimal change, we properly use the LoopEvent class while remaining faithful to the original code.
unit2/llama-index/workflows.ipynb
CHANGED
@@ -146,13 +146,14 @@
|
|
146 |
},
|
147 |
{
|
148 |
"cell_type": "code",
|
149 |
-
"execution_count":
|
150 |
"metadata": {},
|
151 |
"outputs": [
|
152 |
{
|
153 |
"name": "stdout",
|
154 |
"output_type": "stream",
|
155 |
"text": [
|
|
|
156 |
"Good thing happened\n"
|
157 |
]
|
158 |
},
|
@@ -182,7 +183,7 @@
|
|
182 |
"\n",
|
183 |
"class MultiStepWorkflow(Workflow):\n",
|
184 |
" @step\n",
|
185 |
-
" async def step_one(self, ev: StartEvent) -> ProcessingEvent | LoopEvent:\n",
|
186 |
" if random.randint(0, 1) == 0:\n",
|
187 |
" print(\"Bad thing happened\")\n",
|
188 |
" return LoopEvent(loop_output=\"Back to step one.\")\n",
|
@@ -191,7 +192,7 @@
|
|
191 |
" return ProcessingEvent(intermediate_result=\"First step complete.\")\n",
|
192 |
"\n",
|
193 |
" @step\n",
|
194 |
-
" async def step_two(self, ev: ProcessingEvent
|
195 |
" # Use the intermediate result\n",
|
196 |
" final_result = f\"Finished processing: {ev.intermediate_result}\"\n",
|
197 |
" return StopEvent(result=final_result)\n",
|
|
|
146 |
},
|
147 |
{
|
148 |
"cell_type": "code",
|
149 |
+
"execution_count": null,
|
150 |
"metadata": {},
|
151 |
"outputs": [
|
152 |
{
|
153 |
"name": "stdout",
|
154 |
"output_type": "stream",
|
155 |
"text": [
|
156 |
+
"Bad thing happened\n",
|
157 |
"Good thing happened\n"
|
158 |
]
|
159 |
},
|
|
|
183 |
"\n",
|
184 |
"class MultiStepWorkflow(Workflow):\n",
|
185 |
" @step\n",
|
186 |
+
" async def step_one(self, ev: StartEvent | LoopEvent) -> ProcessingEvent | LoopEvent:\n",
|
187 |
" if random.randint(0, 1) == 0:\n",
|
188 |
" print(\"Bad thing happened\")\n",
|
189 |
" return LoopEvent(loop_output=\"Back to step one.\")\n",
|
|
|
192 |
" return ProcessingEvent(intermediate_result=\"First step complete.\")\n",
|
193 |
"\n",
|
194 |
" @step\n",
|
195 |
+
" async def step_two(self, ev: ProcessingEvent) -> StopEvent:\n",
|
196 |
" # Use the intermediate result\n",
|
197 |
" final_result = f\"Finished processing: {ev.intermediate_result}\"\n",
|
198 |
" return StopEvent(result=final_result)\n",
|