Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Added second argument in workflow for streamlit example to work #114

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 6 additions & 4 deletions get_started/src/workflows/workflow.py
Original file line number Diff line number Diff line change
@@ -1,15 +1,17 @@
from datetime import timedelta
from restack_ai.workflow import workflow, import_functions, log

with import_functions():
from src.functions.function import welcome


@workflow.defn()
class GreetingWorkflow:
@workflow.run
async def run(self):
async def run(self, input=None):
log.info("GreetingWorkflow started")
result = await workflow.step(welcome, input="world", start_to_close_timeout=timedelta(seconds=120))
result = await workflow.step(
welcome, input="world", start_to_close_timeout=timedelta(seconds=120)
)
log.info("GreetingWorkflow completed", result=result)
return result