You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
### Use an AI Assistant with the DevExpress Blazor Grid
82
82
83
83
This example includes a page with both the DevExpress Blazor Grid (`DxGrid`) and Blazor Chat component (`DxAIChat`):
84
84
85
85

86
86
87
-
To configure our Blazor Grid (data binding and customizations), review the following code file: [Grid.razor](./DevExpress.AI.Samples.Blazor/Components/Pages/Grid.razor).
87
+
To configure our Blazor Grid (data binding and customizations), review the following code file: [Grid.razor](./CS/DevExpress.AI.Samples.Blazor/Components/Pages/Grid.razor).
88
88
89
89
#### Add AI Chat to the Grid Page
90
90
@@ -116,7 +116,7 @@ Use the [`MessageContentTemplate`](https://docs.devexpress.com/Blazor/DevExpress
@@ -148,14 +148,14 @@ Handle the `OnAfterRenderAsync` event and call the [`SetupAssistantAsync`](https
148
148
}
149
149
```
150
150
151
-
You can review and tailor AI assistant instructions in the following file: [Instructions.cs](./DevExpress.AI.Samples.Blazor/Instructions.cs).
151
+
You can review and tailor AI assistant instructions in the following file: [Instructions.cs](./CS/DevExpress.AI.Samples.Blazor/Instructions.cs).
152
152
153
153
For information on OpenAI Assistants, refer to the following document: [Assistants API overview](https://platform.openai.com/docs/assistants/overview).
### Add an AI Assistant to the DevExpress Blazor Report Viewer
161
161
@@ -197,7 +197,7 @@ A new [`TabModel`](https://docs.devexpress.com/XtraReports/DevExpress.Blazor.Rep
197
197
198
198
The `TabTemplate` property specifies tab content. It dynamically renders the `DxAIChat` component inside the tab and passes `ContentModel` as a parameter to control tab content.
199
199
200
-
The content for the AI Assistant tab is defined in the following file: [AITabRenderer.razor](./DevExpress.AI.Samples.Blazor/Components/Reporting/AITabRenderer.razor).
200
+
The content for the AI Assistant tab is defined in the following file: [AITabRenderer.razor](./CS/DevExpress.AI.Samples.Blazor/Components/Reporting/AITabRenderer.razor).
201
201
202
202
```razor
203
203
@using DevExpress.AI.Samples.Blazor.Models
@@ -231,9 +231,9 @@ Use the [`MessageContentTemplate`](https://docs.devexpress.com/Blazor/DevExpress
0 commit comments