FakeLLMOptions constructor

const FakeLLMOptions({
  1. String? model,
  2. int concurrencyLimit = 1000,
})

Fake LLM options for testing.

Implementation

const FakeLLMOptions({
  super.model,
  super.concurrencyLimit,
});