Ask Your Table - AI Assistant
Translate natural language into a set of grid state updates and apply them to the Data Grid component.
The AI assistant feature allows users to interact with the Data Grid component using natural language. Type the prompt like "sort by name" or "show amounts larger than 1000" in the prompt input field, and the Data Grid will update accordingly.
To enable client-side of this feature, pass enableAiAssistant
prop.
To increase the accuracy of the language processing, provide example values for the available columns. This can be done in the following ways.
Custom examples
You can provide custom examples as a context for the prompt processing through the examples
prop in the columns
array.
The examples
prop should contain an array of possible values for that column.
Use row data for examples
Pass allowAiAssistantDataSampling
prop to allow use of the row data to generate column examples.
This is useful if you are dealing with non-sensitive data and want to skip creating custom examples for each column.
Data is collected randomly on the cell level, which means that the examples per column might not come from the same rows.
For aiAssistant.getPromptContext()
API method, pass allowDataSampling
flag as a parameter.
const context = React.useMemo(
() => apiRef.current.aiAssistant.getPromptContext(allowDataSampling),
[apiRef, allowDataSampling],
);
Using Server-side data
An example of combining prompt control with the Server-side data
Processing service integration
Natural language prompts must be processed by a service to understand what kind of state changes must be applied to the Data Grid to match the user's request. You can use MUI's processing service or build it by yourself.
With MUI's service
Data Grid provides all necessary pieces to make the service integration easy.
Enable the AI Assistant feature by adding
enableAiAssistant
prop. A new toolbar button will appear in the default<Toolbar />
. This button opens<AssistantPanel />
that can take user's prompts.Contact sales@mui.com to get an API key for our processing service.
Provide
onPrompt()
callback to pass the user's prompts to the service. Service's response will be used internally to make the necessary state updates.
With custom service
Use pieces of the AI Assistant feature to build your own prompt processing service.
<GridAiAssistantPanel />
and<GridPromptField />
components can be used to build custom UI.aiAssistant
API can be used to build the context usinggetPromptContext()
and to apply the processing withapplyPromptResult(response: PromptResponse)
methods.unstable_gridDefaultPromptResolver()
can be used to pass the prompt and the context(s) with the necessary headers to the processing service.
Mix and match these with your custom components/methods to implement the processing the way you need it in your project.
You can use completely custom solution and apply the processing result using other Grid's APIs like setFilterModel()
or setSortModel()
without a need to structure it as PromptResponse
.
To replace unstable_gridDefaultPromptResolver()
with your own solution, send a POST request to MUI's API with a library of your choice.
Body of the request requires query
and context
parameters.
additionalContext
is optional.
API response type is Result<PromptResponse>
.
type Result<T> = { ok: false; message: string } | { ok: true; data: T };
Your resolver should return Promise<PromptResponse>
.