Metadata-Version: 2.4
Name: gemini-ai-helper-febin
Version: 0.1.2
Summary: Gemini AI response and summarization library
Author: Febin Sunny
Requires-Python: >=3.8
Description-Content-Type: text/markdown
Requires-Dist: google-generativeai

# gemini-ai-helper-febin

A simple Python library that uses Google Gemini to generate responses and summarize text.

## Usage

```python
from gemini_ai_helper import get_ai_response, summarize_text

print(get_ai_response("What is Python?"))
print(summarize_text("Python is a high level programming language..."))
