-
|
apra-fleet v0.2.1 added Antigravity (agy) as a third supported LLM provider alongside Claude and Gemini. What are the differences between them -- install command, auth setup, model tiers, parallel dispatch, and any known limitations? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
|
Fleet supports three providers today: Claude, Gemini, and Antigravity (agy). The table below covers the key differences across install, auth, model tiers, parallel dispatch, and known limitations. Provider comparison
Install examples# macOS/Linux
./apra-fleet-installer install --llm claude
./apra-fleet-installer install --llm gemini
./apra-fleet-installer install --llm agy
# Windows (PowerShell)
.\apra-fleet-installer.exe install --llm claude
.\apra-fleet-installer.exe install --llm gemini
.\apra-fleet-installer.exe install --llm agyAuth setup by providerClaude and Gemini: Run the installer, then call Antigravity (agy): Auth is per-machine and set up out of band. Run Customizing agy model tiersagy's tier mapping is controlled by a {
"llm": {
"cheap": { "model": "gemini-3.5-flash", "thinking": false },
"standard": { "model": "gemini-3.1-pro", "thinking": false },
"premium": { "model": "claude-opus-4-6", "thinking": true }
}
}This lets you tune cost vs capability per project, independently of what other members or workspaces use. Quick decision guide
|
Beta Was this translation helpful? Give feedback.
Fleet supports three providers today: Claude, Gemini, and Antigravity (agy). The table below covers the key differences across install, auth, model tiers, parallel dispatch, and known limitations.
Provider comparison
--llm claude(default)--llm gemini--llm agyprovision_llm_authautomates itprovision_llm_authautomates itagyinteractively once on the machine and sign in via browser; login persists. For headless/CI setANTIGRAVITY_API_KEY. Auth is per-machine and set up out of band;provision_llm_authdoes not apply to agy.