Metadata-Version: 2.4
Name: z2a
Version: 0.1.0
Summary: A secure, Human-in-the-Loop AI Agent for Google Sheets and Drive in Colab.
Author-email: Your Startup Name <hello@yourstartup.com>
Requires-Python: >=3.9
Description-Content-Type: text/markdown
Requires-Dist: fastapi
Requires-Dist: uvicorn
Requires-Dist: gspread
Requires-Dist: google-api-python-client
Requires-Dist: google-auth
Requires-Dist: google-generativeai
Requires-Dist: pandas
Requires-Dist: python-multipart
Requires-Dist: pydantic
Requires-Dist: nest_asyncio

# z2a - Google Sheets Agent

A secure, 2-step Human-in-the-Loop AI Agent for modifying Google Sheets and Drive directly from Google Colab.

## 🚀 Quick Start
```python
!pip install z2a

from google.colab import auth, userdata
auth.authenticate_user()

from z2a.gsheets.agent import WorkspaceLauncher

app = WorkspaceLauncher(
    gemini_key=userdata.get('GEMINI_API_KEY'),
    models=["gemini-3.1-pro-preview", "gemini-flash-latest"]
)
app.start()
```
