You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+3-3Lines changed: 3 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -6,7 +6,7 @@ A curated collection of production-ready workflow examples demonstrating various
6
6
7
7
These examples demonstrate how to build robust, scalable workflows using Render's Python SDK. All examples follow best practices for production deployments and include comprehensive documentation.
8
8
9
-
Render Workflows support both Python and TypeScript. This repo contains Python examples using the `render-sdk` package, deployed as Workflow services on Render.
9
+
Render Workflows support both Python and TypeScript. This repo contains Python examples using the `render` package, deployed as Workflow services on Render.
10
10
11
11
## Examples
12
12
@@ -16,7 +16,7 @@ Render Workflows support both Python and TypeScript. This repo contains Python e
16
16
17
17
| Example | Use Case | Key Patterns | Extra Dependencies |
|[**Hello World**](./hello-world/)| Learn workflow basics with simple number processing | Task definition, subtask calling with `await`, basic orchestration | None |
19
+
|[**Hello World**](./hello-world/)| Learn workflow basics with simple number processing | Task definition, subtask calling with `ctx.run`, basic orchestration | None |
20
20
|[**ETL Job**](./etl-job/)| Process CSV data with validation and statistics | Subtasks, sequential processing, batch operations, data validation | None |
21
21
|[**OpenAI Agent**](./openai-agent/)| AI customer support agent with tool calling | Tool calling, nested subtasks (3 levels deep), stateful workflows, dynamic orchestration |`openai`|
22
22
|[**File Processing**](./file-processing/)| Batch process multiple file formats in parallel | Parallel execution with `asyncio.gather()`, multi-format handling, aggregation | None |
@@ -28,7 +28,7 @@ Render Workflows support both Python and TypeScript. This repo contains Python e
28
28
The simplest possible workflow — learn the fundamentals through simple number processing.
0 commit comments