You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: klite.embd
+82-4Lines changed: 82 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -25908,13 +25908,13 @@ else
25908
25908
"description": "Overwrites an entry describing an entity. The information is stored under a unique identifier. This information is included when certain keywords are mentioned. This does not show the information to the user.",
25909
25909
"args": {
25910
25910
"uniqueIdentifier": "<unique identifier (such as a characters name, location etc)>",
25911
-
"text": "<descriptive text which by itself provides all needed information to define the entity>",
25912
25911
"keywords": {
25913
-
description: "<keywords to help with searching>",
25912
+
description: "<keywords to help with searching - at least one must be provided>",
25914
25913
type: "array",
25915
25914
itemType: "string",
25916
25915
minItems: 1,
25917
-
}
25916
+
},
25917
+
"text": "<descriptive text which by itself provides all needed information to define the entity>"
25918
25918
},
25919
25919
"enabled": true,
25920
25920
"executor": (action) => {
@@ -25976,7 +25976,7 @@ else
25976
25976
}
25977
25977
},
25978
25978
{
25979
-
"name": "overwrite_current_state_response",
25979
+
"name": "overwrite_current_state_response",
25980
25980
"description": "The current state can be overwritten by the overwrite_current_state command. Providing a JSON object to this function will enforce a particular response format when overriding the state.",
25981
25981
"args": {
25982
25982
"json": "<format which should be used when overwriting the current state>"
@@ -27208,6 +27208,7 @@ let checkFinalThoughtsPrompt = `Action: {"command":{"name":"thought","args":{"me
if (localsettings?.enableRunningMemory == undefined)
27427
+
{
27428
+
localsettings.enableRunningMemory = false
27429
+
}
27424
27430
27425
27431
let createSettingElemBool = (inputElemId, labelTitle, labelText) => {
27426
27432
let settingLabelElem = document.createElement("div")
@@ -27525,6 +27531,9 @@ let checkFinalThoughtsPrompt = `Action: {"command":{"name":"thought","args":{"me
27525
27531
settingLabelElem = createSettingElemBool("disableSaveCompressionLocally", "Disables save compression locally", "Disables save compression locally - Improves load / autosave performance with larger saves. The save compression is left enabled for sharing saves or uploading to the main server)")
27526
27532
lastSettingContainer.append(settingLabelElem)
27527
27533
27534
+
settingLabelElem = createSettingElemBool("enableRunningMemory", "Enable running memory", "Enables running memory, an experimental version of autogenerating memory which triggers every time the context length changes by half its maximum. The summaries it generates can be found under world info.")
27535
+
lastSettingContainer.append(settingLabelElem)
27536
+
27528
27537
createStopThinkingButton()
27529
27538
})
27530
27539
@@ -28157,4 +28166,73 @@ let checkFinalThoughtsPrompt = `Action: {"command":{"name":"thought","args":{"me
let long_story = (truncated_context.length > 1800 ? true : false);
28193
+
truncated_context += "\n{{[INPUT]}}:Summarize the above text in a single paragraph of up to " + (long_story ? "ten" : "five") + " detailed sentences.{{[OUTPUT]}}";
0 commit comments