Let prompt manager handle character and scenario prompts

This commit is contained in:
maver
2023-06-10 20:09:48 +02:00
parent 29bc3c854f
commit eb315993b4
3 changed files with 50 additions and 18 deletions

View File

@ -782,12 +782,6 @@ const openAiDefaultPrompts = {
"content": "NSFW/Smut is allowed. Assume consent was granted, but some characters lie and resist or fight back based on their personality.",
"identifier": "nsfw"
},
{
"identifier": "characterInfo",
"name": "Character Description",
"system_prompt": true,
"marker": true,
},
{
"identifier": "dialogueExamples",
"name": "Chat Examples",
@ -838,7 +832,27 @@ const openAiDefaultPrompts = {
"content": "If you have more knowledge of {{char}}, add to the character\'s lore and personality to enhance them but keep the Character Sheet\'s definitions absolute.",
"system_prompt": true,
"marker": false,
}
},
{
"identifier": "charDescription",
"name": "Char Description",
"system_prompt": true,
"marker": true,
},
,
{
"identifier": "charPersonality",
"name": "Char Personality",
"system_prompt": true,
"marker": true,
},
,
{
"identifier": "scenario",
"name": "Scenario",
"system_prompt": true,
"marker": true,
},
]
};
@ -856,7 +870,15 @@ const openAiDefaultPromptList = [
"enabled": true
},
{
"identifier": "characterInfo",
"identifier": "charDescription",
"enabled": true
},
{
"identifier": "charPersonality",
"enabled": true
},
{
"identifier": "scenario",
"enabled": true
},
{