Skip to main content

Package for debugging python using ChatGPT

Project description

Chatty Debug

Use ChatGPT to debug your python code

Installation

pip install -U chatty-debug

NOTE: Requires OPENAI_API_KEY environment variable

Basic Usage

Function decorator

from chatty_debug import chatty_debug


@chatty_debug()  # () is required
def foo():
    a = 0
    b = 10
    return 100 / a / b


if __name__ == "__main__":
    foo()

Script Wrapper

# foo.py

def foo():
    a = 0
    b = 10
    return 100 / a / b


if __name__ == "__main__":
    foo()

python -m chatty_debug foo.py

Response

English Response

Advanced Usage

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."

Response

Portuguese Response

Chatty Improvements

chatty-debug can also suggest improvements for your code.

Basic usage:

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()

Response

Suggested Improvements

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

chatty_debug-1.1.0.tar.gz (5.0 kB view hashes)

Uploaded Source

Built Distribution

chatty_debug-1.1.0-py3-none-any.whl (6.1 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page