Skip to main content
All docs
V24.2

RequestOptions Class

Implements common configuration options for text-based requests.

Namespace: DevExpress.AIIntegration.Extensions

Assembly: DevExpress.AIIntegration.v24.2.dll

NuGet Package: DevExpress.AIIntegration

#Declaration

public class RequestOptions

#Remarks

The following code snippet uses the AI-powered extension to shorten originalText and obtain the result in English, regardless of the language used in the original text:

C#
string originalText = "Alice fing an sich zu langweilen; sie saß schon lange...";
ShortenRequest request = new ShortenRequest(originalText);
// Specify the context
request.Options.Context = "Alice's Adventures in Wonderland";
// Specify additional instructions
request.Options.PromptAugmentation = "Always translate the result into English.";
var response = await defaultAIExtensionsContainer.ShortenAsync(request);

#Inheritance

See Also