Celery task to start a process with the given workflow key and state.
start_process_task(workflow_key, user_inputs)
Start a process with the given workflow key and state.
Source code in gso/tasks/start_process.py
| @shared_task
def start_process_task(workflow_key: str, user_inputs: list[dict[str, str]]) -> None:
"""Start a process with the given workflow key and state."""
from orchestrator.services.processes import start_process # noqa: PLC0415
start_process(workflow_key, user_inputs=user_inputs)
|