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
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