Skip to content

Instantly share code, notes, and snippets.

@skydoves
Created February 2, 2024 01:51
Show Gist options
  • Save skydoves/d567e9bda63f505dd8150fac643795c9 to your computer and use it in GitHub Desktop.
Save skydoves/d567e9bda63f505dd8150fac643795c9 to your computer and use it in GitHub Desktop.
generation_config
val generativeModel = GenerativeModel(
..
generationConfig = generationConfig {
this.temperature = 0.75f
this.candidateCount = 1
this.topK = 30
this.topP = 0.5f
this.maxOutputTokens = 300
}
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment