From 2a5a780f3b4b8a00c287938ba79fc32d162f1dce Mon Sep 17 00:00:00 2001 From: Cohee <18619528+Cohee1207@users.noreply.github.com> Date: Wed, 8 Nov 2023 18:01:41 +0200 Subject: [PATCH] Clarify ooba streaming error text --- public/script.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/public/script.js b/public/script.js index 1bff3ab07..3a9973372 100644 --- a/public/script.js +++ b/public/script.js @@ -2597,7 +2597,7 @@ async function Generate(type, { automatic_trigger, force_name2, resolve, reject, } if (main_api === 'textgenerationwebui' && textgenerationwebui_settings.streaming && textgenerationwebui_settings.legacy_api) { - toastr.error('Streaming is not supported for the legacy API schema. Update TextGen WebUI and use --extension openai to enable streaming.', undefined, { timeOut: 10000, preventDuplicates: true, }); + toastr.error('Streaming is not supported for the Legacy API. Update Ooba and use --extensions openai to enable streaming.', undefined, { timeOut: 10000, preventDuplicates: true, }); unblockGeneration(); return; }