Back to Devexpress

RequestOptions() Constructor

corelibraries-devexpress-dot-aiintegration-dot-extensions-dot-requestoptions-dot-ctor-efb09521.md

latest1.6 KB
Original Source

RequestOptions() Constructor

Initializes a new instance of the RequestOptions class.

Namespace : DevExpress.AIIntegration.Extensions

Assembly : DevExpress.AIIntegration.v25.2.dll

NuGet Package : DevExpress.AIIntegration

Declaration

csharp
public RequestOptions()
vb
Public Sub New

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:

csharp
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);

See Also

RequestOptions Class

RequestOptions Members

DevExpress.AIIntegration.Extensions Namespace