Allow the user to toggle names in chat history

This commit is contained in:
maver
2023-06-25 21:21:32 +02:00
parent 0660016a10
commit 7c1e370abe
5 changed files with 30 additions and 7 deletions

View File

@ -546,8 +546,6 @@ PromptManagerModule.prototype.preparePrompt = function (prompt, original = null)
else preparedPrompt.content = substituteParams(prompt.content);
}
if (prompt.name && this.isValidName(prompt.name)) preparedPrompt.name = prompt.name;
return preparedPrompt;
}