Skip to content

Commit 2a90a68

Browse files
authored
Update README.md
1 parent 65e8dba commit 2a90a68

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

README.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -5,20 +5,20 @@
55
<!-- default badges end -->
66
# Rich Text Editor and HTML Editor for Blazor - How to integrate AI-powered extensions
77

8-
This example enables AI-powered extensions for Rich Text Editor and HTML Editor. These extensions supply AI functions that process editor content.
8+
This example enables AI-powered extensions for both the DevExpress Blazor Rich Text Editor and HTML Editor. These extensions supply AI functions designed to process text/HTML content.
99

1010
## Implementation Details
1111

12-
[DxRichEdit](https://docs.devexpress.com/Blazor/DevExpress.Blazor.RichEdit.DxRichEdit) and [DxHtmlEditor](https://docs.devexpress.com/Blazor/DevExpress.Blazor.DxHtmlEditor) components implement the `AdditionalSettings` property. You can populate this property with commands that allow users to process editor text. Available commands for both editors are the following:
12+
Both the DevExpress Blazor Rich Text Editor ([DxRichEdit](https://docs.devexpress.com/Blazor/DevExpress.Blazor.RichEdit.DxRichEdit)) and Blazor HTML Editor ([DxHtmlEditor](https://docs.devexpress.com/Blazor/DevExpress.Blazor.DxHtmlEditor)) ship with an `AdditionalSettings` property. You can populate this property with commands and allow users to process editor text as needs dictate. Available commands for both editors are as follows:
1313

1414
* `CustomAISettings` allows user to process text according to a custom prompt.
1515
* `ExpandAISettings` expands the text.
1616
* `ExplainAISettings` explains the text.
1717
* `ProofreadAISettings` proofreads the text.
18-
* `RewriteAISettings` rewrites the text in the specified style.
18+
* `RewriteAISettings` rewrite text using a specified style.
1919
* `ShortenAISettings` shortens the text.
2020
* `SummaryAISettings` summarizes the text.
21-
* `ToneAISettings` rewrites the text in the specified tone.
21+
* `ToneAISettings` rewrite text using a specified tone.
2222
* `TranslateAISettings` translates the text into the specified language.
2323

2424
### Register AI Services
@@ -40,7 +40,7 @@ builder.Services.AddDevExpressAI((config) => {
4040
});
4141
```
4242

43-
### Enable AI-powered extension for Rich Text Editor
43+
### Enable AI-powered extension for the DevExpress Rich Text Editor
4444

4545
AI-powered extension for Rich Text Editor adds AI-related commands to the editor's context menu.
4646

@@ -67,9 +67,9 @@ Declare DxRichEdit's `AdditionalSettings` and populate it with commands in the f
6767

6868
![](richedit.png)
6969

70-
### Enable AI-powered extension for HTML Editor
70+
### Enable AI-powered extension for the DevExpress HTML Editor
7171

72-
AI-powered extension for HTML Editor adds AI-related commands to the editor's toolbar.
72+
The AI-powered extension for our HTML Editor adds AI-related commands to the editor's toolbar.
7373

7474
Declare DxHtmlEditor's `AdditionalSettings` and populate it with commands in the following manner:
7575

0 commit comments

Comments
 (0)