diff --git a/client/src/components/Endpoints/OpenAI/Settings.jsx b/client/src/components/Endpoints/OpenAI/Settings.jsx index 18453ba76e..d38c17e339 100644 --- a/client/src/components/Endpoints/OpenAI/Settings.jsx +++ b/client/src/components/Endpoints/OpenAI/Settings.jsx @@ -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 ', diff --git a/client/src/components/Endpoints/Plugins/Settings.jsx b/client/src/components/Endpoints/Plugins/Settings.jsx index d93d5f0be9..6d636312f3 100644 --- a/client/src/components/Endpoints/Plugins/Settings.jsx +++ b/client/src/components/Endpoints/Plugins/Settings.jsx @@ -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,