System prompt(系统提示)是指在与语言模型(如 ChatGPT 等)的交互中,用于指定模型如何根据设定的角色和逻辑进行回答的文本。它通常包括任务定义(确保模型清楚自己的任务)、输出格式(指导模型如何格式化回答)、操作边界(明确模型不应采取的行为)等部分。在对话中,每次模型给出回应时,都会考虑到系统提示,它就像一个过滤器,模型在回应新提示之前会自动应用。
User prompt(用户提示)则是用户给语言模型(如 Claude 等)的文本,通常以问题或指示的形式出现,用于引发相关输出。
二者的区别在于:
[title]蓝衣剑客:四万字长文带你通学扣子[heading2]三、Coze简介[heading3]3.2 Coze上的Bot请注意,在Bot中所提到的“人设与回复逻辑”功能,实质上指的是system_prompt。这一功能是指定Bot如何根据设定的角色和逻辑进行回答,从而确保其回复符合预设的人物特性和行为逻辑。而“提示词”是user_prompt。请大家一定不要搞混,这个东西很基础,也很关键!
[title]1.Intro to prompting提示简介[heading1]What is a prompt?什么是提示?A prompt is the text that you give Claude to elicit,or"prompt,"a relevant output.A prompt is usually in the form of a question or instructions.For example:提示是您给Claude的文本,用于引发相关输出。提示通常以问题或指示的形式出现。例如:|Role|Prompt|<br>|-|-|<br>|User|Why is the sky blue?<br>为什么天空是蓝色的?|The text that Claude responds with is called a"response",sometimes also called an"output"or"completion."Claude回答的文本被称为“响应”,有时也被称为“输出”或“完成”。|Role|Response|<br>|-|-|<br>|Assistant|The sky appears blue to us due to how the molecules in the air scatter light from the sun.The shorter wavelength light(blue)scatters more easily than the longer wavelength light(like reds and yellows),so when we look up at the sky,what we see is all the scattered blue light.This is known as Rayleigh scattering.The color of the sky varies based on conditions like the angle of the sun and amount of dust/water in the air,but during the day with a clear sky,the blue wavelength of light is most responsible for the color we perceive.<br>对我们来说,天空呈现蓝色是由于大气分子散射来自太阳的光线。较短波长的光(蓝色)比较长波长的光(如红色和黄色)更容易散射,因此当我们抬头望天空时,看到的是散射的蓝色光线。这被称为瑞利散射。天空的颜色会随着太阳角度和空气中灰尘/水的含量等条件而变化,但在白天晴朗的天空中,蓝色光波长最负责我们所感知的颜色。|
首先,我们来厘清几个术语:在讨论ChatGPT时,这三个术语“系统提示”、“系统消息”和“自定义指令”几乎可以互换使用。这种用法让许多人(包括我自己)感到混淆,因此OpenAI发表了一篇[文章](https://help.openai.com/en/articles/8234522-chat-completions-api-system-message-vs-custom-instructions-in-ui),专门解释了这些术语。简要总结如下:“系统提示”和“系统消息”是通过Chat Completions API编程方式交互时使用的术语。而“自定义指令”则是在通过[https://chat.openai.com/](https://chat.openai.com/)的用户界面与ChatGPT交互时使用的术语。尽管这三个术语表达的是相同的概念,但不必因术语的使用而感到困扰。下面我们将统一使用“系统提示”这一术语。现在,让我们一探究竟![heading3]什么是系统提示?[content]在对话中,每当您提出一个新的提示时,系统提示就像是一个过滤器,大语言模型会在回应您的新提示之前自动应用这一过滤器。这意味着在对话中每次大语言模型给出回应时,都会考虑到这些系统提示。系统提示一般包括以下几个部分:任务定义:确保大语言模型(LLM)在整个对话中清楚自己的任务。输出格式:指导LLM如何格式化其回答。操作边界:明确LLM不应采取的行为。这些边界是LLM治理中新兴的一个方面,旨在界定LLM的操作范围。例如,系统提示可能是这样的:每一部分对应的内容如下图所示: