Remove faulty characters in default configuration
This commit is contained in:
parent
d469c80ef5
commit
1b7da6ecbc
|
@ -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",
|
||||||
|
|
|
@ -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({
|
||||||
|
|
Loading…
Reference in New Issue