We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b8ff062 commit 0236a51Copy full SHA for 0236a51
crates/spin-python-engine/src/lib.rs
@@ -500,12 +500,12 @@ impl LLMInferencingParams {
500
top_p: f32,
501
) -> Self {
502
Self {
503
- max_tokens: max_tokens,
504
- repeat_penalty: repeat_penalty,
505
- repeat_penalty_last_n_token_count: repeat_penalty_last_n_token_count,
506
- temperature: temperature,
507
- top_k: top_k,
508
- top_p: top_p,
+ max_tokens,
+ repeat_penalty,
+ repeat_penalty_last_n_token_count,
+ temperature,
+ top_k,
+ top_p,
509
}
510
511
0 commit comments