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

# Progress

Active provisioning step, or null once provisioning has settled.

## Example Usage

```typescript theme={null}
import { Progress } from "@openrouter/sdk/models";

let value: Progress = {
  stepLabel: "<value>",
  stepNumber: 641278,
  totalSteps: 340252,
};
```

## Fields

| Field        | Type     | Required             | Description                                           |
| ------------ | -------- | -------------------- | ----------------------------------------------------- |
| `stepLabel`  | *string* | :heavy\_check\_mark: | Human-readable label of the active provisioning step. |
| `stepNumber` | *number* | :heavy\_check\_mark: | One-based index of the active step.                   |
| `totalSteps` | *number* | :heavy\_check\_mark: | Number of provisioning steps.                         |
