Skip to content

Commit 65e8dba

Browse files
LanaDXAbadzhev
andauthored
Apply suggestions from code review
Co-authored-by: Abadzhev <vladimira@devexpress.com>
1 parent add158d commit 65e8dba

File tree

1 file changed

+11
-11
lines changed

1 file changed

+11
-11
lines changed

README.md

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

8-
This example integrates AI-powered extensions in Rich Text Editor and HTML Editor. These extensions add UI elements to an editor and allows users to process editor content with AI functions.
8+
This example enables AI-powered extensions for Rich Text Editor and HTML Editor. These extensions supply AI functions that process editor content.
99

1010
## Implementation Details
1111

1212
[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:
1313

14-
* `CustomAISettings` allows user to ask a custom question to editor content.
15-
* `ExpandAISettings` makes the text longer.
14+
* `CustomAISettings` allows user to process text according to a custom prompt.
15+
* `ExpandAISettings` expands the text.
1616
* `ExplainAISettings` explains the text.
1717
* `ProofreadAISettings` proofreads the text.
1818
* `RewriteAISettings` rewrites the text in the specified style.
19-
* `ShortenAISettings` makes the text shorter.
20-
* `SummaryAISettings` creates text summary.
21-
* `ToneAISettings` - rewrites the text in the specified tone.
22-
* `TranslateAISettings` translates text into the specified language.
19+
* `ShortenAISettings` shortens the text.
20+
* `SummaryAISettings` summarizes the text.
21+
* `ToneAISettings` rewrites the text in the specified tone.
22+
* `TranslateAISettings` translates the text into the specified language.
2323

2424
### Register AI Services
2525

@@ -40,9 +40,9 @@ builder.Services.AddDevExpressAI((config) => {
4040
});
4141
```
4242

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

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

4747
Declare DxRichEdit's `AdditionalSettings` and populate it with commands in the following manner:
4848

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

6868
![](richedit.png)
6969

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

72-
AI-powered extension for HTML Editor adds AI-related commands in the editor's toolbar.
72+
AI-powered extension for 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)