> ## Documentation Index
> Fetch the complete documentation index at: https://docs.tilebox.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Workflows.Create

```go theme={"system"}
func (workflowClient) Create(
    ctx context.Context,
    name string,
    options ...workflows.WorkflowOption,
) (*workflows.Workflow, error)
```

Create a workflow.

## Parameters

<ParamField path="name" type="string" required>
  The workflow display name.
</ParamField>

<ParamField path="options" type="[]workflows.WorkflowOption">
  Options for creating the workflow.
</ParamField>

## Options

<ParamField path="workflows.WithDescription(description string)">
  Set the workflow description.
</ParamField>

## Returns

The created workflow object.

<RequestExample>
  ```go Go theme={"system"}
  workflow, err := client.Workflows.Create(ctx,
      "Scene processing",
      workflows.WithDescription("Process new scenes into analysis-ready outputs."),
  )
  ```
</RequestExample>
