diff --git a/README.md b/README.md
index 068507c..6de889f 100644
--- a/README.md
+++ b/README.md
@@ -1,34 +1,115 @@
-
[](https://supportcenter.devexpress.com/ticket/details/T1251646)
[](https://docs.devexpress.com/GeneralInformation/403183)
[](#does-this-example-address-your-development-requirementsobjectives)
-# Product/Platform - Task
+# Rich Text Editor and HTML Editor for Blazor - How to integrate AI-powered extensions
-This is the repository template for creating new examples. Describe the solved task here.
+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.
-Put a screenshot that illustrates the result here.
+## Implementation Details
-Then, add implementation details (steps, code snippets, and other technical information in a free form), or add a link to an existing document with implementation details.
+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:
+
+* `CustomAISettings` allows user to process text according to a custom prompt.
+* `ExpandAISettings` expands the text.
+* `ExplainAISettings` explains the text.
+* `ProofreadAISettings` proofreads the text.
+* `RewriteAISettings` rewrite text using a specified style.
+* `ShortenAISettings` shortens the text.
+* `SummaryAISettings` summarizes the text.
+* `ToneAISettings` rewrite text using a specified tone.
+* `TranslateAISettings` translates the text into the specified language.
+
+### Register AI Services
+
+Add the following code to the _Program.cs_ file to register AI services in the application:
+
+```cs
+using DevExpress.AIIntegration;
+
+string azureOpenAIEndpoint = Environment.GetEnvironmentVariable("AZURE_OPENAI_ENDPOINT");
+string azureOpenAIKey = Environment.GetEnvironmentVariable("AZURE_OPENAI_API_KEY");
+...
+builder.Services.AddDevExpressAI((config) => {
+ var client = new AzureOpenAIClient(
+ new Uri(azureOpenAIEndpoint),
+ new AzureKeyCredential(azureOpenAIKey));
+ config.RegisterChatClientOpenAIService(client, "gpt4o");
+ config.RegisterOpenAIAssistants(client, "gpt4o");
+});
+```
+
+### Enable AI-powered extension for the DevExpress Rich Text Editor
+
+AI-powered extension for Rich Text Editor adds AI-related commands to the editor's context menu.
+
+Declare DxRichEdit's `AdditionalSettings` and populate it with commands in the following manner:
+
+```razor
+@using DevExpress.AIIntegration.Blazor.RichEdit
+@using DevExpress.Blazor.RichEdit
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+```
+
+
+
+### Enable AI-powered extension for the DevExpress HTML Editor
+
+The AI-powered extension for our HTML Editor adds AI-related commands to the editor's toolbar.
+
+Declare DxHtmlEditor's `AdditionalSettings` and populate it with commands in the following manner:
+
+```razor
+@using DevExpress.AIIntegration.Blazor.HtmlEditor
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+```
+
+
## Files to Review
-- link.cs (VB: link.vb)
-- link.js
-- ...
+* [RichEdit.razor](./CS/DevExpress.AI.Samples.Blazor.Editors/Components/Pages/RichEdit.razor)
+* [HtmlEditor.razor](./CS/DevExpress.AI.Samples.Blazor.Editors/Components/Pages/HtmlEditor.razor)
+* [Program.cs](./CS/DevExpress.AI.Samples.Blazor.Editors/Program.cs)
+
## More Examples
-- link
-- link
-- ...
+* [AI Chat for Blazor - How to add DxAIChat component in Blazor, MAUI, WPF, and WinForms applications](https://github.com/DevExpress-Examples/devexpress-ai-chat-samples)
+
## Does this example address your development requirements/objectives?
diff --git a/htmleditor.png b/htmleditor.png
new file mode 100644
index 0000000..55bf3eb
Binary files /dev/null and b/htmleditor.png differ
diff --git a/richedit.png b/richedit.png
new file mode 100644
index 0000000..2ca3697
Binary files /dev/null and b/richedit.png differ