ChatModelOptions constructor
const
ChatModelOptions({
- String? model,
- List<
ToolSpec> ? tools, - ChatToolChoice? toolChoice,
- int concurrencyLimit = 1000,
Generation options to pass into the Chat Model.
Implementation
const ChatModelOptions({
super.model,
this.tools,
this.toolChoice,
super.concurrencyLimit,
});