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

# AudioParams

`AudioParams` defines the settings for an audio processor, including which AI model to use and the audio sample rate. You pass an instance of this class to `RemoteSDK.CreateAudioProcessor()` when creating a new processor.

## Properties

| Property     | Type     | Required | Description                                                   |
| ------------ | -------- | -------- | ------------------------------------------------------------- |
| `modelName`  | `string` | Yes      | AI model name. See [available models](/Docs/Models/Overview). |
| `sampleRate` | `int`    | Yes      | Audio sample rate: `8000` or `16000` Hz                       |

## See Also

<CardGroup cols={2}>
  <Card title="RemoteSDK" icon="server" href="/API-Reference/Reference/Core-Classes/RemoteSDK">
    Use `CreateAudioProcessor()` with `AudioParams`
  </Card>

  <Card title="AudioProcessor" icon="waveform-lines" href="/API-Reference/Reference/Core-Classes/AudioProcessor">
    The processor instance created from these params
  </Card>
</CardGroup>
