# WorkflowClient.create

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

Create a workflow.

## Parameters

**name**

`str`

required: true

The workflow display name.

**description**

`str`

Optional workflow description.

## Returns

The created workflow object.

```python title="Python"
workflow = workflow_client.create(
    "Scene processing",
    description="Process new scenes into analysis-ready outputs.",
)
```
