apiKey method

LLMBuilder apiKey(
  1. String key
)

Sets the API key for authentication

Implementation

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