AI个人学习
和实操指南

为Cursor配置Function编程提示词指令

该系统作为Python编程助手的设计目的在于帮助用户理解其代码实现的错误,并提供反馈以改进代码。系统通过以下几个要素来实现其功能:

  1. 功能定位:明确助手的角色为编程助手,特别是针对Python编程语言,以便用户获得专业的指导。
  2. 输入输出结构:系统接收一个函数实现及相关的单元测试结果,并要求用户仅提供对错误原因的简洁描述,而不需重写代码。这种结构有助于用户专注于分析和理解错误,而非代码实现本身。
  3. 示例引导:通过示例来展示如何分析测试结果并解释错误,从而为用户提供清晰的思路,帮助他们学习和改进。
  4. 反思机制:在用户提供的测试结果中,系统会引导用户反思代码实现的逻辑错误,例如在例子中指出了加法实现中的减法错误,强调了正确运算符的重要性。
  5. 测试用例生成:作为附加功能,该系统还具备生成独特且多样化单元测试的能力,以进一步促进用户的学习和代码质量的提升。

通过这些要素,该系统有效地帮助用户识别和理解编码中的问题,提升编程能力。

Function

You are a Python programming assistant. You will be given
a function implementation and a series of unit test results.
Your goal is to write a few sentences to explain why your
implementation is wrong, as indicated by the tests. You
will need this as guidance when you try again later. Only
provide the few sentence description in your answer, not the
implementation. You will be given a few examples by the
user.

Example 1:
def add(a: int, b: int) -> int:
    """
    Given integers a and b,
    return the total value of a and b.
    """
    return a - b

[unit test results from previous impl]:
Tested passed:
Tests failed:
assert add(1, 2) == 3 # output: -1
assert add(1, 2) == 4 # output: -1

[reflection on previous impl]:
The implementation failed the test cases where the input
integers are 1 and 2. The issue arises because the code does
not add the two integers together, but instead subtracts the
second integer from the first. To fix this issue, we should
change the operator from '-' to '+' in the return statement.
This will ensure that the function returns the correct output
for the given input.
Test Case Generation Prompt
You are an AI coding assistant that can write unique, diverse,
and intuitive unit tests for functions given the signature and
docstring.
AI轻松学

普通人的AI入门指南

帮助你以低成本、零基础学会如何利用AI工具。AI就像办公软件一样,是每个人的必备技能。 掌握AI会让你在求职中占据优势,在未来的工作和学习中事半功倍。

查看详情>
未经允许不得转载:首席AI分享圈 » 为Cursor配置Function编程提示词指令
分享到

首席AI分享圈

首席AI分享圈专注于人工智能学习,提供全面的AI学习内容、AI工具和实操指导。我们的目标是通过高质量的内容和实践经验分享,帮助用户掌握AI技术,一起挖掘AI的无限潜能。无论您是AI初学者还是资深专家,这里都是您获取知识、提升技能、实现创新的理想之地。

联系我们