提示工程 - OUTLINE STEPS 提示



使用 OUTLINE STEPS 指令,我们可以利用 ChatGPT 的功能来为各种任务或流程生成结构化大纲或分步程序。此技术使我们能够利用 ChatGPT 的知识和组织能力来提供清晰简洁的说明。

了解 OUTLINE STEPS 指令

OUTLINE STEPS 指令允许我们提示 ChatGPT 为完成给定任务或流程生成结构化大纲或分步程序。通过在我们的提示中加入 OUTLINE STEPS 指令,我们可以利用 ChatGPT 的组织技能和语言理解能力来提供清晰的说明。

OUTLINE STEPS 指令的基本语法如下:

User: Can you outline the steps to bake a cake?
ChatGPT: Absolutely! Here is an outline of the steps to bake a cake:
1. Gather the ingredients and preheat the oven.
2. Mix the dry ingredients together in a bowl.
3. Beat the wet ingredients in a separate bowl.
4. Gradually add the dry ingredients to the wet ingredients while stirring.
5. Pour the batter into a greased baking pan.
6. Bake in the preheated oven for the specified time.
7. Remove from the oven and let it cool before serving.

在这个例子中,用户要求提供烘焙蛋糕的步骤大纲。ChatGPT 的响应包含一个结构化的大纲,其中包含根据给定提示生成的逐步说明。

使用 OUTLINE STEPS 指令的最佳实践

为了充分利用 OUTLINE STEPS 指令,让我们考虑以下最佳实践:

  • 明确定义任务或流程 - 为我们想要概述的任务或流程提供清晰简洁的描述。这有助于 ChatGPT 理解上下文并生成相关的步骤。

  • 使用动作动词 - 提示 ChatGPT 在步骤中使用动作动词以提供清晰的说明。这确保每个步骤都是可操作的且易于理解。

  • 分解复杂任务 - 如果任务或流程很复杂,请提示 ChatGPT 将其分解成更小、更容易管理的步骤。这有助于用户轻松遵循说明。

  • 包含其他详细信息 - 鼓励 ChatGPT 包含每个步骤所需的任何详细信息或具体要求。这确保说明全面且涵盖任务或流程的所有重要方面。

示例应用 - Python 实现

让我们探讨使用带有 Python 脚本的 OUTLINE STEPS 指令的实际示例,该脚本与 ChatGPT 交互。

import openai

# Set your API key here
openai.api_key = 'YOUR_API_KEY'

def generate_chat_response(prompt):
   response = openai.Completion.create(
      engine="text-davinci-003",
      prompt=prompt,
      max_tokens=100,
      temperature=0.7,
      n=1,
      stop=None
   )
   return response
   
user_prompt = "User: Can you outline the steps to assemble a piece of furniture?\n"

chat_prompt = user_prompt + "ChatGPT: [OUTLINE STEPS: assemble a piece of furniture]"

response = generate_chat_response(chat_prompt)
print(response)

在这个例子中,我们定义了一个函数 generate_chat_response(),它接受一个提示并使用 OpenAI API 使用 ChatGPT 生成响应。chat_prompt 变量包含用户的提示和 ChatGPT 的响应,包括 OUTLINE STEPS 指令以概述组装家具的步骤。

输出

当我们运行脚本时,我们将收到 ChatGPT 生成的响应,包括结构化的大纲以及 OUTLINE STEPS 指令中指定的逐步说明。

这里用户提示是“你能概述组装家具的步骤吗?”,ChatGPT 将会回复类似以下的输出:

1. Gather all necessary tools and parts.
2. Read through the instructions carefully.
3. Secure the frame and/or base of the furniture.
4. Attach the seat, back, and arms (if applicable).
5. Add any additional features such as cushions, drawers, etc.
6. Check all fasteners and screws for tightness.
7. Clean and inspect the finished product.

结论

在本章中,我们探讨了 ChatGPT 提示工程中的 OUTLINE STEPS 指令。使用 OUTLINE STEPS 指令,我们可以提示 ChatGPT 为各种任务或流程生成结构化大纲或分步程序。

广告