Metadata-Version: 2.4
Name: askharsha
Version: 0.1.4
Summary: A lightweight chatbot module that uses a modern language model API to generate intelligent, clean, and readable responses. Designed for developers who want plain-text replies without markdown clutter.
Author: Alapati Sree Harsha
Author-email: sreeharshaalapati@gmail.com
Requires-Python: >=3.6
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: requests
Dynamic: author
Dynamic: author-email
Dynamic: description
Dynamic: description-content-type
Dynamic: license-file
Dynamic: requires-dist
Dynamic: requires-python
Dynamic: summary

# askharsha

A minimal chatbot module for interacting with end user returning clean plain-text responses.

## Installation

```bash
pip install askharsha

## Usage 
from askharsha import Chatbot

bot = Chatbot(api_key="YOUR_GEMINI_API_KEY")
response = bot.ask("What is 5*2 and 5**2?")
print(response)

## Output 
5*2 is 10  
5**2 is 25  


