Skip to main content
All docs
V26.1
  • PromptToReportRequest.RetryAttemptCount Property

    Specifies the number of attempts to fix report layout errors the generation workflow can use.

    Namespace: DevExpress.AIIntegration.Reporting.Common.Extensions

    Assembly: DevExpress.AIIntegration.Reporting.Common.v26.1.dll

    Declaration

    public int RetryAttemptCount { get; set; }

    Property Value

    Type Description
    Int32

    The number of attempts.

    Remarks

    The following code snippet sets five retry attempts for fixing report layout errors in a request:

    PromptToReportRequest generationRequest = new PromptToReportRequest(userPrompt: prompt, dataSourceSchema: null, report: null) {
        ReportGenerationHost = host,
        FixLayoutErrors = true,
        RetryAttemptCount = 5
    };
    
    See Also