topK property
Optional. The maximum number of tokens to consider when sampling.
Gemini models use Top-p (nucleus) sampling or a combination of Top-k and
nucleus sampling. Top-k sampling considers the set of top_k most probable
tokens. Models running with nucleus sampling don't allow top_k setting.
Note: The default value varies by Model and is specified by
theModel.top_p attribute returned from the getModel function. An empty
top_k attribute indicates that the model doesn't apply top-k sampling
and doesn't allow setting top_k on requests.
Implementation
final int? topK;