mirror of
https://github.com/SillyTavern/SillyTavern.git
synced 2025-04-03 05:31:14 +02:00
Merge pull request #1502 from valadaptive/status-cleanup
Clean up getStatus code
This commit is contained in:
commit
e0d0e1dd66
143
public/script.js
143
public/script.js
@ -232,7 +232,6 @@ export {
|
|||||||
isStreamingEnabled,
|
isStreamingEnabled,
|
||||||
getThumbnailUrl,
|
getThumbnailUrl,
|
||||||
getStoppingStrings,
|
getStoppingStrings,
|
||||||
getStatus,
|
|
||||||
reloadMarkdownProcessor,
|
reloadMarkdownProcessor,
|
||||||
getCurrentChatId,
|
getCurrentChatId,
|
||||||
chat,
|
chat,
|
||||||
@ -860,7 +859,7 @@ export async function clearItemizedPrompts() {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
async function getStatus() {
|
async function getStatusKobold() {
|
||||||
if (main_api == 'koboldhorde') {
|
if (main_api == 'koboldhorde') {
|
||||||
try {
|
try {
|
||||||
const hordeStatus = await checkHordeStatus();
|
const hordeStatus = await checkHordeStatus();
|
||||||
@ -873,7 +872,7 @@ async function getStatus() {
|
|||||||
return resultCheckStatus();
|
return resultCheckStatus();
|
||||||
}
|
}
|
||||||
|
|
||||||
const url = main_api == 'textgenerationwebui' ? '/api/textgenerationwebui/status' : '/getstatus';
|
const url = '/getstatus';
|
||||||
|
|
||||||
let endpoint = getAPIServerUrl();
|
let endpoint = getAPIServerUrl();
|
||||||
|
|
||||||
@ -889,18 +888,64 @@ async function getStatus() {
|
|||||||
body: JSON.stringify({
|
body: JSON.stringify({
|
||||||
main_api,
|
main_api,
|
||||||
api_server: endpoint,
|
api_server: endpoint,
|
||||||
api_type: textgen_settings.type,
|
|
||||||
legacy_api: main_api == 'textgenerationwebui' ?
|
|
||||||
textgen_settings.legacy_api &&
|
|
||||||
textgen_settings.type !== MANCER :
|
|
||||||
false,
|
|
||||||
}),
|
}),
|
||||||
signal: abortStatusCheck.signal,
|
signal: abortStatusCheck.signal,
|
||||||
});
|
});
|
||||||
|
|
||||||
const data = await response.json();
|
const data = await response.json();
|
||||||
|
|
||||||
if (main_api == 'textgenerationwebui' && textgen_settings.type === MANCER) {
|
|
||||||
|
online_status = data?.result;
|
||||||
|
|
||||||
|
if (!online_status) {
|
||||||
|
online_status = 'no_connection';
|
||||||
|
}
|
||||||
|
|
||||||
|
// Determine instruct mode preset
|
||||||
|
autoSelectInstructPreset(online_status);
|
||||||
|
|
||||||
|
// determine if we can use stop sequence and streaming
|
||||||
|
setKoboldFlags(data.version, data.koboldVersion);
|
||||||
|
|
||||||
|
// We didn't get a 200 status code, but the endpoint has an explanation. Which means it DID connect, but I digress.
|
||||||
|
if (online_status === 'no_connection' && data.response) {
|
||||||
|
toastr.error(data.response, 'API Error', { timeOut: 5000, preventDuplicates: true });
|
||||||
|
}
|
||||||
|
} catch (err) {
|
||||||
|
console.error('Error getting status', err);
|
||||||
|
online_status = 'no_connection';
|
||||||
|
}
|
||||||
|
|
||||||
|
return resultCheckStatus();
|
||||||
|
}
|
||||||
|
|
||||||
|
async function getStatusTextgen() {
|
||||||
|
const url = '/api/textgenerationwebui/status';
|
||||||
|
|
||||||
|
let endpoint = getAPIServerUrl();
|
||||||
|
|
||||||
|
if (!endpoint) {
|
||||||
|
console.warn('No endpoint for status check');
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
try {
|
||||||
|
const response = await fetch(url, {
|
||||||
|
method: 'POST',
|
||||||
|
headers: getRequestHeaders(),
|
||||||
|
body: JSON.stringify({
|
||||||
|
api_server: endpoint,
|
||||||
|
api_type: textgen_settings.type,
|
||||||
|
legacy_api:
|
||||||
|
textgen_settings.legacy_api &&
|
||||||
|
textgen_settings.type !== MANCER,
|
||||||
|
}),
|
||||||
|
signal: abortStatusCheck.signal,
|
||||||
|
});
|
||||||
|
|
||||||
|
const data = await response.json();
|
||||||
|
|
||||||
|
if (textgen_settings.type === MANCER) {
|
||||||
online_status = textgen_settings.mancer_model;
|
online_status = textgen_settings.mancer_model;
|
||||||
loadMancerModels(data?.data);
|
loadMancerModels(data?.data);
|
||||||
} else {
|
} else {
|
||||||
@ -914,11 +959,6 @@ async function getStatus() {
|
|||||||
// Determine instruct mode preset
|
// Determine instruct mode preset
|
||||||
autoSelectInstructPreset(online_status);
|
autoSelectInstructPreset(online_status);
|
||||||
|
|
||||||
// determine if we can use stop sequence and streaming
|
|
||||||
if (main_api === 'kobold' || main_api === 'koboldhorde') {
|
|
||||||
setKoboldFlags(data.version, data.koboldVersion);
|
|
||||||
}
|
|
||||||
|
|
||||||
// We didn't get a 200 status code, but the endpoint has an explanation. Which means it DID connect, but I digress.
|
// We didn't get a 200 status code, but the endpoint has an explanation. Which means it DID connect, but I digress.
|
||||||
if (online_status === 'no_connection' && data.response) {
|
if (online_status === 'no_connection' && data.response) {
|
||||||
toastr.error(data.response, 'API Error', { timeOut: 5000, preventDuplicates: true });
|
toastr.error(data.response, 'API Error', { timeOut: 5000, preventDuplicates: true });
|
||||||
@ -931,6 +971,22 @@ async function getStatus() {
|
|||||||
return resultCheckStatus();
|
return resultCheckStatus();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
async function getStatusNovel() {
|
||||||
|
try {
|
||||||
|
const result = await loadNovelSubscriptionData();
|
||||||
|
|
||||||
|
if (!result) {
|
||||||
|
throw new Error('Could not load subscription data');
|
||||||
|
}
|
||||||
|
|
||||||
|
online_status = getNovelTier();
|
||||||
|
} catch {
|
||||||
|
online_status = 'no_connection';
|
||||||
|
}
|
||||||
|
|
||||||
|
resultCheckStatus();
|
||||||
|
}
|
||||||
|
|
||||||
export function startStatusLoading() {
|
export function startStatusLoading() {
|
||||||
$('.api_loading').show();
|
$('.api_loading').show();
|
||||||
$('.api_button').addClass('disabled');
|
$('.api_button').addClass('disabled');
|
||||||
@ -946,6 +1002,7 @@ export function resultCheckStatus() {
|
|||||||
stopStatusLoading();
|
stopStatusLoading();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// TODO(valadaptive): remove the usage of this function in the tokenizers code, then remove the function entirely
|
||||||
export function getAPIServerUrl() {
|
export function getAPIServerUrl() {
|
||||||
if (main_api == 'textgenerationwebui') {
|
if (main_api == 'textgenerationwebui') {
|
||||||
if (textgen_settings.type === MANCER) {
|
if (textgen_settings.type === MANCER) {
|
||||||
@ -5317,7 +5374,7 @@ function changeMainAPI() {
|
|||||||
}
|
}
|
||||||
|
|
||||||
if (main_api == 'koboldhorde') {
|
if (main_api == 'koboldhorde') {
|
||||||
getStatus();
|
getStatusKobold();
|
||||||
getHordeModels();
|
getHordeModels();
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -6034,22 +6091,6 @@ export async function displayPastChats() {
|
|||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
async function getStatusNovel() {
|
|
||||||
try {
|
|
||||||
const result = await loadNovelSubscriptionData();
|
|
||||||
|
|
||||||
if (!result) {
|
|
||||||
throw new Error('Could not load subscription data');
|
|
||||||
}
|
|
||||||
|
|
||||||
online_status = getNovelTier();
|
|
||||||
} catch {
|
|
||||||
online_status = 'no_connection';
|
|
||||||
}
|
|
||||||
|
|
||||||
resultCheckStatus();
|
|
||||||
}
|
|
||||||
|
|
||||||
function selectRightMenuWithAnimation(selectedMenuId) {
|
function selectRightMenuWithAnimation(selectedMenuId) {
|
||||||
const displayModes = {
|
const displayModes = {
|
||||||
'rm_group_chats_block': 'flex',
|
'rm_group_chats_block': 'flex',
|
||||||
@ -8271,7 +8312,7 @@ jQuery(async function () {
|
|||||||
|
|
||||||
main_api = 'kobold';
|
main_api = 'kobold';
|
||||||
saveSettingsDebounced();
|
saveSettingsDebounced();
|
||||||
getStatus();
|
getStatusKobold();
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
@ -8307,7 +8348,25 @@ jQuery(async function () {
|
|||||||
startStatusLoading();
|
startStatusLoading();
|
||||||
main_api = 'textgenerationwebui';
|
main_api = 'textgenerationwebui';
|
||||||
saveSettingsDebounced();
|
saveSettingsDebounced();
|
||||||
getStatus();
|
getStatusTextgen();
|
||||||
|
});
|
||||||
|
|
||||||
|
$('#api_button_novel').on('click', async function (e) {
|
||||||
|
e.stopPropagation();
|
||||||
|
const api_key_novel = String($('#api_key_novel').val()).trim();
|
||||||
|
|
||||||
|
if (api_key_novel.length) {
|
||||||
|
await writeSecret(SECRET_KEYS.NOVEL, api_key_novel);
|
||||||
|
}
|
||||||
|
|
||||||
|
if (!secret_state[SECRET_KEYS.NOVEL]) {
|
||||||
|
console.log('No secret key saved for NovelAI');
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
startStatusLoading();
|
||||||
|
// Check near immediately rather than waiting for up to 90s
|
||||||
|
await getStatusNovel();
|
||||||
});
|
});
|
||||||
|
|
||||||
var button = $('#options_button');
|
var button = $('#options_button');
|
||||||
@ -8996,24 +9055,6 @@ jQuery(async function () {
|
|||||||
});
|
});
|
||||||
//Select chat
|
//Select chat
|
||||||
|
|
||||||
$('#api_button_novel').on('click', async function (e) {
|
|
||||||
e.stopPropagation();
|
|
||||||
const api_key_novel = String($('#api_key_novel').val()).trim();
|
|
||||||
|
|
||||||
if (api_key_novel.length) {
|
|
||||||
await writeSecret(SECRET_KEYS.NOVEL, api_key_novel);
|
|
||||||
}
|
|
||||||
|
|
||||||
if (!secret_state[SECRET_KEYS.NOVEL]) {
|
|
||||||
console.log('No secret key saved for NovelAI');
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
startStatusLoading();
|
|
||||||
// Check near immediately rather than waiting for up to 90s
|
|
||||||
await getStatusNovel();
|
|
||||||
});
|
|
||||||
|
|
||||||
//**************************CHARACTER IMPORT EXPORT*************************//
|
//**************************CHARACTER IMPORT EXPORT*************************//
|
||||||
$('#character_import_button').click(function () {
|
$('#character_import_button').click(function () {
|
||||||
$('#character_import_file').click();
|
$('#character_import_file').click();
|
||||||
|
@ -1444,9 +1444,7 @@ select option:not(:checked) {
|
|||||||
display: block;
|
display: block;
|
||||||
}
|
}
|
||||||
|
|
||||||
#api_button:hover,
|
.menu_button.api_button:hover {
|
||||||
#api_button_novel:hover,
|
|
||||||
#api_button_textgenerationwebui:hover {
|
|
||||||
background-color: var(--active);
|
background-color: var(--active);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user