Add hint for multiple hidden prefix prompts

This commit is contained in:
Webifi 2023-06-22 20:58:57 -05:00
parent 4858f4361a
commit 3314252c3c
1 changed files with 3 additions and 3 deletions

View File

@ -179,9 +179,9 @@ const systemPromptSettings: ChatSetting[] = [
}, },
{ {
key: 'hiddenPromptPrefix', key: 'hiddenPromptPrefix',
name: 'Hidden Prompt Prefix', name: 'Hidden Prompts Prefix',
title: 'A user prompt that will be silently injected before every new user prompt, then removed from history.', title: 'Prompts that will be silently injected before every new user prompt, then removed from history.',
placeholder: 'Enter user prompt prefix here. You can remind ChatGPT how to act.', placeholder: 'Enter user prompt prefix here. You can remind ChatGPT how to act. Use ::EOM:: to separate messages.',
type: 'textarea', type: 'textarea',
hide: (chatId) => !getChatSettings(chatId).useSystemPrompt hide: (chatId) => !getChatSettings(chatId).useSystemPrompt
}, },