ChatModelOptions constructor

const ChatModelOptions({
  1. String? model,
  2. List<ToolSpec>? tools,
  3. ChatToolChoice? toolChoice,
  4. int concurrencyLimit = 1000,
})

Generation options to pass into the Chat Model.

Implementation

const ChatModelOptions({
  super.model,
  this.tools,
  this.toolChoice,
  super.concurrencyLimit,
});