SlimeTree-RLM × Google Integration (Gemini-only)
Wraps Gmail / Calendar / Drive / Sheets / Workspace API with RLM pre-filter + Gemini delegation. Cuts LLM cost 60-80%; personal-tier free keys via Google AI Studio; MIT-public.
LLM delegation = Gemini exclusive (Google-native, access-policy-aligned).
Issue a personal free API key at aistudio.google.com/apikey (15 RPM free; overflow is token-based).
Why Google integration is Gemini-only
Google Workspace APIs run on Google account authorization. The same Google account can issue a Gemini API key → one user / one account / one billing identity.
Mixing in other LLMs (Claude / OpenAI) introduces extra accounts and invoicing overhead. Google-native = Gemini is optimal.
On top of that, Gemini has a free tier (15 RPM), making it easy for individuals and SMBs to evaluate.
* Architectural principle: "Platform-native LLM" ― Meta = neutral / X = Grok / Google = Gemini / Microsoft (planned) = Azure OpenAI.
Integration routes
PublicGoogle Sign-In + GeminiGoogle AI
▸ Operate Google safely through an internal AI gateway
Google Prompt Gateway
Sign in with Google → in-browser RLM emits D/µ/R → only R goes to the Gemini API. Live pipeline visualization included.
PublicGmail API + GeminiGoogle AI
▸ Pre-triage incoming email with RLM
Gmail Triage Bot
Incoming mail goes to D=auto-reply / µ=trash or archive / R=Gemini summary + draft. Spam, investment solicitation, and PII-request DMs are suppressed deterministically.
PublicCalendar API + GeminiGoogle AI
▸ Detect collisions / anomalies in upcoming events
Calendar Analyzer Bot
Fetch the next 7 days → RLM emits D=routine meeting / µ=needs attention (double-booking / all-day collision) / R=Gemini summary + risk assessment.
PublicDrive API + GeminiGoogle AI
▸ Audit Drive file names / metadata at scale
Drive Audit Bot
RLM audits filenames / sharing settings → µ=confidentiality-leak risk (publicly-viewable + "confidential" / "personal" keywords); R=Gemini content-summary audit.
PublicSheets API + GeminiGoogle AI
▸ Detect spreadsheet anomalies via RLM
Sheets Cell Audit Bot
Read the sheet → per-column RLM verdict: D=normal / µ=anomaly (PII mix-in / formula error / empty cell) / R=Gemini contextual analysis. 1,000 rows / sec.
PublicWorkspace API genericGoogle AI
▸ Hit any Google API endpoint from one UI
Workspace API generic client
Gmail / Calendar / Drive / Sheets / Forms / Chat / Admin endpoints from one panel. Post-stage RLM audit of responses (Gemini), curl-equivalent, history.
NEXT THEME · 2026-05-30 Google = Gemini-only Flash → Pro tiering + free tier preserved
★ What multi-agent extension changes ✅ Google 6/6 B mode shipped (in-Gemini)
Google integration is Platform-native = Gemini-only (one Google account ops).
The Gemini family offers 2.5 Flash (cheap, free tier 15 RPM) → 2.5 Pro (premium) as a clear two-tier separation, and notably the cheap layer can stay $0 forever ― an attribute no other platform shares.
SMBs can run 80% on free cheap + 20% paid premium; enterprises can unify on Pro ― both with the same codebase.
Unique advantages under the Gemini-only constraint
- The only platform that keeps the cheap layer at $0 ― Google AI Studio issues Flash free keys (15 RPM). For SMBs / individuals, the cheap layer stays $0 indefinitely; only the escalated premium portion incurs charges.
- One Google account for Workspace + Gemini unified ops ― no separate vendor authentication; SSO / audit / billing are unified. The setup enterprise IT teams prefer.
- Parallel processing (pattern D) is economically viable with cheap Flash ― auditing 1,000 Drive files / 10,000 Sheets rows via parallel Flash workers costs less than $1/month. Large-scale audits across Gmail / Calendar / Drive / Sheets become viable at realistic prices.
- Gemini Pro's long context (2M tokens) makes it ideal as orchestrator ― batches of Drive files / Calendar history go to Pro for global planning, then to workers ― a natural fit.
Details on service page #multi-agent-saving.
Common pattern (all 6 routes)
| Authentication | OAuth 2.0 (Google Sign-In) ― only the scopes each route needs (gmail.readonly / calendar.events / drive.readonly etc.) |
|---|---|
| LLM delegation | Gemini (Google) only. Endpoint = https://generativelanguage.googleapis.com/v1beta/models/{model}:generateContent |
| Verdict | D = instant (no Gemini call) / μ = suppressed / R = Gemini delegation |
| Audit | Every query chained via SHA-256; exportWAL() emits JSON → can be saved to Drive as well |
| Gemini pricing | Free tier: 15 RPM. Overflow is token-based (Flash $0.075/1M in, $0.30/1M out). aistudio.google.com/apikey |
| Workspace pricing | Personal: Gmail / Calendar / Drive basically free (15GB); Workspace Business: $6-$18/user/month |
| License | Integration code = MIT (public) / actual WASM = JAVATEL commercial / Google API + Gemini = customer's own accounts |
Related resources
- SlimeTree-RLM primary materials
- Meta integration hub (multi-provider, Gemini also selectable)
- X integration hub (Grok-only)
- Service page (umbrella)
- Google Workspace API documentation
- Gemini API documentation
