DevExpress.AIIntegration.Reporting.Common
26.1.5
Prefix Reserved
dotnet add package DevExpress.AIIntegration.Reporting.Common --version 26.1.5
NuGet\Install-Package DevExpress.AIIntegration.Reporting.Common -Version 26.1.5
<PackageReference Include="DevExpress.AIIntegration.Reporting.Common" Version="26.1.5" />
<PackageVersion Include="DevExpress.AIIntegration.Reporting.Common" Version="26.1.5" />
<PackageReference Include="DevExpress.AIIntegration.Reporting.Common" />
paket add DevExpress.AIIntegration.Reporting.Common --version 26.1.5
#r "nuget: DevExpress.AIIntegration.Reporting.Common, 26.1.5"
#:package DevExpress.AIIntegration.Reporting.Common@26.1.5
#addin nuget:?package=DevExpress.AIIntegration.Reporting.Common&version=26.1.5
#tool nuget:?package=DevExpress.AIIntegration.Reporting.Common&version=26.1.5
AI-powered Extensions for DevExpress Reports
This package implements AI integration infrastructure for DevExpress Reporting. Use it to create or modify reports in code with your preferred AI assistant. The package also includes classes and interfaces that provide core functionality for platform-specific DevExpress AI-powered extensions and services.
Key Features
- Includes common model classes and interfaces shared by all DevExpress Reporting AI integration packages.
- Provides cross-platform extensions for AI-powered Reporting features, such as AI-assisted report generation.
Example
The following code sample initializes an AI client, creates a report request, and generates a report based on a user prompt:
using DevExpress.AIIntegration.Reporting.Common.Extensions;
using DevExpress.AIIntegration;
using Reporting.Generation.Console;
using DevExpress.XtraReports.UI;
// Retrieve the Azure OpenAI endpoint, key, and model from user environment variables.
string endpoint = Environment.GetEnvironmentVariable("AZURE_OPENAI_ENDPOINT", EnvironmentVariableTarget.User) ?? throw new InvalidOperationException("AZURE_OPENAI_ENDPOINT is not set.");
string apiKey = Environment.GetEnvironmentVariable("AZURE_OPENAI_API_KEY", EnvironmentVariableTarget.User) ?? throw new InvalidOperationException("AZURE_OPENAI_API_KEY is not set.");
string deploymentName = Environment.GetEnvironmentVariable("AZURE_OPENAI_DEPLOYMENT", EnvironmentVariableTarget.User) ?? "gpt-5.2";
// Create an Azure OpenAI client to work with the chat agent.
IChatClient chatClient = new AzureOpenAIClient(new Uri(endpoint), new ApiKeyCredential(apiKey))
.GetChatClient(deploymentName)
.AsIChatClient();
// Register chat client and reporting extensions.
AIExtensionsContainerDefault container = AIExtensionsContainerConsole.CreateDefaultAIExtensionContainer(chatClient);
container.RegisterReportingExtensions();
// Ask the user for a report description in natural language.
Console.WriteLine("Specify a prompt to generate the report:");
string prompt = Console.ReadLine();
try {
// Create a host to handle clarification questions and progress notifications.
ConsoleAIReportGenerationHost host = new ConsoleAIReportGenerationHost();
// Build a generation request from the user prompt.
PromptToReportRequest generationRequest = new PromptToReportRequest(userPrompt: prompt, dataSourceSchema: null, report: null) {
ReportGenerationHost = host,
FixLayoutErrors = true
};
// Generate a report layout and save it to a REPX file.
XtraReport report = await container.GeneratePromptToReportAsync(generationRequest, default);
report.SaveLayoutToXml("generatedReport.repx");
} catch (Exception ex) {
Console.WriteLine($"Report generation failed: {ex.Message}");
}
Evaluation Period, Pricing Options, and Licensing Terms
Whether you own a license or want to start a 30-day evaluation period, register your DevExpress license key. To obtain your key, log in to the DevExpress Download Manager. Use your existing DevExpress.com account or create a new account for free. For additional registration instructions, see License Key for DevExpress Products.
If you purchase a license after evaluating a product, re-register your updated DevExpress license key to remove evaluation version warnings/messages.
This package is included in the following commercial subscriptions:
See DevExpress Subscriptions & Licensing for subscription comparison tables, purchasing FAQ, and licensing information.
Documentation
Software Bill of Materials (SBOM)
To access SBOM files for DevExpress packages, please refer to the following article: Software Bill of Materials (SBOM) for DevExpress .NET assemblies/NuGet packages, JavaScript, VCL and other redistributable artifacts.
See Also: Information Security | Security - What You Need to Know
Useful Online Resources
| Product | Versions 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. |
-
.NETFramework 4.7.2
- DevExpress.AIIntegration (= 26.1.5)
- DevExpress.AIIntegration.Printing (= 26.1.5)
- DevExpress.Data (= 26.1.5)
- DevExpress.DataAccess (= 26.1.5)
- DevExpress.Drawing (= 26.1.5)
- DevExpress.Printing.Core (= 26.1.5)
- DevExpress.Reporting.Core (= 26.1.5)
- Microsoft.Agents.AI.Workflows (>= 1.5.0)
- Microsoft.Extensions.AI (>= 10.5.1)
-
net8.0
- DevExpress.AIIntegration (= 26.1.5)
- DevExpress.AIIntegration.Printing (= 26.1.5)
- DevExpress.Data (= 26.1.5)
- DevExpress.DataAccess (= 26.1.5)
- DevExpress.Drawing (= 26.1.5)
- DevExpress.Printing.Core (= 26.1.5)
- DevExpress.Reporting.Core (= 26.1.5)
- Microsoft.Agents.AI.Workflows (>= 1.5.0)
- Microsoft.Extensions.AI (>= 10.5.1)
NuGet packages (7)
Showing the top 5 NuGet packages that depend on DevExpress.AIIntegration.Reporting.Common:
| Package | Downloads |
|---|---|
|
DevExpress.AIIntegration.Web.Reporting.Common
Target Platform/Framework: Cross-Platform DevExpress Product Libraries Used: DevExpress AI-powered Extensions for OpenAI, Azure, Ollama, Semantic Kernel (https://www.devexpress.com/ai) Available in the following DevExpress Subscription(s): Universal, DXperience, ASP.NET & Blazor (includes DevExtreme), Reporting |
|
|
DevExpress.AIIntegration.AspNetCore.Reporting
Target Platform/Framework: Cross-Platform DevExpress Product Libraries Used: DevExpress AI-powered Extensions for OpenAI, Azure, Ollama, Semantic Kernel (https://www.devexpress.com/ai) Available in the following DevExpress Subscription(s): Universal, DXperience, ASP.NET & Blazor (includes DevExtreme), Reporting |
|
|
DevExpress.AIIntegration.Blazor.Reporting.Viewer
Target Platform/Framework: Cross-Platform DevExpress Product Libraries Used: DevExpress AI-powered Extensions for OpenAI, Azure, Ollama, Semantic Kernel (https://www.devexpress.com/ai) Available in the following DevExpress Subscription(s): Universal, DXperience, ASP.NET & Blazor (includes DevExtreme), Reporting |
|
|
DevExpress.AIIntegration.WinForms.Reporting
Target Platform/Framework: Cross-Platform DevExpress Product Libraries Used: DevExpress AI-powered Extensions for OpenAI, Azure, Ollama, Semantic Kernel (https://www.devexpress.com/ai) Available in the following DevExpress Subscription(s): Universal, DXperience, WinForms, Reporting |
|
|
DevExpress.ExpressApp.AI.Blazor
Target Platform/Framework: Web, Mobile DevExpress Product Libraries Used: XAF (Cross-Platform .NET App UI & Web API) (https://www.devexpress.com/xaf) Available in the following DevExpress Subscription(s): Universal |
GitHub repositories
This package is not used by any popular GitHub repositories.
| Version | Downloads | Last Updated |
|---|---|---|
| 26.1.5 | 151 | 9/18/2026 |
| 26.1.5-pre-26248 | 368 | 9/11/2026 |
| 26.1.5-pre-26241 | 390 | 9/2/2026 |
| 26.1.5-pre-26235 | 433 | 8/26/2026 |
| 26.1.5-pre-26227 | 692 | 8/18/2026 |
| 26.1.4 | 2,381 | 8/7/2026 |
| 26.1.3 | 8,870 | 6/18/2026 |
| 25.2.9 | 417 | 8/3/2026 |
| 25.2.8 | 1,721 | 6/10/2026 |
| 25.2.7 | 2,900 | 5/6/2026 |
| 25.2.6 | 1,523 | 4/7/2026 |
| 25.1.13 | 301 | 7/31/2026 |
| 25.1.12 | 306 | 6/10/2026 |
| 25.1.11 | 299 | 5/5/2026 |
| 25.1.10 | 554 | 4/6/2026 |
| 25.1.9 | 287 | 3/2/2026 |