--- title: Scenario | Scenario Docs --- > This page is auto-generated from model configurations. Last updated: 2026-06-03. This reference lists all available **Scenario** audio generation models and their parameters. Use these parameter names when calling the [Generation API](/api/postgeneratecustom/index.md). - [Audio Cut](#audio-cut) - [Audio Split](#audio-split) --- ## Audio Cut Trim an audio file to a precise time range with sample-accurate cutting. **Model ID:** `model_scenario-audio-cut` **Capabilities:** `audio2audio` **LLM Markdown:** | Parameter | Type | Required | Default | Min | Max | Allowed Values | Description | | -------------- | ------ | -------- | ------- | --- | --- | ----------------------------- | ------------------------------------------------------------------------ | | `audio` | file | Yes | - | - | - | - | Audio to cut/trim | | `startTime` | number | No | `0` | 0 | - | - | Start time in seconds. Default is 0 (beginning of audio). | | `endTime` | number | No | - | 0 | - | - | End time in seconds. If not specified, cuts to the end of the audio. | | `outputFormat` | string | No | - | - | - | “, `mp3`, `wav`, `ogg`, `m4a` | Output audio format. If not specified, the original format is preserved. | ## Audio Split Split an audio file at one or more timestamps into ordered segments. **Model ID:** `model_scenario-audio-split` **Capabilities:** `audio2audio` **LLM Markdown:** | Parameter | Type | Required | Default | Min | Max | Allowed Values | Description | | -------------- | ------------- | -------- | ------- | --- | --- | ----------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------- | | `audio` | file | Yes | - | - | - | - | Audio file to split | | `cutPoints` | number\_array | No | “ | 0 | - | - | Sorted timestamps in seconds at which to split the audio. N cut points produce N+1 segments. Leave empty for one segment containing the full audio. | | `outputFormat` | string | No | - | - | - | “, `mp3`, `wav`, `ogg`, `m4a` | Output format for all segments. If not specified, the source format is preserved. | | `strict` | boolean | No | `false` | - | - | - | If enabled, reject malformed cut points (unsorted, duplicates, out of range, or empty). If disabled, cut points are normalized automatically. |