A complete, high-performance toolkit to use Google Gemini 3.7 Flash, Imagen 3 (8K Images), Cinematic Videos, and Music Synthesis for FREE without API keys or costs.
| Directory | Description |
|---|---|
free-gemini-api/ |
π Go API Server with Needle 2 SLM Tool Routing & SQLite Memory |
gemini-extension/ |
π§© Chrome Extension for automatic real-time session cookie synchronization |
- Open Google Chrome and go to
chrome://extensions/ - Enable Developer mode (toggle in top right corner).
- Click Load unpacked and select the
gemini-extensionfolder. - Log into gemini.google.com β cookies sync automatically to the API server in real-time.
cd free-gemini-api
go run main.go- API Server:
http://localhost:8001 - OpenAI Compatible Endpoint:
http://localhost:8001/v1/chat/completions
curl -X POST http://localhost:8001/v1/chat/completions \
-H "Content-Type: application/json" \
-d '{
"model": "gemini-3.7-flash",
"messages": [{"role": "user", "content": "Explain quantum computing in 1 sentence"}]
}'