Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix docs on topP #829

Merged
merged 1 commit into from
Aug 27, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ public interface ChatModelConfig {
* An alternative to sampling with temperature, called nucleus sampling, where the model considers the results of the tokens
* with topP probability mass.
* 0.1 means only the tokens comprising the top 10% probability mass are considered.
* It is recommended to alter this or topP, but not both.
* It is recommended to alter this or temperature, but not both.
*/
@WithDefault("1.0")
Double topP();
Expand Down
Loading