Skip to main content
All docs
V25.1
  • AIReportingConfigurationBuilder.AddPromptToReportConverter() Method

    Activates AI-powered Prompt-to-Report functionality in the Web Report Designer.

    Namespace: DevExpress.AspNetCore.Reporting

    Assembly: DevExpress.AIIntegration.AspNetCore.Reporting.v25.1.dll

    NuGet Package: DevExpress.AIIntegration.AspNetCore.Reporting

    Declaration

    public AIReportingConfigurationBuilder AddPromptToReportConverter()

    Returns

    Type Description
    AIReportingConfigurationBuilder

    An AIReportingConfigurationBuilder object that can be used to further configure the AI-powered functionality in Web Document Viewer and Web Report Designer.

    Remarks

    The following code activates the AI-powered Prompt-to-Report functionality in an ASP.NET Core application:

    // ...
    builder.Services.AddDevExpressAI(config => {
        config.AddWebReportingAIIntegration(options => {
            options.AddPromptToReportConverter();
        });  
    });
    

    The AI Prompt-to-Report option appears in the Report Wizard that allows users to create reports by specifying a prompt:

    Web Report Designer - AI Prompt-to-Report Option in Report Designer

    Review the following help topic for more information on hAI-powered Prompt-to-Report functionality: Generate Reports From Prompts in Web Report Designer (CTP).

    See Also