Use ChatGPT to debug your python code
pip install -U chatty-debug
NOTE: Requires OPENAI_API_KEY environment variable
from chatty_debug import chatty_debug
@chatty_debug() # () is required
def foo():
a = 0
b = 10
return 100 / a / b
if __name__ == "__main__":
foo()
# foo.py
def foo():
a = 0
b = 10
return 100 / a / b
if __name__ == "__main__":
foo()
python -m chatty_debug foo.py
You may also specify a unique prompt. For example, you can request a response in a different language, or provide more information about the error that might not be available in the traceback.
from chatty_debug import chatty_debug
@chatty_debug(prompt="Me ajude a entender esse erro.")
def foo():
a = 0
b = 10
return 1000 / b / a
if __name__ == "__main__":
foo()
Additionally, you can do the same with the script. Using the foo.py script from above, you can also do this command:
python -m chatty_debug foo.py --prompt "Me ajude a entender esse erro."
chatty-debug can also suggest improvements for your code.
Without further configuration, the decorator will submit a default prompt presenting your function. ChatGPT will then be asked to suggest improvements to it. It will then be asked to suggest some tests to improve it. These default prompts can be edited, removed, and added to.
from chatty_debug import suggest_improvements
@suggest_improvements() # () is required
def foo(value, set=set()):
list=list(set)
for val1 in list:
if value == val1:
return True
return False
if __name__ == '__main__':
foo()