ToolCallingOptions constructor

const ToolCallingOptions({
  1. List<ToolDefinition>? tools,
  2. int maxToolCalls = 5,
  3. bool autoExecute = true,
  4. double? temperature,
  5. int? maxTokens,
  6. String? systemPrompt,
  7. bool replaceSystemPrompt = false,
  8. bool keepToolsAvailable = false,
  9. String formatName = ToolCallFormatName.defaultFormat,
})

Implementation

const ToolCallingOptions({
  this.tools,
  this.maxToolCalls = 5,
  this.autoExecute = true,
  this.temperature,
  this.maxTokens,
  this.systemPrompt,
  this.replaceSystemPrompt = false,
  this.keepToolsAvailable = false,
  this.formatName = ToolCallFormatName.defaultFormat,
});