FakeChatModelOptions constructor

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

Fake Echo Chat Model Options for testing.

Implementation

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