2023-07-30 22:10:37 +02:00
import { getStringHash , debounce , waitUntilCondition , extractAllWords } from "../../utils.js" ;
2023-07-20 19:32:15 +02:00
import { getContext , getApiUrl , extension _settings , doExtrasFetch , modules } from "../../extensions.js" ;
import { eventSource , event _types , extension _prompt _types , generateQuietPrompt , is _send _press , saveSettingsDebounced , substituteParams } from "../../../script.js" ;
export { MODULE _NAME } ;
const MODULE _NAME = '1_memory' ;
let lastCharacterId = null ;
let lastGroupId = null ;
let lastChatId = null ;
let lastMessageHash = null ;
let lastMessageId = null ;
let inApiCall = false ;
2023-07-30 22:10:37 +02:00
const formatMemoryValue = function ( value ) {
if ( ! value ) {
return '' ;
}
value = value . trim ( ) ;
if ( extension _settings . memory . template ) {
let result = extension _settings . memory . template . replace ( /{{summary}}/i , value ) ;
return substituteParams ( result ) ;
} else {
return ` Summary: ${ value } ` ;
}
}
2023-07-20 19:32:15 +02:00
const saveChatDebounced = debounce ( ( ) => getContext ( ) . saveChat ( ) , 2000 ) ;
const summary _sources = {
'extras' : 'extras' ,
'main' : 'main' ,
} ;
const defaultPrompt = '[Pause your roleplay. Summarize the most important facts and events that have happened in the chat so far. If a summary already exists in your memory, use that as a base and expand with new facts. Limit the summary to {{words}} words or less. Your response should include nothing but the summary.]' ;
2023-07-30 22:10:37 +02:00
const defaultTemplate = '[Summary: {{summary}}]' ;
2023-07-20 19:32:15 +02:00
const defaultSettings = {
minLongMemory : 16 ,
maxLongMemory : 1024 ,
longMemoryLength : 128 ,
shortMemoryLength : 512 ,
minShortMemory : 128 ,
maxShortMemory : 1024 ,
shortMemoryStep : 16 ,
longMemoryStep : 8 ,
repetitionPenaltyStep : 0.05 ,
repetitionPenalty : 1.2 ,
maxRepetitionPenalty : 2.0 ,
minRepetitionPenalty : 1.0 ,
temperature : 1.0 ,
minTemperature : 0.1 ,
maxTemperature : 2.0 ,
temperatureStep : 0.05 ,
lengthPenalty : 1 ,
minLengthPenalty : - 4 ,
maxLengthPenalty : 4 ,
lengthPenaltyStep : 0.1 ,
memoryFrozen : false ,
source : summary _sources . extras ,
prompt : defaultPrompt ,
2023-07-30 22:10:37 +02:00
template : defaultTemplate ,
position : extension _prompt _types . AFTER _SCENARIO ,
depth : 2 ,
2023-07-20 19:32:15 +02:00
promptWords : 200 ,
promptMinWords : 25 ,
promptMaxWords : 1000 ,
promptWordsStep : 25 ,
promptInterval : 10 ,
promptMinInterval : 1 ,
promptMaxInterval : 100 ,
promptIntervalStep : 1 ,
2023-07-30 22:10:37 +02:00
promptForceWords : 0 ,
promptForceWordsStep : 100 ,
promptMinForceWords : 0 ,
promptMaxForceWords : 10000 ,
2023-07-20 19:32:15 +02:00
} ;
function loadSettings ( ) {
if ( Object . keys ( extension _settings . memory ) . length === 0 ) {
Object . assign ( extension _settings . memory , defaultSettings ) ;
}
2023-07-30 22:10:37 +02:00
for ( const key of Object . keys ( defaultSettings ) ) {
if ( extension _settings . memory [ key ] === undefined ) {
extension _settings . memory [ key ] = defaultSettings [ key ] ;
}
2023-07-20 19:32:15 +02:00
}
$ ( '#summary_source' ) . val ( extension _settings . memory . source ) . trigger ( 'change' ) ;
$ ( '#memory_long_length' ) . val ( extension _settings . memory . longMemoryLength ) . trigger ( 'input' ) ;
$ ( '#memory_short_length' ) . val ( extension _settings . memory . shortMemoryLength ) . trigger ( 'input' ) ;
$ ( '#memory_repetition_penalty' ) . val ( extension _settings . memory . repetitionPenalty ) . trigger ( 'input' ) ;
$ ( '#memory_temperature' ) . val ( extension _settings . memory . temperature ) . trigger ( 'input' ) ;
$ ( '#memory_length_penalty' ) . val ( extension _settings . memory . lengthPenalty ) . trigger ( 'input' ) ;
$ ( '#memory_frozen' ) . prop ( 'checked' , extension _settings . memory . memoryFrozen ) . trigger ( 'input' ) ;
$ ( '#memory_prompt' ) . val ( extension _settings . memory . prompt ) . trigger ( 'input' ) ;
$ ( '#memory_prompt_words' ) . val ( extension _settings . memory . promptWords ) . trigger ( 'input' ) ;
$ ( '#memory_prompt_interval' ) . val ( extension _settings . memory . promptInterval ) . trigger ( 'input' ) ;
2023-07-30 22:10:37 +02:00
$ ( '#memory_template' ) . val ( extension _settings . memory . template ) . trigger ( 'input' ) ;
$ ( '#memory_depth' ) . val ( extension _settings . memory . depth ) . trigger ( 'input' ) ;
$ ( ` input[name="memory_position"][value=" ${ extension _settings . memory . position } "] ` ) . prop ( 'checked' , true ) . trigger ( 'input' ) ;
$ ( '#memory_prompt_words_force' ) . val ( extension _settings . memory . promptForceWords ) . trigger ( 'input' ) ;
2023-07-20 19:32:15 +02:00
}
function onSummarySourceChange ( event ) {
const value = event . target . value ;
extension _settings . memory . source = value ;
$ ( '#memory_settings [data-source]' ) . each ( ( _ , element ) => {
const source = $ ( element ) . data ( 'source' ) ;
$ ( element ) . toggle ( source === value ) ;
} ) ;
saveSettingsDebounced ( ) ;
}
function onMemoryShortInput ( ) {
const value = $ ( this ) . val ( ) ;
extension _settings . memory . shortMemoryLength = Number ( value ) ;
$ ( '#memory_short_length_tokens' ) . text ( value ) ;
saveSettingsDebounced ( ) ;
// Don't let long buffer be bigger than short
if ( extension _settings . memory . longMemoryLength > extension _settings . memory . shortMemoryLength ) {
$ ( '#memory_long_length' ) . val ( extension _settings . memory . shortMemoryLength ) . trigger ( 'input' ) ;
}
}
function onMemoryLongInput ( ) {
const value = $ ( this ) . val ( ) ;
extension _settings . memory . longMemoryLength = Number ( value ) ;
$ ( '#memory_long_length_tokens' ) . text ( value ) ;
saveSettingsDebounced ( ) ;
// Don't let long buffer be bigger than short
if ( extension _settings . memory . longMemoryLength > extension _settings . memory . shortMemoryLength ) {
$ ( '#memory_short_length' ) . val ( extension _settings . memory . longMemoryLength ) . trigger ( 'input' ) ;
}
}
function onMemoryRepetitionPenaltyInput ( ) {
const value = $ ( this ) . val ( ) ;
extension _settings . memory . repetitionPenalty = Number ( value ) ;
$ ( '#memory_repetition_penalty_value' ) . text ( extension _settings . memory . repetitionPenalty . toFixed ( 2 ) ) ;
saveSettingsDebounced ( ) ;
}
function onMemoryTemperatureInput ( ) {
const value = $ ( this ) . val ( ) ;
extension _settings . memory . temperature = Number ( value ) ;
$ ( '#memory_temperature_value' ) . text ( extension _settings . memory . temperature . toFixed ( 2 ) ) ;
saveSettingsDebounced ( ) ;
}
function onMemoryLengthPenaltyInput ( ) {
const value = $ ( this ) . val ( ) ;
extension _settings . memory . lengthPenalty = Number ( value ) ;
$ ( '#memory_length_penalty_value' ) . text ( extension _settings . memory . lengthPenalty . toFixed ( 2 ) ) ;
saveSettingsDebounced ( ) ;
}
function onMemoryFrozenInput ( ) {
const value = Boolean ( $ ( this ) . prop ( 'checked' ) ) ;
extension _settings . memory . memoryFrozen = value ;
saveSettingsDebounced ( ) ;
}
function onMemoryPromptWordsInput ( ) {
const value = $ ( this ) . val ( ) ;
extension _settings . memory . promptWords = Number ( value ) ;
$ ( '#memory_prompt_words_value' ) . text ( extension _settings . memory . promptWords ) ;
saveSettingsDebounced ( ) ;
}
function onMemoryPromptIntervalInput ( ) {
const value = $ ( this ) . val ( ) ;
extension _settings . memory . promptInterval = Number ( value ) ;
$ ( '#memory_prompt_interval_value' ) . text ( extension _settings . memory . promptInterval ) ;
saveSettingsDebounced ( ) ;
}
function onMemoryPromptInput ( ) {
const value = $ ( this ) . val ( ) ;
extension _settings . memory . prompt = value ;
saveSettingsDebounced ( ) ;
}
2023-07-30 22:10:37 +02:00
function onMemoryTemplateInput ( ) {
const value = $ ( this ) . val ( ) ;
extension _settings . memory . template = value ;
saveSettingsDebounced ( ) ;
}
function onMemoryDepthInput ( ) {
const value = $ ( this ) . val ( ) ;
extension _settings . memory . depth = Number ( value ) ;
saveSettingsDebounced ( ) ;
}
function onMemoryPositionChange ( e ) {
const value = e . target . value ;
extension _settings . memory . position = value ;
saveSettingsDebounced ( ) ;
}
function onMemoryPromptWordsForceInput ( ) {
const value = $ ( this ) . val ( ) ;
extension _settings . memory . promptForceWords = Number ( value ) ;
$ ( '#memory_prompt_words_force_value' ) . text ( extension _settings . memory . promptForceWords ) ;
saveSettingsDebounced ( ) ;
}
2023-07-20 19:32:15 +02:00
function saveLastValues ( ) {
const context = getContext ( ) ;
lastGroupId = context . groupId ;
lastCharacterId = context . characterId ;
lastChatId = context . chatId ;
lastMessageId = context . chat ? . length ? ? null ;
lastMessageHash = getStringHash ( ( context . chat . length && context . chat [ context . chat . length - 1 ] [ 'mes' ] ) ? ? '' ) ;
}
function getLatestMemoryFromChat ( chat ) {
if ( ! Array . isArray ( chat ) || ! chat . length ) {
return '' ;
}
const reversedChat = chat . slice ( ) . reverse ( ) ;
reversedChat . shift ( ) ;
for ( let mes of reversedChat ) {
if ( mes . extra && mes . extra . memory ) {
return mes . extra . memory ;
}
}
return '' ;
}
async function onChatEvent ( ) {
// Module not enabled
if ( extension _settings . memory . source === summary _sources . extras ) {
if ( ! modules . includes ( 'summarize' ) ) {
return ;
}
}
const context = getContext ( ) ;
const chat = context . chat ;
// no characters or group selected
if ( ! context . groupId && context . characterId === undefined ) {
return ;
}
// Generation is in progress, summary prevented
if ( is _send _press ) {
return ;
}
// Chat/character/group changed
if ( ( context . groupId && lastGroupId !== context . groupId ) || ( context . characterId !== lastCharacterId ) || ( context . chatId !== lastChatId ) ) {
const latestMemory = getLatestMemoryFromChat ( chat ) ;
setMemoryContext ( latestMemory , false ) ;
saveLastValues ( ) ;
return ;
}
// Currently summarizing or frozen state - skip
if ( inApiCall || extension _settings . memory . memoryFrozen ) {
return ;
}
// No new messages - do nothing
if ( chat . length === 0 || ( lastMessageId === chat . length && getStringHash ( chat [ chat . length - 1 ] . mes ) === lastMessageHash ) ) {
return ;
}
// Messages has been deleted - rewrite the context with the latest available memory
if ( chat . length < lastMessageId ) {
const latestMemory = getLatestMemoryFromChat ( chat ) ;
setMemoryContext ( latestMemory , false ) ;
}
// Message has been edited / regenerated - delete the saved memory
if ( chat . length
&& chat [ chat . length - 1 ] . extra
&& chat [ chat . length - 1 ] . extra . memory
&& lastMessageId === chat . length
&& getStringHash ( chat [ chat . length - 1 ] . mes ) !== lastMessageHash ) {
delete chat [ chat . length - 1 ] . extra . memory ;
}
try {
await summarizeChat ( context ) ;
}
catch ( error ) {
console . log ( error ) ;
}
finally {
saveLastValues ( ) ;
}
}
async function forceSummarizeChat ( ) {
const context = getContext ( ) ;
if ( ! context . chatId ) {
toastr . warning ( 'No chat selected' ) ;
return ;
}
toastr . info ( 'Summarizing chat...' , 'Please wait' ) ;
const value = await summarizeChatMain ( context , true ) ;
if ( ! value ) {
toastr . warning ( 'Failed to summarize chat' ) ;
return ;
}
}
async function summarizeChat ( context ) {
switch ( extension _settings . memory . source ) {
case summary _sources . extras :
await summarizeChatExtras ( context ) ;
break ;
case summary _sources . main :
await summarizeChatMain ( context , false ) ;
break ;
default :
break ;
}
}
async function summarizeChatMain ( context , force ) {
try {
// Wait for the send button to be released
2023-08-01 14:53:10 +02:00
waitUntilCondition ( ( ) => is _send _press === false , 30000 , 100 ) ;
2023-07-20 19:32:15 +02:00
} catch {
console . debug ( 'Timeout waiting for is_send_press' ) ;
return ;
}
if ( ! context . chat . length ) {
console . debug ( 'No messages in chat to summarize' ) ;
return ;
}
if ( context . chat . length < extension _settings . memory . promptInterval && ! force ) {
console . debug ( ` Not enough messages in chat to summarize (chat: ${ context . chat . length } , interval: ${ extension _settings . memory . promptInterval } ) ` ) ;
return ;
}
let messagesSinceLastSummary = 0 ;
2023-07-30 22:10:37 +02:00
let wordsSinceLastSummary = 0 ;
let conditionSatisfied = false ;
2023-07-20 19:32:15 +02:00
for ( let i = context . chat . length - 1 ; i >= 0 ; i -- ) {
if ( context . chat [ i ] . extra && context . chat [ i ] . extra . memory ) {
break ;
}
messagesSinceLastSummary ++ ;
2023-07-30 22:10:37 +02:00
wordsSinceLastSummary += extractAllWords ( context . chat [ i ] . mes ) . length ;
}
if ( messagesSinceLastSummary >= extension _settings . memory . promptInterval ) {
conditionSatisfied = true ;
}
if ( extension _settings . memory . promptForceWords && wordsSinceLastSummary >= extension _settings . memory . promptForceWords ) {
conditionSatisfied = true ;
2023-07-20 19:32:15 +02:00
}
2023-07-30 22:10:37 +02:00
if ( ! conditionSatisfied && ! force ) {
console . debug ( ` Summary conditions not satisfied (messages: ${ messagesSinceLastSummary } , interval: ${ extension _settings . memory . promptInterval } , words: ${ wordsSinceLastSummary } , force words: ${ extension _settings . memory . promptForceWords } ) ` ) ;
2023-07-20 19:32:15 +02:00
return ;
}
2023-07-30 22:10:37 +02:00
console . log ( 'Summarizing chat, messages since last summary: ' + messagesSinceLastSummary , 'words since last summary: ' + wordsSinceLastSummary ) ;
2023-07-20 19:32:15 +02:00
const prompt = substituteParams ( extension _settings . memory . prompt )
. replace ( /{{words}}/gi , extension _settings . memory . promptWords ) ;
if ( ! prompt ) {
console . debug ( 'Summarization prompt is empty. Skipping summarization.' ) ;
return ;
}
const summary = await generateQuietPrompt ( prompt ) ;
const newContext = getContext ( ) ;
// something changed during summarization request
if ( newContext . groupId !== context . groupId
|| newContext . chatId !== context . chatId
|| ( ! newContext . groupId && ( newContext . characterId !== context . characterId ) ) ) {
console . log ( 'Context changed, summary discarded' ) ;
return ;
}
setMemoryContext ( summary , true ) ;
return summary ;
}
async function summarizeChatExtras ( context ) {
function getMemoryString ( ) {
return ( longMemory + '\n\n' + memoryBuffer . slice ( ) . reverse ( ) . join ( '\n\n' ) ) . trim ( ) ;
}
const chat = context . chat ;
const longMemory = getLatestMemoryFromChat ( chat ) ;
const reversedChat = chat . slice ( ) . reverse ( ) ;
reversedChat . shift ( ) ;
let memoryBuffer = [ ] ;
for ( let mes of reversedChat ) {
// we reached the point of latest memory
if ( longMemory && mes . extra && mes . extra . memory == longMemory ) {
break ;
}
// don't care about system
if ( mes . is _system ) {
continue ;
}
// determine the sender's name
const name = mes . is _user ? ( context . name1 ? ? 'You' ) : ( mes . force _avatar ? mes . name : context . name2 ) ;
const entry = ` ${ name } : \n ${ mes [ 'mes' ] } ` ;
memoryBuffer . push ( entry ) ;
// check if token limit was reached
if ( context . getTokenCount ( getMemoryString ( ) ) >= extension _settings . memory . shortMemoryLength ) {
break ;
}
}
const resultingString = getMemoryString ( ) ;
if ( context . getTokenCount ( resultingString ) < extension _settings . memory . shortMemoryLength ) {
return ;
}
// perform the summarization API call
try {
inApiCall = true ;
const url = new URL ( getApiUrl ( ) ) ;
url . pathname = '/api/summarize' ;
const apiResult = await doExtrasFetch ( url , {
method : 'POST' ,
headers : {
'Content-Type' : 'application/json' ,
'Bypass-Tunnel-Reminder' : 'bypass' ,
} ,
body : JSON . stringify ( {
text : resultingString ,
params : {
min _length : extension _settings . memory . longMemoryLength * 0 , // testing how it behaves 0 min length
max _length : extension _settings . memory . longMemoryLength ,
repetition _penalty : extension _settings . memory . repetitionPenalty ,
temperature : extension _settings . memory . temperature ,
length _penalty : extension _settings . memory . lengthPenalty ,
}
} )
} ) ;
if ( apiResult . ok ) {
const data = await apiResult . json ( ) ;
const summary = data . summary ;
const newContext = getContext ( ) ;
// something changed during summarization request
if ( newContext . groupId !== context . groupId
|| newContext . chatId !== context . chatId
|| ( ! newContext . groupId && ( newContext . characterId !== context . characterId ) ) ) {
console . log ( 'Context changed, summary discarded' ) ;
return ;
}
setMemoryContext ( summary , true ) ;
}
}
catch ( error ) {
console . log ( error ) ;
}
finally {
inApiCall = false ;
}
}
function onMemoryRestoreClick ( ) {
const context = getContext ( ) ;
const content = $ ( '#memory_contents' ) . val ( ) ;
const reversedChat = context . chat . slice ( ) . reverse ( ) ;
reversedChat . shift ( ) ;
for ( let mes of reversedChat ) {
if ( mes . extra && mes . extra . memory == content ) {
delete mes . extra . memory ;
break ;
}
}
const newContent = getLatestMemoryFromChat ( context . chat ) ;
setMemoryContext ( newContent , false ) ;
}
function onMemoryContentInput ( ) {
const value = $ ( this ) . val ( ) ;
setMemoryContext ( value , true ) ;
}
function setMemoryContext ( value , saveToMessage ) {
const context = getContext ( ) ;
2023-07-30 22:10:37 +02:00
context . setExtensionPrompt ( MODULE _NAME , formatMemoryValue ( value ) , extension _settings . memory . position , extension _settings . memory . depth ) ;
2023-07-20 19:32:15 +02:00
$ ( '#memory_contents' ) . val ( value ) ;
2023-07-30 22:10:37 +02:00
console . log ( 'Summary set to: ' + value ) ;
console . debug ( 'Position: ' + extension _settings . memory . position ) ;
console . debug ( 'Depth: ' + extension _settings . memory . depth ) ;
2023-07-20 19:32:15 +02:00
if ( saveToMessage && context . chat . length ) {
const idx = context . chat . length - 2 ;
const mes = context . chat [ idx < 0 ? 0 : idx ] ;
if ( ! mes . extra ) {
mes . extra = { } ;
}
mes . extra . memory = value ;
saveChatDebounced ( ) ;
}
}
jQuery ( function ( ) {
function addExtensionControls ( ) {
const settingsHtml = `
< div id = "memory_settings" >
< div class = "inline-drawer" >
< div class = "inline-drawer-toggle inline-drawer-header" >
< b > Summarize < / b >
< div class = "inline-drawer-icon fa-solid fa-circle-chevron-down down" > < / d i v >
< / d i v >
< div class = "inline-drawer-content" >
< label for = "summary_source" > Summarization source : < / l a b e l >
< select id = "summary_source" >
< option value = "main" > Main API < / o p t i o n >
< option value = "extras" > Extras API < / o p t i o n >
< / s e l e c t >
< label for = "memory_contents" > Current summary : < / l a b e l >
< textarea id = "memory_contents" class = "text_pole textarea_compact" rows = "6" placeholder = "Summary will be generated here..." > < / t e x t a r e a >
< div class = "memory_contents_controls" >
< input id = "memory_restore" class = "menu_button" type = "button" value = "Restore previous state" / >
< label for = "memory_frozen" > < input id = "memory_frozen" type = "checkbox" / > Pause summarization < / l a b e l >
< / d i v >
2023-07-30 22:10:37 +02:00
< div class = "memory_template" >
< label for = "memory_template" > Injection template : < / l a b e l >
< textarea id = "memory_template" class = "text_pole textarea_compact" rows = "1" placeholder = "Use {{summary}} macro to specify the position of summarized text." > < / t e x t a r e a >
< / d i v >
< label for = "memory_position" > Injection position : < / l a b e l >
< div class = "radio_group" >
< label >
< input type = "radio" name = "memory_position" value = "0" / >
After scenario
< / l a b e l >
< label >
< input type = "radio" name = "memory_position" value = "1" / >
In - chat @ Depth < input id = "memory_depth" class = "text_pole widthUnset" type = "number" min = "0" max = "99" / >
< / l a b e l >
< / d i v >
2023-07-20 19:32:15 +02:00
< div data - source = "main" class = "memory_contents_controls" >
< / d i v >
< div data - source = "main" >
< label for = "memory_prompt" class = "title_restorable" >
Summarization Prompt
< div id = "memory_force_summarize" class = "menu_button menu_button_icon" >
< i class = "fa-solid fa-database" > < / i >
< span > Generate now < / s p a n >
< / d i v >
< / l a b e l >
< textarea id = "memory_prompt" class = "text_pole textarea_compact" rows = "6" placeholder = "This prompt will be used in summary generation. Insert {{words}} macro to use the " Number of words " parameter." > < / t e x t a r e a >
< label for = "memory_prompt_words" > Number of words in the summary ( < span id = "memory_prompt_words_value" > < / s p a n > w o r d s ) < / l a b e l >
< input id = "memory_prompt_words" type = "range" value = "${defaultSettings.promptWords}" min = "${defaultSettings.promptMinWords}" max = "${defaultSettings.promptMaxWords}" step = "${defaultSettings.promptWordsStep}" / >
< label for = "memory_prompt_interval" > Update interval ( < span id = "memory_prompt_interval_value" > < / s p a n > m e s s a g e s ) < / l a b e l >
< input id = "memory_prompt_interval" type = "range" value = "${defaultSettings.promptInterval}" min = "${defaultSettings.promptMinInterval}" max = "${defaultSettings.promptMaxInterval}" step = "${defaultSettings.promptIntervalStep}" / >
2023-07-30 22:10:37 +02:00
< label for = "memory_prompt_words_force" > Force update after ( < span id = "memory_prompt_words_force_value" > < / s p a n > w o r d s ) < / l a b e l >
< small > Set to 0 to disable < / s m a l l >
< input id = "memory_prompt_words_force" type = "range" value = "${defaultSettings.promptForceWords}" min = "${defaultSettings.promptMinForceWords}" max = "${defaultSettings.promptMaxForceWords}" step = "${defaultSettings.promptForceWordsStep}" / >
2023-07-20 19:32:15 +02:00
< / d i v >
< div data - source = "extras" >
< label for = "memory_short_length" > Chat to Summarize buffer length ( < span id = "memory_short_length_tokens" > < / s p a n > t o k e n s ) < / l a b e l >
< input id = "memory_short_length" type = "range" value = "${defaultSettings.shortMemoryLength}" min = "${defaultSettings.minShortMemory}" max = "${defaultSettings.maxShortMemory}" step = "${defaultSettings.shortMemoryStep}" / >
< label for = "memory_long_length" > Summary output length ( < span id = "memory_long_length_tokens" > < / s p a n > t o k e n s ) < / l a b e l >
< input id = "memory_long_length" type = "range" value = "${defaultSettings.longMemoryLength}" min = "${defaultSettings.minLongMemory}" max = "${defaultSettings.maxLongMemory}" step = "${defaultSettings.longMemoryStep}" / >
< label for = "memory_temperature" > Temperature ( < span id = "memory_temperature_value" > < / s p a n > ) < / l a b e l >
< input id = "memory_temperature" type = "range" value = "${defaultSettings.temperature}" min = "${defaultSettings.minTemperature}" max = "${defaultSettings.maxTemperature}" step = "${defaultSettings.temperatureStep}" / >
< label for = "memory_repetition_penalty" > Repetition penalty ( < span id = "memory_repetition_penalty_value" > < / s p a n > ) < / l a b e l >
< input id = "memory_repetition_penalty" type = "range" value = "${defaultSettings.repetitionPenalty}" min = "${defaultSettings.minRepetitionPenalty}" max = "${defaultSettings.maxRepetitionPenalty}" step = "${defaultSettings.repetitionPenaltyStep}" / >
< label for = "memory_length_penalty" > Length preference < small > [ higher = longer summaries ] < / s m a l l > ( < s p a n i d = " m e m o r y _ l e n g t h _ p e n a l t y _ v a l u e " > < / s p a n > ) < / l a b e l >
< input id = "memory_length_penalty" type = "range" value = "${defaultSettings.lengthPenalty}" min = "${defaultSettings.minLengthPenalty}" max = "${defaultSettings.maxLengthPenalty}" step = "${defaultSettings.lengthPenaltyStep}" / >
< / d i v >
< / d i v >
< / d i v >
< / d i v >
` ;
$ ( '#extensions_settings2' ) . append ( settingsHtml ) ;
$ ( '#memory_restore' ) . on ( 'click' , onMemoryRestoreClick ) ;
$ ( '#memory_contents' ) . on ( 'input' , onMemoryContentInput ) ;
$ ( '#memory_long_length' ) . on ( 'input' , onMemoryLongInput ) ;
$ ( '#memory_short_length' ) . on ( 'input' , onMemoryShortInput ) ;
$ ( '#memory_repetition_penalty' ) . on ( 'input' , onMemoryRepetitionPenaltyInput ) ;
$ ( '#memory_temperature' ) . on ( 'input' , onMemoryTemperatureInput ) ;
$ ( '#memory_length_penalty' ) . on ( 'input' , onMemoryLengthPenaltyInput ) ;
$ ( '#memory_frozen' ) . on ( 'input' , onMemoryFrozenInput ) ;
$ ( '#summary_source' ) . on ( 'change' , onSummarySourceChange ) ;
$ ( '#memory_prompt_words' ) . on ( 'input' , onMemoryPromptWordsInput ) ;
$ ( '#memory_prompt_interval' ) . on ( 'input' , onMemoryPromptIntervalInput ) ;
$ ( '#memory_prompt' ) . on ( 'input' , onMemoryPromptInput ) ;
$ ( '#memory_force_summarize' ) . on ( 'click' , forceSummarizeChat ) ;
2023-07-30 22:10:37 +02:00
$ ( '#memory_template' ) . on ( 'input' , onMemoryTemplateInput ) ;
$ ( '#memory_depth' ) . on ( 'input' , onMemoryDepthInput ) ;
$ ( 'input[name="memory_position"]' ) . on ( 'change' , onMemoryPositionChange ) ;
$ ( '#memory_prompt_words_force' ) . on ( 'input' , onMemoryPromptWordsForceInput ) ;
2023-07-20 19:32:15 +02:00
}
addExtensionControls ( ) ;
loadSettings ( ) ;
eventSource . on ( event _types . MESSAGE _RECEIVED , onChatEvent ) ;
eventSource . on ( event _types . MESSAGE _DELETED , onChatEvent ) ;
eventSource . on ( event _types . MESSAGE _EDITED , onChatEvent ) ;
eventSource . on ( event _types . MESSAGE _SWIPED , onChatEvent ) ;
eventSource . on ( event _types . CHAT _CHANGED , onChatEvent ) ;
} ) ;