topP

@SerialName(value = "top_p")
val topP: Double?(source)

Use nucleus sampling. In nucleus sampling, we compute the cumulative distribution over all the options for each subsequent token in decreasing probability order and cut it off once it reaches a particular probability specified by top_p. Defaults to -1.0, which disables it.