> For the complete documentation index, see [llms.txt](https://docs.mapbox.com/android/navigation/llms.txt)

# Settings

![MapGPT screenshot showing the phone and tablet.](https://docs.mapbox.com/android/assets/ideal-img/dash-sdk-mapgpt-settings.1dcd4b5.480.png)

You will find the MapGPT settings under the "Voice Assistant" option. These are settings available to the user. The settings are persisted in the SDK and will be available the next time the user opens the app.

## Configuration

This settings menu is disabled by default. Enable the settings menu during initialization.

```kotlin
Dash.init(DashConfig.create(applicationContext, accessToken)) {
    mapGptConfig {
        isSettingsMenuEnabled = true
    }
}
```