mirror of
https://github.com/SillyTavern/SillyTavern.git
synced 2025-06-05 21:59:27 +02:00
Merge branch 'staging' into reasoning-parsing-streaming
This commit is contained in:
@@ -346,7 +346,7 @@ export class SettingsUi {
|
||||
}
|
||||
|
||||
async addQrSet() {
|
||||
const name = await Popup.show.input('Create a new World Info', 'Enter a name for the new Quick Reply Set:');
|
||||
const name = await Popup.show.input('Create a new Quick Reply Set', 'Enter a name for the new Quick Reply Set:');
|
||||
if (name && name.length > 0) {
|
||||
const oldQrs = QuickReplySet.get(name);
|
||||
if (oldQrs) {
|
||||
|
@@ -106,7 +106,7 @@ export function isHiddenReasoningModel() {
|
||||
{ name: 'gemini-2.0-pro-exp', func: FUNCS.startsWith },
|
||||
];
|
||||
|
||||
const model = getChatCompletionModel();
|
||||
const model = getChatCompletionModel() || '';
|
||||
|
||||
const isHidden = hiddenReasoningModels.some(({ name, func }) => func(model, name));
|
||||
return isHidden;
|
||||
|
@@ -58,9 +58,14 @@ const OPENROUTER_PROVIDERS = [
|
||||
'Minimax',
|
||||
'Nineteen',
|
||||
'Liquid',
|
||||
'InferenceNet',
|
||||
'Friendli',
|
||||
'AionLabs',
|
||||
'Alibaba',
|
||||
'Nebius',
|
||||
'Chutes',
|
||||
'Kluster',
|
||||
'Targon',
|
||||
'01.AI',
|
||||
'HuggingFace',
|
||||
'Mancer',
|
||||
|
Reference in New Issue
Block a user