chore(Settings.jsx): update placeholder text for promptPrefix/system message (#656)

This commit is contained in:
Danny Avila 2023-07-16 13:22:36 -04:00 committed by GitHub
parent 0246f164b0
commit 1ef53a41f0
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View file

@ -87,7 +87,7 @@ function Settings(props) {
disabled={readonly}
value={promptPrefix || ''}
onChange={(e) => setPromptPrefix(e.target.value || null)}
placeholder="Set custom instructions. Defaults to: 'You are ChatGPT, a large language model trained by OpenAI.'"
placeholder="Set custom instructions to include in System Message. Default: none"
className={cn(
defaultTextProps,
'flex max-h-[300px] min-h-[100px] w-full resize-none px-3 py-2 ',

View file

@ -97,7 +97,7 @@ function Settings(props) {
placeholder={
toolsSelected
? 'Disabled with Tools Selected'
: 'Set custom instructions. Defaults to: \'You are ChatGPT, a large language model trained by OpenAI.\''
: 'Set custom instructions to include in System Message. Default: none'
}
className={cn(
defaultTextProps,