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

# Feedback Agent

# Feedback Agent

> **Note (beta): Public Preview for Feedback Agent**
> 
> Feedback Agent is available in Public Preview. During this phase, it may be subject to potential changes as the features and API surfaces stabilize.

Collect feedback and turn it into actionable insights. Feedback Agent helps you understand user needs faster and improve your product quickly — right inside your app.

![Mapbox Feedback Agent](https://docs.mapbox.com/android/ja/assets/ideal-img/navigation-overview-feedback-agent.3f4d4e2.480.png)

> **Note: Navigation SDK integration**
> 
> This page describes how to enable Feedback Agent as part of the Navigation SDK UX framework. For instructions on how to integrate this product with the Navigation SDK for Android, visit the [Feedback Agent Navigation SDK guide](https://docs.mapbox.com/android/ja/navigation/guides/feedback-agent/).

## How to enable Feedback Agent

To enable Feedback Agent in the UX Framework, follow these steps:

### Step 1: Add Feedback Agent module

Add the Voice Feedback module dependency to your module-level `build.gradle` file:

```kotlin
dependencies {
  ...
   implementation("com.mapbox.navigationux:voice-feedback:1.28.0")
  ...
}
```

### Step 2: Enable Feedback Agent button

Add the `VoiceFeedback` control to your left sidebar configuration:

```kotlin
Dash.applyUpdate {
    ui {
        leftSidebar {
            controls = listOf(
                // ... other controls
                DashSidebarControl.VoiceFeedback,
                // ... other controls
            )
        }
    }
}
```

When users click the `VoiceFeedback` button, it will automatically open the Automatic Speech Recognition (ASR) interface, allowing them to speak and provide feedback about their navigation experience using natural language.

## Next steps

For more information about the Feedback API and the Feedback Explorer, including pricing information, visit the [Feedback Agent Navigation SDK documentation](https://docs.mapbox.com/android/ja/navigation/guides/feedback-agent/).