TEC-687 - Refactor workflow tasks to use @app.task decorator and update SDK usa…#1
Open
TEC-687 - Refactor workflow tasks to use @app.task decorator and update SDK usa…#1
Conversation
…ge across multiple services. Updated requirements to render-sdk version 0.2.0 for enhanced functionality. Adjusted README files to reflect changes in task invocation and examples.
Borets
reviewed
Feb 5, 2026
Collaborator
Borets
left a comment
There was a problem hiding this comment.
Overall lgtm. Seeing only changes to how the SDK is used the rest of the logic is untouched.
Borets
approved these changes
Feb 5, 2026
…ime, addressing atexit registration issues.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Update examples to Render SDK v0.2.0
Summary
Changes
Task SDK (Workflow Services)
from render_sdk.workflows import task, startwithfrom render_sdk import Workflows@taskdecorator with@app.taskpatternstart()withWorkflows(auto_start=True)initializationWorkflowsdefault settingsClient SDK (API Service)
from render_sdk.client import Clientwithfrom render_sdk import RenderClient(api_key=...)withRender()(auto-readsRENDER_API_KEYenv var)TaskRunErrorfor task-specific error handlingOld
client.workflows.run_task(workflow_service_slug="...", task_name="...", input={...})New
await render.workflows.run_task("slug/task-name", {"param": value})Dependencies
Update all requirements.txt files to render-sdk>=0.2.0
Cleanup
Remove unused from typing import Any imports