提示工程 - 建设性批评提示



使用建设性批评提示,我们可以鼓励ChatGPT提供有见地且可操作的批评,使用户能够获得有价值的改进或完善输入。

在本章中,我们将探讨建设性批评提示的概念,以及如何使用它来指示ChatGPT以建设性的方式提供有帮助的反馈、评论或建议。

什么是建设性批评提示?

建设性批评提示涉及设计提示,指示ChatGPT提供建设性的反馈、评论或评估。目的是引导模型以支持性和积极的方式提供批评,专注于改进领域,同时突出优势。

建设性批评提示的益处

建设性批评提示提供了几个好处 -

  • 宝贵的反馈 - 用户获得详细且有帮助的反馈,有助于完善想法、内容或解决方案。

  • 技能提升 - 建设性批评允许用户识别改进领域,促进技能发展和成长。

  • 积极的用户体验 - 以建设性和支持性的方式提供的反馈增强了整体用户体验,并鼓励进一步参与。

实施建设性批评提示

撰写建设性批评提示 - 要实施建设性批评提示,请设计提示,指示ChatGPT以积极和建设性的语气进行评估和提供反馈。请查看以下示例 -

User: Please evaluate my article on climate change and provide constructive feedback.

模型交互 - 当ChatGPT遇到建设性批评提示时,它会通过提供反馈来响应,该反馈突出内容的优势和改进领域。这是一个示例 -

User: Please evaluate my article on climate change and provide constructive feedback.
ChatGPT: Your article on climate change is well-researched and informative. The introduction effectively grabs the reader's attention. However, consider expanding on the potential solutions to address climate change to make the article even more impactful. Great effort overall!

自定义反馈 - 根据上下文和用户偏好,反馈的详细程度和强调的领域可以调整以满足特定需求。这是一个示例 -

User: Please critique my design for the website's homepage.
ChatGPT: Your design for the website's homepage is visually appealing and user-friendly. However, consider optimizing the layout for mobile devices to ensure seamless navigation for mobile users. Additionally, explore using a more contrasting color scheme to enhance readability. Keep up the good work!

建设性批评提示的应用

建设性批评提示可应用于各种场景 -

  • 内容审查 - 索取关于书面内容、设计草图或营销材料的宝贵反馈。

  • 代码审查 - 获取关于代码片段或编程项目的建设性反馈。

  • 技能提升 - 使用建设性批评提示进行语言学习或技能发展练习。

思维链提示的最佳实践

为了充分利用建设性批评提示,请考虑以下最佳实践 -

  • 具体的反馈请求 - 撰写明确概述要评估的特定领域或方面的提示。

  • 积极的语气 - 指示ChatGPT以积极和鼓励的方式提供反馈,强调优势和改进领域。

  • 量身定制的反馈 - 根据上下文和用户偏好自定义反馈,确保相关性和实用性。

示例应用 - Python实现

让我们探索一个使用Python脚本与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=500,
      temperature=0.7,
      n=1,
      stop=None
   )
   return response

user_prompt = "User: Please evaluate my article on climate change and provide constructive feedback. \n"
chat_prompt = user_prompt + "[Constructive Critic Prompting]"

response = generate_chat_response(chat_prompt)
print(response)

输出

在这里,我们收到了以下建设性批评作为输出 -

The article provides a good overview of the key issues associated with climate change, but it could benefit from a more detailed analysis of the potential solutions. It would also be useful to include more specific examples of the impacts of climate change to provide context for the reader.
Additionally, it might be helpful to provide a more comprehensive overview of the different types of climate change and how they affect the environment.
Finally, it would be beneficial to include a conclusion that summarizes the main points of the article and provides the reader with some actionable steps they can take to help mitigate climate change.

结论

建设性批评提示培养了积极的用户体验,鼓励参与和持续成长。当您将建设性批评提示融入与ChatGPT的互动时,您可以期待收到经过深思熟虑且可操作的反馈,从而增强您的项目。

广告