model method

LLMBuilder model(
  1. String model
)

Sets the model identifier to use

Implementation

LLMBuilder model(String model) {
  _config = _config.copyWith(model: model);
  return this;
}