FakeEchoChatModelOptions constructor

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

Fake Echo Chat Model Options for testing.

Implementation

const FakeEchoChatModelOptions({
  super.model,
  this.metadata,
  this.throwRandomError = false,
  super.tools,
  super.toolChoice,
  super.concurrencyLimit,
});