mirror of
https://github.com/SillyTavern/SillyTavern.git
synced 2025-06-05 21:59:27 +02:00
Textgen: Add multiswipe support for TabbyAPI
Tabby now supports batching and the "n" parameter for both non-streaming and streaming. Add this into SillyTavern. Signed-off-by: kingbri <bdashore3@proton.me>
This commit is contained in:
@ -1143,6 +1143,10 @@ export function getTextGenGenerationData(finalPrompt, maxTokens, isImpersonate,
|
||||
delete params.dynatemp_high;
|
||||
}
|
||||
|
||||
if (settings.type === TABBY) {
|
||||
params.n = canMultiSwipe ? settings.n : 1;
|
||||
}
|
||||
|
||||
switch (settings.type) {
|
||||
case VLLM:
|
||||
params = Object.assign(params, vllmParams);
|
||||
|
Reference in New Issue
Block a user