Remove faulty characters in default configuration

This commit is contained in:
maver 2023-06-30 20:30:36 +02:00
parent d469c80ef5
commit 1b7da6ecbc
2 changed files with 1 additions and 2 deletions

View File

@ -1023,14 +1023,12 @@ const openAiDefaultPrompts = {
"system_prompt": true, "system_prompt": true,
"marker": true, "marker": true,
}, },
,
{ {
"identifier": "charPersonality", "identifier": "charPersonality",
"name": "Char Personality", "name": "Char Personality",
"system_prompt": true, "system_prompt": true,
"marker": true, "marker": true,
}, },
,
{ {
"identifier": "scenario", "identifier": "scenario",
"name": "Scenario", "name": "Scenario",

View File

@ -576,6 +576,7 @@ function populateChatCompletion (prompts, chatCompletion, {bias, quietPrompt, ty
* @param {string} options.type - The type of the chat, can be 'impersonate'. * @param {string} options.type - The type of the chat, can be 'impersonate'.
* @param {string} options.quietPrompt - The quiet prompt to be used in the conversation. * @param {string} options.quietPrompt - The quiet prompt to be used in the conversation.
* @param {Array} options.extensionPrompts - An array of additional prompts. * @param {Array} options.extensionPrompts - An array of additional prompts.
* @param dryRun - Whether this is a live call or not.
* @returns {(*[]|boolean)[]} An array where the first element is the prepared chat and the second element is a boolean flag. * @returns {(*[]|boolean)[]} An array where the first element is the prepared chat and the second element is a boolean flag.
*/ */
function prepareOpenAIMessages({ function prepareOpenAIMessages({