mirror of
https://github.com/run-llama/workflows-py.git
synced 2026-07-19 16:53:35 -04:00
11b9c37007
- managing_state.md: Add missing Context import, fix state variable name typo (state -> ctx_state), fix workflow variable name (w -> workflow) - concurrent_execution.md: Add missing random import in two code examples - resources.md: Add missing imports for Workflow, step, Event, StartEvent, StopEvent - human_in_the_loop.md: Add missing imports for Workflow, step, StartEvent, StopEvent and Context - durable_workflows.md: Fix sync function to async (def -> async def) in two examples that use await, fix variable typo (converted_id -> converted_ids) - customizing_entry_exit_points.md: Fix missing ev. prefix on a_string_field, add missing keyword argument (critique=) in MyStopEvent constructor - retry_steps.md: Add missing imports for Workflow, Context, step, StartEvent, StopEvent and Optional - unbound_functions.md: Add missing imports for Workflow, step, StartEvent, StopEvent - drawing.md: Add missing WorkflowServer import - deployment.md: Add missing asyncio import, fix missing colon after async def main(), fix typo in import path (workflow.client -> workflows.client), fix missing colon in if statement Co-authored-by: Claude <noreply@anthropic.com>