A workflow is the template for a kind of work the platform can run. It bundles:Documentation Index
Fetch the complete documentation index at: https://docs.cyberun.cloud/llms.txt
Use this file to discover all available pages before exploring further.
- An underlying runtime (for example a ComfyUI graph or a Nerfstudio pipeline).
- The parameters callers fill in when they submit a task.
- The agent labels required to dispatch the task.
Where they come from
A new team starts with an empty workflow list. You add workflows two ways:- Team workflows — created by team members through the dashboard, typically by importing a ComfyUI graph JSON.
- Wizard-built workflows — for some pipelines, Cloud provides a form-based wizard that produces a workflow without hand-editing JSON. See Run a Nerfstudio workflow.
Parameters
Parameters are typed inputs the workflow exposes to callers. For a ComfyUI text-to-image graph this is typically:| Parameter | Type | Notes |
|---|---|---|
prompt | string | The positive prompt. |
negative | string | Optional negative prompt. |
seed | integer | Random seed. Re-using a seed reproduces an output. |
steps | integer | Sampler steps. |
model | string | Checkpoint name available on the agent. |
GET /workflows/{workflowId}.
Label requirements
A workflow lists the labels its tasks require:gpu, comfyui, nerfstudio is
eligible for the above. An agent with only gpu is not.
Tasks for a workflow with unsatisfied labels stay queued
indefinitely. Cloud surfaces this in the task UI as “waiting for
eligible agent”. Add the missing label to an agent (or connect a
new agent) to unblock.
Snapshots
When snapshots are enabled on your deployment, every save of a workflow auto-creates a versioned snapshot of its definition. From the History panel on the detail page you can:- Preview an older snapshot’s JSON and parameter shape.
- Restore the workflow to an older snapshot (with confirmation).
Editing and re-running
Editing a workflow’s parameters does not retroactively change past tasks — each task carries a snapshot of the parameters it was submitted with. Re-running a task uses the workflow’s current definition unless you explicitly target a snapshot.Related
- Tasks — individual executions.
- Agents — labels and dispatch.
- Workflow snapshots — versioning.
- Run a Nerfstudio workflow — wizard example.
