Remove `best_of` for VLLM
It defaults to `n` anyways, and for some reason it was being incorrectly received on 0.6.4.post1
This commit is contained in:
parent
9b38e3f449
commit
c599f46269
|
@ -1209,7 +1209,6 @@ export function getTextGenGenerationData(finalPrompt, maxTokens, isImpersonate,
|
|||
};
|
||||
const vllmParams = {
|
||||
'n': canMultiSwipe ? settings.n : 1,
|
||||
'best_of': canMultiSwipe ? settings.n : 1,
|
||||
'ignore_eos': settings.ignore_eos_token,
|
||||
'spaces_between_special_tokens': settings.spaces_between_special_tokens,
|
||||
'seed': settings.seed >= 0 ? settings.seed : undefined,
|
||||
|
|
Loading…
Reference in New Issue