diff --git a/public/script.js b/public/script.js index 55ee1dfbe..6a8babdaa 100644 --- a/public/script.js +++ b/public/script.js @@ -5409,6 +5409,7 @@ function parseAndSaveLogprobs(data, continueFrom) { case textgen_types.LLAMACPP: { logprobs = data?.completion_probabilities?.map(x => parseTextgenLogprobs(x.content, [x])) || null; } break; + case textgen_types.KOBOLDCPP: case textgen_types.VLLM: case textgen_types.INFERMATICAI: case textgen_types.APHRODITE: diff --git a/public/scripts/textgen-settings.js b/public/scripts/textgen-settings.js index 4bc61ace5..8fc33cb69 100644 --- a/public/scripts/textgen-settings.js +++ b/public/scripts/textgen-settings.js @@ -944,6 +944,7 @@ export function parseTextgenLogprobs(token, logprobs) { } switch (settings.type) { + case KOBOLDCPP: case TABBY: case VLLM: case APHRODITE: