Metadata-Version: 2.1
Name: eeman-boss
Version: 0.1.3
Summary: A fun chatbot that acts like Eeman Boss.
Home-page: https://github.com/obaidhsn/eeman-boss
Author: Syed Obaidullah Hassan Chishti
Author-email: obaidullahhasan@gmail.com
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.8
Description-Content-Type: text/markdown
Requires-Dist: openai

# Eeman Boss Chatbot

This is a fun Python package that interacts with a chatbot modeled after "Eeman Boss". It's humorous, motivational, and a bit sarcastic, all while keeping conversations friendly.

## Installation

```bash
pip install eeman-boss
```

## Usage
```python
from eeman_boss.chatbot import create_chatbot

# Initialize chatbot with Gemini API key
chatbot = create_chatbot(api_key="your-gemini-api-key")

# Get a response from Eeman Boss
response = chatbot.chat("What's the best way to be productive?")
print(response)
```
