candidateCount method

GoogleLLMBuilder candidateCount(
  1. int count
)

Sets candidate count for response generation

Implementation

GoogleLLMBuilder candidateCount(int count) {
  _baseBuilder.extension('candidateCount', count);
  return this;
}