A Python library for debugging python files and notebooks using GROQ
Project description
PyDebugger
PyDebuggerTools is a Python library designed to enhance error debugging in both .ipynb and .py scripts. It provides a detailed explanation of errors and suggests possible corrections using the power of LangChain and advanced traceback analysis.
Features
- Environment-Aware Debugging: Automatically detects whether the code is running in a
.pyfile or a Jupyter Notebook and adapts its behavior accordingly. - Error Analysis and Correction: Extracts error details (like line number, file name, and traceback) and generates concise explanations with possible solutions.
- Code Context Display: For
.pyfiles, displays the code context where the error occurred, highlighting the relevant lines. - Seamless Integration with LangChain: Uses LangChain's AI capabilities to provide intelligent error solutions.
Installation
Install the package using pip:
pip install PyDebugTools
Usage
Basic Example
from PyDebugTool.debug import PyDebugger
debugger = PyDebugger(langchain_model="llama3-8b-8192", api_key="your_groq_api_key")
debugger.enable()
How It Works
- Initialization: Create an instance of
PyDebugToolby specifying your LangChain model and API key. - Enable Debugger: Call
enable()to activate error handling. - Error Handling: When an error occurs, PyDebugger will intercept it and display detailed insights along with possible fixes.
Detailed Behavior
- In
.ipynbfiles: Overrides the default IPython traceback display to show enhanced error details and solutions. - In
.pyScripts: Replaces the default Python exception hook to provide enriched error handling in the console.
Example Code
When an error occurs, PyDebugger might display something like this:
from PyDebugTool.debug import PyDebugger
debugger = PyDebugger(langchain_model="llama3-8b-8192", api_key="your_groq_api_key")
debugger.enable()
import tensorflow as tf
Traceback (most recent call last):
File "C:\Users\Sambit Mallick\Desktop\mlops\LLM_TOOL_SOFTWARE\test.py", line 6, in <module>
import tensorflow as tf
ModuleNotFoundError: No module named 'tensorflow'
┌─────────────────────────────── 🤖 PyDebugger ───────────────────────────────┐
│ The error is caused by the Python interpreter not being able to find the │
│ TensorFlow module. This is likely because TensorFlow is not installed in │
│ the Python environment being used to run the script. │
│ │
│ To correct this error, you can install TensorFlow using pip: │
│ │
│ `pip install tensorflow` │
│ │
│ Alternatively, you can install it using conda if you are using Anaconda: │
│ │
│ `conda install tensorflow` │
└─────────────────────────────────────────────────────────────────────────────┘
Dependencies
langchain_groqIPythonrich
License
This project is licensed under the MIT License. See the LICENSE file for details.
Contributing
Contributions are welcome! Please submit issues and pull requests to improve the library.
Author
Sambit Mallick - Feel free to reach out for collaboration or queries.
Acknowledgments
- Powered by LangChain and Groq LLM.
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
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file PyDebugTools-0.1.3.tar.gz.
File metadata
- Download URL: PyDebugTools-0.1.3.tar.gz
- Upload date:
- Size: 4.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.0.1 CPython/3.11.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a2bed342b21130083a401352db59fa75b00f14766359aa5d71f08a9dbd8aa72e
|
|
| MD5 |
1f9823141afbe75339143c06cb98abe2
|
|
| BLAKE2b-256 |
9bff6179feac8e544dc7804175b0c8f2848bea6ec516183b8ec5eda4cdd1be8a
|
File details
Details for the file PyDebugTools-0.1.3-py3-none-any.whl.
File metadata
- Download URL: PyDebugTools-0.1.3-py3-none-any.whl
- Upload date:
- Size: 4.9 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.0.1 CPython/3.11.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e8ce0355336b605c14de478a24d40f866897d93046c5ec05ec564521057915fb
|
|
| MD5 |
23bb8404cf23005ab7a01b306c5c212f
|
|
| BLAKE2b-256 |
e21ea9d1e00e9f970a417274b7f7da816a179dda39ae70af37d414b3d5dc0d9c
|