temperature method

LLMBuilder temperature(
  1. double temp
)

Sets the temperature for controlling response randomness (0.0-1.0)

Implementation

LLMBuilder temperature(double temp) {
  _config = _config.copyWith(temperature: temp);
  return this;
}