DevExpress.AIIntegration.Docs 25.2.5

Prefix Reserved
dotnet add package DevExpress.AIIntegration.Docs --version 25.2.5
                    
NuGet\Install-Package DevExpress.AIIntegration.Docs -Version 25.2.5
                    
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="DevExpress.AIIntegration.Docs" Version="25.2.5" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="DevExpress.AIIntegration.Docs" Version="25.2.5" />
                    
Directory.Packages.props
<PackageReference Include="DevExpress.AIIntegration.Docs" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add DevExpress.AIIntegration.Docs --version 25.2.5
                    
#r "nuget: DevExpress.AIIntegration.Docs, 25.2.5"
                    
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
#:package DevExpress.AIIntegration.Docs@25.2.5
                    
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=DevExpress.AIIntegration.Docs&version=25.2.5
                    
Install as a Cake Addin
#tool nuget:?package=DevExpress.AIIntegration.Docs&version=25.2.5
                    
Install as a Cake Tool

Documentation | What's New | Blog | Support & Feedback

AI-powered Extensions for DevExpress Document Processing APIs

DevExpress Document Processing APIs include backend-ready AI extensions for PDF, Word, and PowerPoint documents.

  • Summarize Documents: Generate concise summaries for reports, contracts, or presentations.
  • Translate & Proofread: Translate documents or fix grammar and spelling (preserve layout and formatting).
  • Ask Questions: Query PDF, Word, or PowerPoint files to extract insights.

These AI-powered extensions communicate with language models via the Microsoft.Extensions.AI library and its IChatClient interface. You can use cloud-based services (Azure OpenAI, OpenAI, Google Gemini) or local models (Ollama, ONNX Runtime, AI Foundry Local).

Code Example - Get Started

Install NuGet packages: DevExpress Extensions

Install the NuGet package that contains DevExpress AI-powered Extensions: DevExpress.AIIntegration.Docs.

dotnet add package DevExpress.AIIntegration.Docs
Install NuGet packages: AI Service

Install NuGet packages required by your AI service of choice. This example uses Azure OpenAI and requires the following packages:

dotnet add package Azure.AI.OpenAI --version 2.2.0-beta.4
dotnet add package Microsoft.Extensions.AI.OpenAI --version 9.5.0-preview.1.25265.7

To see package lists required by different AI Services, refer to the following help topic: AI Extensions - Prerequisites.

Register the AI Client and DevExpress AI-powered Document Processing Service
using Azure.AI.OpenAI;
using DevExpress.AIIntegration;
using Microsoft.Extensions.AI;
using System.ClientModel;
using DevExpress.XtraRichEdit;
using DevExpress.Docs.Presentation;

// Obtain Azure OpenAI credentials
string azureOpenAIEndpoint = Environment.GetEnvironmentVariable({YOUR_AZURE_ENDPOINT});
string azureOpenAIKey = Environment.GetEnvironmentVariable({YOUR_AZURE_OPENAI_APIKEY});

// Register Azure OpenAI client
IChatClient client = new AzureOpenAIClient(new Uri(azureOpenAIEndpoint),
        new ApiKeyCredential(azureOpenAIKey)).GetChatClient("gpt-4o-mini").AsIChatClient(); 
AIExtensionsContainerDefault defaultAIExtensionsContainer = AIExtensionsContainerConsole.CreateDefaultAIExtensionContainer(client);

// Create AI-powered document service
var aiService = defaultAIExtensionsContainer.CreateAIDocProcessingService();
Translate a Word Document
// Initialize a Word document processor and upload a file
var wordProcessor = new RichEditDocumentServer();
wordProcessor.LoadDocument("Document.docx");
// Translate the document and save the result
await aiService.TranslateAsync(wordProcessor, new CultureInfo("fr-FR"), CancellationToken.None);
MemoryStream translatedDocStream = new MemoryStream();
wordProcessor.SaveDocument(translatedDocStream, DocumentFormat.OpenXml);
Translate a PowerPoint Presentation
// Initialize a Presentation object and upload a file
FileStream fs = File.OpenRead("presentation.pptx");
var presentation = new Presentation(fs);
// Translate the presentation and save the result
await aiService.TranslateAsync(presentation, new CultureInfo("fr-FR"), CancellationToken.None);
MemoryStream translatedPresentationStream = new MemoryStream();
presentation.SaveDocument(translatedPresentationStream, DocumentFormat.Pptx);

Licensing

DevExpress Document Processing APIs and associated AI-powered Extensions are included in the following DevExpress subscriptions:

Free 30-day evaluation period is available.

DevExpress.Document.Processor - DevExpress Document Processing APIs for Word, Excel, and PDF documents.

dotnet add package DevExpress.Document.Processor

DevExpres.Docs.Presentation - DevExpress Document Processing APIs for PowerPoint presentations.

dotnet add package DevExpress.Docs.Presentation

Documentation | What's New | Blog | Support & Feedback

Product Compatible and additional computed target framework versions.
.NET net8.0 is compatible.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed.  net9.0 was computed.  net9.0-android was computed.  net9.0-browser was computed.  net9.0-ios was computed.  net9.0-maccatalyst was computed.  net9.0-macos was computed.  net9.0-tvos was computed.  net9.0-windows was computed.  net10.0 was computed.  net10.0-android was computed.  net10.0-browser was computed.  net10.0-ios was computed.  net10.0-maccatalyst was computed.  net10.0-macos was computed.  net10.0-tvos was computed.  net10.0-windows was computed. 
.NET Framework net472 is compatible.  net48 was computed.  net481 was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
25.2.5 45 3/2/2026
25.2.4 121 2/3/2026
25.2.3 351 12/18/2025