Feedback Agent
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.
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:
dependencies {
...
implementation("com.mapbox.navigationux:voice-feedback:1.3.0-beta.1")
...
}
Step 2: Enable Feedback Agent button
Add the VoiceFeedback
control to your left sidebar configuration:
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.