#1627 Bypass status check and custom model for textgen type

This commit is contained in:
Cohee
2024-01-05 19:15:07 +02:00
parent 394e703d92
commit 5f93c30a96
4 changed files with 20 additions and 0 deletions

View File

@ -954,6 +954,11 @@ async function getStatusTextgen() {
return resultCheckStatus();
}
if (textgen_settings.type == OOBA && textgen_settings.bypass_status_check) {
online_status = 'Status check bypassed';
return resultCheckStatus();
}
try {
const response = await fetch(url, {
method: 'POST',