Fix streaming url validation

This commit is contained in:
Cohee 2023-09-28 20:47:33 +03:00
parent 03fe8f88f9
commit 191c180946
1 changed files with 6 additions and 1 deletions

View File

@ -19,6 +19,7 @@ import {
getTextGenUrlSourceId,
isMancer,
isAphrodite,
textgen_types,
} from "./scripts/textgen-settings.js";
import {
@ -2325,7 +2326,11 @@ async function Generate(type, { automatic_trigger, force_name2, resolve, reject,
return;
}
if (main_api == 'textgenerationwebui' && textgenerationwebui_settings.streaming && !textgenerationwebui_settings.streaming_url) {
if (
main_api == 'textgenerationwebui' &&
textgenerationwebui_settings.streaming &&
textgenerationwebui_settings.type === textgen_types.OOBA &&
!textgenerationwebui_settings.streaming_url) {
toastr.error('Streaming URL is not set. Look it up in the console window when starting TextGen Web UI');
is_send_press = false;
return;