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

# timeframe_step

#### `timeframe_step: <integer>` (Optional)

## Description

Defines the step size of generating time intervals for training table generation. This only applies to temporal queries (queries that include a temporal aggregation such as `SUM(TRANSACTIONS.AMOUNT, 0, 2, days)`). The time unit of this step is the same as the time unit in the aggregation.

* `timeframe_step` must be `< full time range - target aggregation`.

### Supported Task Types

* Temporal

### Example

For example, the value of `timeframe_step` will be in `days` for the following pQuery:

<CodeGroup>
  ```yaml Field theme={null}
  PREDICT SUM(TRANSACTIONS.AMOUNT, 0, 2, days)
  FOR EACH CUSTOMERS.CUSTOMER_ID
  ```
</CodeGroup>

### Default Values

| run\_mode | Default Value |
| --------- | ------------- |
| FAST      | None          |
| NORMAL    | None          |
| BEST      | None          |
