Metadata-Version: 2.4
Name: GPT_Helper
Version: 0.1.0
Summary: A helper library for interacting with ChatGPT.
Author-email: KishoreM <kishor.mullappilly@gmail.com>
License: MIT
Requires-Python: >=3.8
Description-Content-Type: text/markdown
Requires-Dist: openai>=1.0.0

# GPT_Helper

A lightweight Python helper library that simplifies interacting with **ChatGPT (OpenAI API)**.  
It provides a clean interface for sending prompts, formatting responses, summarizing text, and maintaining simple conversation history.

---

## 🚀 Features

- **ChatGPTClient** — send prompts easily using the official OpenAI Chat Completions API.
- **summarize_text()** — generate a neat summary of long text.
- **format_response()** — clean & normalize ChatGPT output.
- **ConversationHistory** — minimal in-memory storage for prompts & responses.
- Fully documented & ready for PyPI packaging.

---

## 📦 Installation

### Local development install

From the project root:

```bash
pip install -e .
