horde.js: update for new popup

This commit is contained in:
Cohee
2025-06-03 00:06:34 +03:00
parent b72d7f37d7
commit 8cf11bccde

View File

@@ -1,6 +1,5 @@
import { import {
amount_gen, amount_gen,
callPopup,
getRequestHeaders, getRequestHeaders,
max_context, max_context,
saveSettingsDebounced, saveSettingsDebounced,
@@ -11,6 +10,7 @@ import { delay } from './utils.js';
import { isMobile } from './RossAscends-mods.js'; import { isMobile } from './RossAscends-mods.js';
import { autoSelectInstructPreset } from './instruct-mode.js'; import { autoSelectInstructPreset } from './instruct-mode.js';
import { t } from './i18n.js'; import { t } from './i18n.js';
import { callGenericPopup, POPUP_TYPE } from './popup.js';
export { export {
horde_settings, horde_settings,
@@ -271,7 +271,7 @@ async function generateHorde(prompt, params, signal, reportProgress) {
await delay(CHECK_INTERVAL); await delay(CHECK_INTERVAL);
} }
callPopup('Horde request timed out. Try again', 'text'); await callGenericPopup(t`Horde request timed out. Try again`, POPUP_TYPE.TEXT);
throw new Error('Horde timeout'); throw new Error('Horde timeout');
} }