Better Python Stacktraces with power of AI. Now your problems are solved at the same moment they're arised!
pip install smart-exceptions
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.
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)
Click to go to Youtube.