> ## 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.

# WorkflowClient.create

```python theme={"system"}
def WorkflowClient.create(name: str, description: str = "") -> Workflow
```

Create a workflow.

## Parameters

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

<ParamField path="description" type="str">
  Optional workflow description.
</ParamField>

## Returns

The created workflow object.

<RequestExample>
  ```python Python theme={"system"}
  workflow = workflow_client.create(
      "Scene processing",
      description="Process new scenes into analysis-ready outputs.",
  )
  ```
</RequestExample>
