ChatOptions constructor
ChatOptions({
- String? conversationId,
- String? modelId,
- double? temperature,
- double? topP,
- int? topK,
- int? maxOutputTokens,
- int? seed,
- double? frequencyPenalty,
- double? presencePenalty,
- ChatResponseFormat? responseFormat,
- List<
String> ? stopSequences, - String? instructions,
- List<
AITool> ? tools, - ChatToolMode? toolMode,
- bool? allowMultipleToolCalls,
- ResponseContinuationToken? continuationToken,
- AdditionalPropertiesDictionary? additionalProperties,
Creates a new ChatOptions.
Implementation
ChatOptions({
this.conversationId,
this.modelId,
this.temperature,
this.topP,
this.topK,
this.maxOutputTokens,
this.seed,
this.frequencyPenalty,
this.presencePenalty,
this.responseFormat,
this.stopSequences,
this.instructions,
this.tools,
this.toolMode,
this.allowMultipleToolCalls,
this.continuationToken,
this.additionalProperties,
});