COV_PROMPT="Please verify your *own* code step by step using Markdown code blocks. After each step, explain whether it's correct or not, and if not, explain the issue."
COV_EXAMPLE="""\
Here is an example of the format I’d like you to use for your response.
** Example RETURN FORMAT **
```python
def add_numbers(a, b):
return a + b
result = add_numbers(5, '10')
```
1. **Code:**
```python
def add_numbers(a, b):
return a + b
```
**Explanation:** This defines a function `add_numbers` that takes two arguments and returns their sum. Correct.
2. **Code:**
```python
result = add_numbers(5, '10')
```
**Explanation:** The second argument is a string (`'10'`), which will cause a TypeError when trying to add it to an integer. Incorrect.
"""
CORRECT_PROMPT="Your code is correct."
INCORRECT_PROMPT="Your code is incorrect."
DIFF_PROMPT="Here’s a hint about how to fix this incorrect code and make it work correctly.\n{diff}"
COV_PROMPT="Please verify your code step by step using Markdown code blocks. After each step, explain whether it's correct or not, and if not, explain the issue."
COV_PROMPT="Please verify your code step by step using Markdown code blocks. After each step, explain whether it's correct or not, and if not, explain the issue."