smart-exceptions
August 8, 2024 · View on GitHub
Better Python Stacktraces with power of AI. Now your problems are solved at the same moment they're arised!
Installation
pip install smart-exceptions
Usage
In file:
import smart_exceptions as se
se.init("your-openai-token")
se.install_handler()
...[code causing exception]...
In [debug] console global exception handler is suppressed and have to call GPT explicitly:
>>> import smart_exceptions as se; se.init("your-openai-token")
>>> ...[code causing exception]...
>>> se.ask_gpt()
You can provide token explicitly or implicitly via OPENAI\_TOKEN_ env variable. Also you can specify proxy explicitly or via _OPENAI_PROXY.
Pytest support
Place this in conftest.py:
import smart_exceptions as se
se.init()
def pytest_exception_interact(node, call, report):
exc_info = (call.excinfo.type, call.excinfo.value, call.excinfo.traceback[0]._rawentry)
se.gpt_backend.ask_gpt(exc_info)
Demo
Click to go to Youtube.
