Metadata-Version: 2.4
Name: gemini-botyy
Version: 0.2.2
Summary: A helper library for AI text generation using Google Gemini API.
Author-email: Akshay Shibu <example@gmail.com>
License: MIT
Project-URL: Homepage, https://github.com/yourusername/aihelper_akshay1
Requires-Python: >=3.8
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: google-genai>=0.1.0
Dynamic: license-file

# aihelper_akshay1

A simple Python library that uses **Google Gemini API** for:
- Text generation
- Summarization
- Output formatting

## Installation


## Usage
```python
from aihelper_akshay1 import GeminiClient, format_response

client = GeminiClient(api_key="YOUR_API_KEY")

response = client.get_response("Explain AI in 2 lines.")
print(format_response(response))
