| 'use strict'; |
|
|
| import { extension_prompt_types, name1, name2, online_status, saveSettingsDebounced, substituteParams } from '../script.js'; |
| import { selected_group } from './group-chats.js'; |
| import { parseExampleIntoIndividual } from './openai.js'; |
| import { |
| power_user, |
| context_presets, |
| } from './power-user.js'; |
| import { onlyUnique, regexFromString, resetScrollHeight } from './utils.js'; |
|
|
| |
| |
| |
| export let instruct_presets = []; |
|
|
| export const names_behavior_types = { |
| NONE: 'none', |
| FORCE: 'force', |
| ALWAYS: 'always', |
| }; |
|
|
| const controls = [ |
| { id: 'instruct_enabled', property: 'enabled', isCheckbox: true }, |
| { id: 'instruct_wrap', property: 'wrap', isCheckbox: true }, |
| { id: 'instruct_macro', property: 'macro', isCheckbox: true }, |
| { id: 'instruct_story_string_prefix', property: 'story_string_prefix', isCheckbox: false }, |
| { id: 'instruct_story_string_suffix', property: 'story_string_suffix', isCheckbox: false }, |
| { id: 'instruct_input_sequence', property: 'input_sequence', isCheckbox: false }, |
| { id: 'instruct_input_suffix', property: 'input_suffix', isCheckbox: false }, |
| { id: 'instruct_output_sequence', property: 'output_sequence', isCheckbox: false }, |
| { id: 'instruct_output_suffix', property: 'output_suffix', isCheckbox: false }, |
| { id: 'instruct_system_sequence', property: 'system_sequence', isCheckbox: false }, |
| { id: 'instruct_system_suffix', property: 'system_suffix', isCheckbox: false }, |
| { id: 'instruct_last_system_sequence', property: 'last_system_sequence', isCheckbox: false }, |
| { id: 'instruct_user_alignment_message', property: 'user_alignment_message', isCheckbox: false }, |
| { id: 'instruct_stop_sequence', property: 'stop_sequence', isCheckbox: false }, |
| { id: 'instruct_first_output_sequence', property: 'first_output_sequence', isCheckbox: false }, |
| { id: 'instruct_last_output_sequence', property: 'last_output_sequence', isCheckbox: false }, |
| { id: 'instruct_first_input_sequence', property: 'first_input_sequence', isCheckbox: false }, |
| { id: 'instruct_last_input_sequence', property: 'last_input_sequence', isCheckbox: false }, |
| { id: 'instruct_activation_regex', property: 'activation_regex', isCheckbox: false }, |
| { id: 'instruct_bind_to_context', property: 'bind_to_context', isCheckbox: true }, |
| { id: 'instruct_skip_examples', property: 'skip_examples', isCheckbox: true }, |
| { id: 'instruct_names_behavior', property: 'names_behavior', isCheckbox: false }, |
| { id: 'instruct_system_same_as_user', property: 'system_same_as_user', isCheckbox: true, trigger: true }, |
| { id: 'instruct_sequences_as_stop_strings', property: 'sequences_as_stop_strings', isCheckbox: true }, |
| ]; |
|
|
| |
| |
| |
| |
| |
| function migrateInstructModeSettings(settings) { |
| |
| if (settings.separator_sequence !== undefined) { |
| settings.output_suffix = settings.separator_sequence || ''; |
| delete settings.separator_sequence; |
| } |
|
|
| |
| if (settings.names !== undefined) { |
| settings.names_behavior = settings.names |
| ? names_behavior_types.ALWAYS |
| : (settings.names_force_groups ? names_behavior_types.FORCE : names_behavior_types.NONE); |
| delete settings.names; |
| delete settings.names_force_groups; |
| } |
|
|
| const defaults = { |
| input_suffix: '', |
| system_sequence: '', |
| system_suffix: '', |
| user_alignment_message: '', |
| last_system_sequence: '', |
| first_input_sequence: '', |
| last_input_sequence: '', |
| skip_examples: false, |
| system_same_as_user: false, |
| names_behavior: names_behavior_types.FORCE, |
| sequences_as_stop_strings: true, |
| story_string_prefix: '', |
| story_string_suffix: '', |
| }; |
|
|
| for (let key in defaults) { |
| if (settings[key] === undefined) { |
| settings[key] = defaults[key]; |
| } |
| } |
|
|
| const obsoleteFields = [ |
| 'names', |
| 'names_force_groups', |
| 'system_sequence_prefix', |
| 'system_sequence_suffix', |
| ]; |
|
|
| for (const field of obsoleteFields) { |
| if (Object.hasOwn(settings, field)) { |
| delete settings[field]; |
| } |
| } |
| } |
|
|
| |
| |
| |
| |
| export async function loadInstructMode(data) { |
| if (data.instruct !== undefined) { |
| instruct_presets = data.instruct; |
| } |
|
|
| migrateInstructModeSettings(power_user.instruct); |
|
|
| $('#instruct_enabled').parent().find('i').toggleClass('toggleEnabled', !!power_user.instruct.enabled); |
| $('#instructSettingsBlock, #InstructSequencesColumn').toggleClass('disabled', !power_user.instruct.enabled); |
| $('#instruct_derived').parent().find('i').toggleClass('toggleEnabled', !!power_user.instruct_derived); |
| $('#instruct_bind_to_context').parent().find('i').toggleClass('toggleEnabled', !!power_user.instruct.bind_to_context); |
|
|
| controls.forEach(control => { |
| const $element = $(`#${control.id}`); |
|
|
| if (control.isCheckbox) { |
| $element.prop('checked', power_user.instruct[control.property]); |
| } else if ($element.is('select')) { |
| const value = power_user.instruct[control.property]; |
| $element.val(value); |
| $element.filter(`[value="${value}"]`).prop('checked', true); |
| } else { |
| $element.val(power_user.instruct[control.property]); |
| } |
|
|
| $element.on('input', async function () { |
| power_user.instruct[control.property] = control.isCheckbox ? !!$(this).prop('checked') : $(this).val(); |
| if (!CSS.supports('field-sizing', 'content') && $(this).is('textarea')) { |
| await resetScrollHeight($(this)); |
| } |
| saveSettingsDebounced(); |
| }); |
|
|
| if (control.trigger) { |
| $element.trigger('input'); |
| } |
| }); |
|
|
| instruct_presets.forEach((preset) => { |
| const name = preset.name; |
| const option = document.createElement('option'); |
| option.value = name; |
| option.innerText = name; |
| option.selected = name === power_user.instruct.preset; |
| $('#instruct_presets').append(option); |
| }); |
| } |
|
|
| |
| |
| |
| export function updateBindModelTemplatesState() { |
| const bindModelTemplates = power_user.model_templates_mappings[online_status] ?? power_user.model_templates_mappings[power_user.chat_template_hash]; |
| const bindingsMatch = (bindModelTemplates && power_user.context.preset === bindModelTemplates['context'] && (!power_user.instruct.enabled || power_user.instruct.preset === bindModelTemplates['instruct'])) ?? false; |
| const currentState = $('#bind_model_templates').prop('checked'); |
| if (bindingsMatch === currentState) { |
| |
| return; |
| } |
| $('#bind_model_templates').prop('checked', bindingsMatch); |
| } |
|
|
| |
| |
| |
| |
| |
| |
| |
| export function selectContextPreset(preset, { quiet = false, isAuto = false } = {}) { |
| const presetExists = context_presets.some(x => x.name === preset); |
| if (!presetExists) { |
| console.warn(`Context template "${preset}" not found`); |
| return; |
| } |
|
|
| |
| if (preset !== power_user.context.preset) { |
| $('#context_presets').val(preset).trigger('change'); |
| !quiet && toastr.info(`Context Template: "${preset}" ${isAuto ? 'auto-' : ''}selected`); |
| } |
|
|
| updateBindModelTemplatesState(); |
|
|
| saveSettingsDebounced(); |
| } |
|
|
| |
| |
| |
| |
| |
| |
| |
| export function selectInstructPreset(preset, { quiet = false, isAuto = false } = {}) { |
| const presetExists = instruct_presets.some(x => x.name === preset); |
| if (!presetExists) { |
| console.warn(`Instruct template "${preset}" not found`); |
| return; |
| } |
|
|
| |
| if (preset !== power_user.instruct.preset) { |
| $('#instruct_presets').val(preset).trigger('change'); |
| !quiet && toastr.info(`Instruct Template: "${preset}" ${isAuto ? 'auto-' : ''}selected`); |
| } |
|
|
| |
| if (!power_user.instruct.enabled) { |
| power_user.instruct.enabled = true; |
| $('#instruct_enabled').prop('checked', true).trigger('change'); |
| !quiet && toastr.info('Instruct Mode enabled'); |
| } |
|
|
| updateBindModelTemplatesState(); |
|
|
| saveSettingsDebounced(); |
| } |
|
|
| |
| |
| |
| |
| |
| |
| export function autoSelectInstructPreset(modelId) { |
| const modelTemplatesMap = power_user.model_templates_mappings[modelId]; |
|
|
| if (modelTemplatesMap) { |
| const { instruct, context } = modelTemplatesMap; |
| if (instruct) { |
| selectInstructPreset(instruct, { isAuto: true }); |
| } |
| if (context) { |
| selectContextPreset(context, { isAuto: true }); |
| } |
| return true; |
| } else { |
| updateBindModelTemplatesState(); |
| } |
|
|
| |
| if (!power_user.instruct.enabled) { |
| return false; |
| } |
|
|
| |
| let foundMatch = false; |
|
|
| for (const preset of instruct_presets) { |
| |
| if (preset.activation_regex) { |
| try { |
| const regex = regexFromString(preset.activation_regex); |
|
|
| |
| if (regex instanceof RegExp && regex.test(modelId)) { |
| selectInstructPreset(preset.name, { isAuto: true }); |
| foundMatch = true; |
| break; |
| } |
| } catch { |
| |
| console.warn(`Invalid instruct activation regex in preset "${preset.name}"`); |
| } |
| } |
| } |
|
|
| |
| if (!foundMatch && power_user.instruct.bind_to_context) { |
| for (const instruct_preset of instruct_presets) { |
| |
| if (instruct_preset.name === power_user.context.preset) { |
| selectInstructPreset(instruct_preset.name, { isAuto: true }); |
| foundMatch = true; |
| break; |
| } |
| } |
| } |
|
|
| return foundMatch; |
| } |
|
|
| |
| |
| |
| |
| |
| |
| |
| export function getInstructStoppingSequences({ customInstruct = null, useStopStrings = null } = {}) { |
| const instruct = structuredClone(customInstruct ?? power_user.instruct); |
|
|
| |
| |
| |
| |
| |
| function addInstructSequence(sequence) { |
| |
| |
| const wrap = (s) => instruct.wrap ? '\n' + s : s; |
| |
| if (typeof sequence === 'string' && sequence.length > 0) { |
| |
| |
| if (sequence.trim().length > 0) { |
| const wrappedSequence = wrap(sequence); |
| |
| const stopString = instruct.macro ? substituteParams(wrappedSequence) : wrappedSequence; |
| result.push(stopString); |
| } |
| } |
| } |
|
|
| const result = []; |
|
|
| |
| if (customInstruct ?? instruct.enabled) { |
| const stop_sequence = instruct.stop_sequence || ''; |
| const input_sequence = instruct.input_sequence?.replace(/{{name}}/gi, name1) || ''; |
| const output_sequence = instruct.output_sequence?.replace(/{{name}}/gi, name2) || ''; |
| const first_output_sequence = instruct.first_output_sequence?.replace(/{{name}}/gi, name2) || ''; |
| const last_output_sequence = instruct.last_output_sequence?.replace(/{{name}}/gi, name2) || ''; |
| const system_sequence = instruct.system_sequence?.replace(/{{name}}/gi, 'System') || ''; |
| const last_system_sequence = instruct.last_system_sequence?.replace(/{{name}}/gi, 'System') || ''; |
|
|
| const combined_sequence = [ |
| stop_sequence, |
| ]; |
|
|
| if (instruct.sequences_as_stop_strings) { |
| combined_sequence.push( |
| input_sequence, |
| output_sequence, |
| first_output_sequence, |
| last_output_sequence, |
| system_sequence, |
| last_system_sequence, |
| ); |
| } |
|
|
| combined_sequence.join('\n').split('\n').filter(onlyUnique).forEach(addInstructSequence); |
| } |
|
|
| if (useStopStrings ?? power_user.context.use_stop_strings) { |
| if (power_user.context.chat_start) { |
| result.push(`\n${substituteParams(power_user.context.chat_start)}`); |
| } |
|
|
| if (power_user.context.example_separator) { |
| result.push(`\n${substituteParams(power_user.context.example_separator)}`); |
| } |
| } |
|
|
| return result; |
| } |
|
|
| export const force_output_sequence = { |
| FIRST: 1, |
| LAST: 2, |
| }; |
|
|
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| export function formatInstructModeChat(name, mes, isUser, isNarrator, forceAvatar, name1, name2, forceOutputSequence, customInstruct = null) { |
| const instruct = structuredClone(customInstruct ?? power_user.instruct); |
| let includeNames = isNarrator ? false : instruct.names_behavior === names_behavior_types.ALWAYS; |
|
|
| if (!isNarrator && instruct.names_behavior === names_behavior_types.FORCE && ((selected_group && name !== name1) || (forceAvatar && name !== name1))) { |
| includeNames = true; |
| } |
|
|
| function getPrefix() { |
| if (isNarrator) { |
| return instruct.system_same_as_user ? instruct.input_sequence : instruct.system_sequence; |
| } |
|
|
| if (isUser) { |
| if (forceOutputSequence === force_output_sequence.FIRST) { |
| return instruct.first_input_sequence || instruct.input_sequence; |
| } |
|
|
| if (forceOutputSequence === force_output_sequence.LAST) { |
| return instruct.last_input_sequence || instruct.input_sequence; |
| } |
|
|
| return instruct.input_sequence; |
| } |
|
|
| if (forceOutputSequence === force_output_sequence.FIRST) { |
| return instruct.first_output_sequence || instruct.output_sequence; |
| } |
|
|
| if (forceOutputSequence === force_output_sequence.LAST) { |
| return instruct.last_output_sequence || instruct.output_sequence; |
| } |
|
|
| return instruct.output_sequence; |
| } |
|
|
| function getSuffix() { |
| if (isNarrator) { |
| return instruct.system_same_as_user ? instruct.input_suffix : instruct.system_suffix; |
| } |
|
|
| if (isUser) { |
| return instruct.input_suffix; |
| } |
|
|
| return instruct.output_suffix; |
| } |
|
|
| let prefix = getPrefix() || ''; |
| let suffix = getSuffix() || ''; |
|
|
| if (instruct.macro) { |
| prefix = substituteParams(prefix, { name1Override: name1, name2Override: name2 }); |
| prefix = prefix.replace(/{{name}}/gi, name || 'System'); |
|
|
| suffix = substituteParams(suffix, { name1Override: name1, name2Override: name2 }); |
| suffix = suffix.replace(/{{name}}/gi, name || 'System'); |
| } |
|
|
| if (!suffix && instruct.wrap) { |
| suffix = '\n'; |
| } |
|
|
| const separator = instruct.wrap ? '\n' : ''; |
|
|
| |
| const textArray = includeNames && name ? [prefix, `${name}: ${mes}` + suffix] : [prefix, mes + suffix]; |
| const text = textArray.filter(x => x).join(separator); |
|
|
| return text; |
| } |
|
|
| |
| |
| |
| |
| |
| |
| |
| export function formatInstructModeSystemPrompt(systemPrompt, _customInstruct = null) { |
| return systemPrompt || ''; |
| } |
|
|
| |
| |
| |
| |
| |
| |
| |
| |
| export function formatInstructModeStoryString(storyString, { customContext = null, customInstruct = null } = {}) { |
| if (!storyString) { |
| return ''; |
| } |
|
|
| const instructSettings = structuredClone(customInstruct ?? power_user.instruct); |
| const contextSettings = structuredClone(customContext ?? power_user.context); |
| const storyStringPosition = contextSettings.story_string_position ?? extension_prompt_types.IN_PROMPT; |
|
|
| |
| const applySequences = storyStringPosition !== extension_prompt_types.IN_CHAT; |
| const separator = instructSettings.wrap ? '\n' : ''; |
| if (applySequences && instructSettings.story_string_prefix) { |
| |
| const prefix = substituteParams(instructSettings.story_string_prefix).replace(/{{name}}/gi, 'System'); |
| storyString = prefix + separator + storyString; |
| } |
|
|
| if (applySequences && instructSettings.story_string_suffix) { |
| const suffix = substituteParams(instructSettings.story_string_suffix); |
| storyString = storyString + suffix; |
| } |
|
|
| return storyString; |
| } |
|
|
| |
| |
| |
| |
| |
| |
| |
| export function formatInstructModeExamples(mesExamplesArray, name1, name2) { |
| const blockHeading = power_user.context.example_separator ? `${substituteParams(power_user.context.example_separator)}\n` : ''; |
|
|
| if (power_user.instruct.skip_examples) { |
| return mesExamplesArray.map(x => x.replace(/<START>\n/i, blockHeading)); |
| } |
|
|
| const includeNames = power_user.instruct.names_behavior === names_behavior_types.ALWAYS; |
| const includeGroupNames = selected_group && [names_behavior_types.ALWAYS, names_behavior_types.FORCE].includes(power_user.instruct.names_behavior); |
|
|
| let inputPrefix = power_user.instruct.input_sequence || ''; |
| let outputPrefix = power_user.instruct.output_sequence || ''; |
| let inputSuffix = power_user.instruct.input_suffix || ''; |
| let outputSuffix = power_user.instruct.output_suffix || ''; |
|
|
| if (power_user.instruct.macro) { |
| inputPrefix = substituteParams(inputPrefix, { name1Override: name1, name2Override: name2 }); |
| outputPrefix = substituteParams(outputPrefix, { name1Override: name1, name2Override: name2 }); |
| inputSuffix = substituteParams(inputSuffix, { name1Override: name1, name2Override: name2 }); |
| outputSuffix = substituteParams(outputSuffix, { name1Override: name1, name2Override: name2 }); |
|
|
| inputPrefix = inputPrefix.replace(/{{name}}/gi, name1); |
| outputPrefix = outputPrefix.replace(/{{name}}/gi, name2); |
| inputSuffix = inputSuffix.replace(/{{name}}/gi, name1); |
| outputSuffix = outputSuffix.replace(/{{name}}/gi, name2); |
|
|
| if (!inputSuffix && power_user.instruct.wrap) { |
| inputSuffix = '\n'; |
| } |
|
|
| if (!outputSuffix && power_user.instruct.wrap) { |
| outputSuffix = '\n'; |
| } |
| } |
|
|
| const separator = power_user.instruct.wrap ? '\n' : ''; |
| const formattedExamples = []; |
|
|
| for (const item of mesExamplesArray) { |
| const cleanedItem = item.replace(/<START>/i, '{Example Dialogue:}').replace(/\r/gm, ''); |
| const blockExamples = parseExampleIntoIndividual(cleanedItem, includeGroupNames); |
|
|
| if (blockExamples.length === 0) { |
| continue; |
| } |
|
|
| if (blockHeading) { |
| formattedExamples.push(blockHeading); |
| } |
|
|
| for (const example of blockExamples) { |
| |
| |
| const includeThisName = !includeGroupNames && (includeNames || (power_user.instruct.names_behavior === names_behavior_types.FORCE && example.name == 'example_user')); |
|
|
| const prefix = example.name == 'example_user' ? inputPrefix : outputPrefix; |
| const suffix = example.name == 'example_user' ? inputSuffix : outputSuffix; |
| const name = example.name == 'example_user' ? name1 : name2; |
| const messageContent = includeThisName ? `${name}: ${example.content}` : example.content; |
| const formattedMessage = [prefix, messageContent + suffix].filter(x => x).join(separator); |
| formattedExamples.push(formattedMessage); |
| } |
| } |
|
|
| if (formattedExamples.length === 0) { |
| return mesExamplesArray.map(x => x.replace(/<START>\n/i, blockHeading)); |
| } |
| return formattedExamples; |
| } |
|
|
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| export function formatInstructModePrompt(name, isImpersonate, promptBias, name1, name2, isQuiet, isQuietToLoud, customInstruct = null) { |
| const instruct = structuredClone(customInstruct ?? power_user.instruct); |
| const includeNames = name && (instruct.names_behavior === names_behavior_types.ALWAYS || (!!selected_group && instruct.names_behavior === names_behavior_types.FORCE)) && !(isQuiet && !isQuietToLoud); |
|
|
| function getSequence() { |
| |
| if (isImpersonate) { |
| return instruct.input_sequence; |
| } |
|
|
| |
| |
| if (isQuiet && !isQuietToLoud) { |
| return instruct.last_system_sequence || instruct.output_sequence; |
| } |
|
|
| |
| if (isQuiet && isQuietToLoud) { |
| return instruct.last_output_sequence || instruct.output_sequence; |
| } |
|
|
| |
| return instruct.last_output_sequence || instruct.output_sequence; |
| } |
|
|
| let sequence = getSequence() || ''; |
| let nameFiller = ''; |
|
|
| |
| if ( |
| includeNames && |
| instruct.last_output_sequence && |
| instruct.output_sequence && |
| sequence === instruct.last_output_sequence && |
| /\s$/.test(instruct.output_sequence) && |
| !/\s$/.test(instruct.last_output_sequence) |
| ) { |
| nameFiller = instruct.output_sequence.slice(-1); |
| } |
|
|
| if (instruct.macro) { |
| sequence = substituteParams(sequence, { name1Override: name1, name2Override: name2 }); |
| sequence = sequence.replace(/{{name}}/gi, name || 'System'); |
| } |
|
|
| const separator = instruct.wrap ? '\n' : ''; |
| let text = includeNames ? (separator + sequence + separator + nameFiller + `${name}:`) : (separator + sequence); |
|
|
| |
| if (isQuiet && separator) { |
| text = text.slice(separator.length); |
| } |
|
|
| if (!isImpersonate && promptBias) { |
| text += (includeNames ? promptBias : (separator + promptBias.trimStart())); |
| } |
|
|
| return (instruct.wrap ? text.trimEnd() : text) + (includeNames ? '' : separator); |
| } |
|
|
| |
| |
| |
| |
| function selectMatchingContextTemplate(name) { |
| for (const context_preset of context_presets) { |
| |
| if (context_preset.name === name) { |
| selectContextPreset(context_preset.name, { isAuto: true }); |
| break; |
| } |
| } |
| } |
|
|
| |
| |
| |
| |
| |
| |
| export function getInstructMacros(env) { |
| |
| const instructMacros = [ |
| |
| { |
| key: 'instructStoryStringPrefix', |
| value: power_user.instruct.story_string_prefix, |
| enabled: power_user.instruct.enabled, |
| }, |
| { |
| key: 'instructStoryStringSuffix', |
| value: power_user.instruct.story_string_suffix, |
| enabled: power_user.instruct.enabled, |
| }, |
| { |
| key: 'instructInput|instructUserPrefix', |
| value: power_user.instruct.input_sequence, |
| enabled: power_user.instruct.enabled, |
| }, |
| { |
| key: 'instructUserSuffix', |
| value: power_user.instruct.input_suffix, |
| enabled: power_user.instruct.enabled, |
| }, |
| { |
| key: 'instructOutput|instructAssistantPrefix', |
| value: power_user.instruct.output_sequence, |
| enabled: power_user.instruct.enabled, |
| }, |
| { |
| key: 'instructSeparator|instructAssistantSuffix', |
| value: power_user.instruct.output_suffix, |
| enabled: power_user.instruct.enabled, |
| }, |
| { |
| key: 'instructSystemPrefix', |
| value: power_user.instruct.system_sequence, |
| enabled: power_user.instruct.enabled, |
| }, |
| { |
| key: 'instructSystemSuffix', |
| value: power_user.instruct.system_suffix, |
| enabled: power_user.instruct.enabled, |
| }, |
| { |
| key: 'instructFirstOutput|instructFirstAssistantPrefix', |
| value: power_user.instruct.first_output_sequence || power_user.instruct.output_sequence, |
| enabled: power_user.instruct.enabled, |
| }, |
| { |
| key: 'instructLastOutput|instructLastAssistantPrefix', |
| value: power_user.instruct.last_output_sequence || power_user.instruct.output_sequence, |
| enabled: power_user.instruct.enabled, |
| }, |
| { |
| key: 'instructStop', |
| value: power_user.instruct.stop_sequence, |
| enabled: power_user.instruct.enabled, |
| }, |
| { |
| key: 'instructUserFiller', |
| value: power_user.instruct.user_alignment_message, |
| enabled: power_user.instruct.enabled, |
| }, |
| { |
| key: 'instructSystemInstructionPrefix', |
| value: power_user.instruct.last_system_sequence, |
| enabled: power_user.instruct.enabled, |
| }, |
| { |
| key: 'instructFirstInput|instructFirstUserPrefix', |
| value: power_user.instruct.first_input_sequence || power_user.instruct.input_sequence, |
| enabled: power_user.instruct.enabled, |
| }, |
| { |
| key: 'instructLastInput|instructLastUserPrefix', |
| value: power_user.instruct.last_input_sequence || power_user.instruct.input_sequence, |
| enabled: power_user.instruct.enabled, |
| }, |
| |
| { |
| key: 'systemPrompt', |
| value: power_user.prefer_character_prompt && env.charPrompt ? env.charPrompt : power_user.sysprompt.content, |
| enabled: power_user.sysprompt.enabled, |
| }, |
| { |
| key: 'defaultSystemPrompt|instructSystem|instructSystemPrompt', |
| value: power_user.sysprompt.content, |
| enabled: power_user.sysprompt.enabled, |
| }, |
| |
| { |
| key: 'chatSeparator', |
| value: power_user.context.example_separator, |
| enabled: true, |
| }, |
| { |
| key: 'chatStart', |
| value: power_user.context.chat_start, |
| enabled: true, |
| }, |
| ]; |
|
|
| const macros = []; |
|
|
| for (const { key, value, enabled } of instructMacros) { |
| const regex = new RegExp(`{{(${key})}}`, 'gi'); |
| const replace = () => enabled ? value : ''; |
| macros.push({ regex, replace }); |
| } |
|
|
| return macros; |
| } |
|
|
| jQuery(() => { |
| $('#instruct_system_same_as_user').on('input', function () { |
| const state = !!$(this).prop('checked'); |
| if (state) { |
| $('#instruct_system_sequence_block').addClass('disabled'); |
| $('#instruct_system_suffix_block').addClass('disabled'); |
| $('#instruct_system_sequence').prop('readOnly', true); |
| $('#instruct_system_suffix').prop('readOnly', true); |
| } else { |
| $('#instruct_system_sequence_block').removeClass('disabled'); |
| $('#instruct_system_suffix_block').removeClass('disabled'); |
| $('#instruct_system_sequence').prop('readOnly', false); |
| $('#instruct_system_suffix').prop('readOnly', false); |
| } |
|
|
| }); |
|
|
| $('#instruct_enabled').on('change', function () { |
| |
| $('#instruct_enabled').parent().find('i').toggleClass('toggleEnabled', !!power_user.instruct.enabled); |
| $('#instructSettingsBlock, #InstructSequencesColumn').toggleClass('disabled', !power_user.instruct.enabled); |
|
|
| if (!power_user.instruct.bind_to_context) { |
| return; |
| } |
|
|
| |
| if (power_user.instruct.enabled) { |
| selectMatchingContextTemplate(power_user.instruct.preset); |
| } |
| }); |
|
|
| $('#instruct_derived').on('change', function () { |
| $('#instruct_derived').parent().find('i').toggleClass('toggleEnabled', !!power_user.instruct_derived); |
| }); |
|
|
| $('#instruct_bind_to_context').on('change', function () { |
| $('#instruct_bind_to_context').parent().find('i').toggleClass('toggleEnabled', !!power_user.instruct.bind_to_context); |
| }); |
|
|
| $('#instruct_presets').on('change', function () { |
| const name = String($(this).find(':selected').val()); |
| const preset = instruct_presets.find(x => x.name === name); |
|
|
| if (!preset) { |
| return; |
| } |
|
|
| migrateInstructModeSettings(preset); |
|
|
| power_user.instruct.preset = String(name); |
| controls.forEach(control => { |
| if (preset[control.property] !== undefined) { |
| power_user.instruct[control.property] = preset[control.property]; |
| const $element = $(`#${control.id}`); |
|
|
| if (control.isCheckbox) { |
| $element.prop('checked', power_user.instruct[control.property]).trigger('input'); |
| } else if ($element.is('select')) { |
| const value = power_user.instruct[control.property]; |
| $element.val(value); |
| $element.filter(`[value="${value}"]`).prop('checked', true).trigger('input'); |
| } else { |
| $element.val(power_user.instruct[control.property]); |
| $element.trigger('input'); |
| } |
| } |
| }); |
|
|
| if (power_user.instruct.bind_to_context) { |
| |
| selectMatchingContextTemplate(name); |
| } |
|
|
| updateBindModelTemplatesState(); |
| }); |
|
|
| if (!CSS.supports('field-sizing', 'content')) { |
| $('#InstructSequencesColumn details').on('toggle', function () { |
| if ($(this).prop('open')) { |
| resetScrollHeight($(this).find('textarea')); |
| } |
| }); |
| } |
| }); |
|
|