Parameters
string
required
The workflow display name.
[]workflows.WorkflowOption
Options for creating the workflow.
Options
Set the workflow description.
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
workflow, err := client.Workflows.Create(ctx,
"Scene processing",
workflows.WithDescription("Process new scenes into analysis-ready outputs."),
)
workflow, err := client.Workflows.Create(ctx,
"Scene processing",
workflows.WithDescription("Process new scenes into analysis-ready outputs."),
)
func (workflowClient) Create(
ctx context.Context,
name string,
options ...workflows.WorkflowOption,
) (*workflows.Workflow, error)
workflow, err := client.Workflows.Create(ctx,
"Scene processing",
workflows.WithDescription("Process new scenes into analysis-ready outputs."),
)
Was this page helpful?