LLMOptions constructor

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

Options to pass into the LLM.

Implementation

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