includeThoughts method

GoogleLLMBuilder includeThoughts(
  1. bool include
)

Enables or disables including thoughts in the response

Implementation

GoogleLLMBuilder includeThoughts(bool include) {
  _baseBuilder.extension('includeThoughts', include);
  return this;
}