Metadata-Version: 2.4
Name: googlemodel-samrat-v1
Version: 0.1.0
Summary: Intelligent Gemini API key and model rotation for resilient free-tier usage
Author: Pratiksha
License: MIT
Requires-Python: >=3.9
Description-Content-Type: text/markdown
Requires-Dist: langchain-google-genai>=4.0.0
Requires-Dist: python-dotenv>=1.0.0
Requires-Dist: google-api-core>=2.15.0
Requires-Dist: langchain-core>=0.2.0

# GoogleModel - Resilient Gemini API Rotation

Automatic failover across multiple Gemini API keys and models to avoid rate limits.

## Install
```bash
pip install googlemodel
from googlemodel import ChatGoogleGenerativeAI

llm = ChatGoogleGenerativeAI(api_keys=["key1", "key2"])
print(llm.invoke("Hello!"))
python -m gemini_rotator.example_usage --mock
