mirror of
https://github.com/danny-avila/LibreChat.git
synced 2025-12-21 02:40:14 +01:00
chore(Settings.jsx): update placeholder text for promptPrefix/system message (#656)
This commit is contained in:
parent
0246f164b0
commit
1ef53a41f0
2 changed files with 2 additions and 2 deletions
|
|
@ -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 ',
|
||||
|
|
|
|||
|
|
@ -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,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue