Metadata-Version: 2.1
Name: error-suggester
Version: 0.1.2
Summary: A Python library for error suggestions using ChatGPT
Home-page: https://github.com/HarisBinSaif/ErrorSuggester
Author: HarisBinSaif
Project-URL: GitHub, https://github.com/HarisBinSaif/ErrorSuggester
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: openai

# Error Suggester

[![License](https://img.shields.io/badge/License-MIT-blue.svg)](LICENSE)

A Python library for error suggestions.

## Installation

```bash
pip install error_suggester
```

## Usage

```python
from error_suggester import ErrorSuggester

# Initialize ErrorSuggester with your OpenAI API key and enable auto suggestions
ErrorSuggester('YOUR_API_KEY').enable_auto_suggestions()

```

## Features

- Automatic error suggestions based on the provided error message.
- Helps in identifying possible resolutions for encountered errors and exceptions.
