Reasoning template

This commit is contained in:
Cohee
2025-03-16 15:01:31 +02:00
parent 46b9bb7854
commit 62342b35e2
11 changed files with 234 additions and 20 deletions

View File

@ -55,6 +55,7 @@ import { POPUP_TYPE, callGenericPopup } from './popup.js';
import { loadSystemPrompts } from './sysprompt.js';
import { fuzzySearchCategories } from './filters.js';
import { accountStorage } from './util/AccountStorage.js';
import { loadReasoningTemplates } from './reasoning.js';
export {
loadPowerUserSettings,
@ -255,6 +256,7 @@ let power_user = {
},
reasoning: {
name: 'DeepSeek R1',
auto_parse: false,
add_to_prompts: false,
auto_expand: false,
@ -1622,6 +1624,7 @@ async function loadPowerUserSettings(settings, data) {
await loadInstructMode(data);
await loadContextSettings();
await loadSystemPrompts(data);
await loadReasoningTemplates(data);
loadMaxContextUnlocked();
switchWaifuMode();
switchSpoilerMode();