@jerryjliu0: Managed Agents through the Gemini API is @GoogleAI's response to Anthropic Managed Agents Since it's powered by the new…
Summary
Jerry Liu announces LlamaIndex's day-1 support for Google's new Managed Agents via the Gemini API, providing a cost-effective agent sandbox and a CLI tool (Antigravity) that integrates LlamaParse for PDF parsing.
View Cached Full Text
Cached at: 05/21/26, 08:15 AM
Managed Agents through the Gemini API is @GoogleAI’s response to Anthropic Managed Agents
Since it’s powered by the new Antigravity agent built on Gemini 3.5 Flash, it is the most cost-effective generalized agent sandbox available to developers
We built day 1 support for Gemini Managed Agents through LlamaParse and LiteParse - this lets you give the agent access to high-quality tools for parsing PDFs.
Check it out! https://github.com/run-llama/antigravity-demo…
run-llama/antigravity-demo
Source: https://github.com/run-llama/antigravity-demo
antigravity-llamaindex
A small CLI to set up and run an Antigravity agent backed by your own GitHub repository as a data source, with LlamaParse/LiteParse skills for parsing unstructured files.
Requirements
- Python
>=3.13 uvghauthenticated (gh auth login)- A Google/Gemini API key in
GOOGLE_API_KEYorGEMINI_API_KEY - (Optional) A LlamaCloud key in
LLAMA_CLOUD_API_KEYorLLAMA_PARSE_API_KEYto enable LlamaParse
Environment variables can be set in a local .env file.
Install
uv tool install .
This exposes the llamagrav command.
Usage
The CLI has four commands: git-wiz, setup, run and resets. They are meant to
be run in order — each one persists state in .config.json in the current
directory.
1. llamagrav git-wiz — publish your data to GitHub
Initializes a git repo from a local directory, creates a GitHub repository,
pushes the contents, and saves the repository URL to .config.json.
llamagrav git-wiz \
--directory ./my-data \
--owner my-github-user \
--repo-name my-antigravity-data \
--description "Data for my Antigravity agent"
Flags:
| Flag | Description |
|---|---|
-d, --directory | Local directory to publish (defaults to .) |
-o, --owner | GitHub user/org that will own the repo |
-r, --repo-name | Name of the GitHub repo to create |
--description | Optional repo description |
2. llamagrav setup — prepare the agent environment
Provisions the remote Antigravity environment from the repository configured
above and saves the resulting environment id in .config.json.
llamagrav setup # uses LlamaParse (sends LlamaCloud key)
llamagrav setup --no-send-api-key # LiteParse only, no key sent
3. llamagrav run — run the agent
llamagrav run --prompt "Summarize the PDFs in /data"
4. llamagrav reset — reset the environment
Reset the environment in .config.json to null so that you can set up a new one.
llamagrav reset
Config file
.config.json is created and updated by the CLI. It looks like:
{
"github": { "repository_url": "https://github.com/owner/repo" },
"environment": { "id": "...", "has_api_key": true }
}
LlamaIndex 🦙 (@llama_index): 🚀 The team at @Google just released the Agents API, a service for building and running custom agents inside a sandboxed Linux environment, and we built a template that gives these agents access to LlamaParse / LiteParse, enabling them to process unstructured documents
Similar Articles
@LyalinDotCom: Back at work after dinner with my colleague, getting some learning time in... Trying to get more familiar with how our …
Google launched Managed Agents in the Gemini API, allowing developers to create AI agents with reasoning, tool use, and code execution in isolated Linux environments via a single API call.
@googledevs: Agent development is moving forward. While production scaling traditionally required manual infrastructure setup and pr…
Google announces the official launch of Managed Agents in the Gemini API, enabling agent development with zero infrastructure overhead. The article also highlights AGENTS.md, an open format for providing context to AI coding agents, adopted by over 60k open-source projects.
Google introduces Gemini Enterprise Agent Platform
Google Cloud launches Gemini Enterprise Agent Platform, a managed service for building and deploying AI agents at enterprise scale.
google/agents-cli
Google released `agents-cli`, a CLI tool and skill set for building, deploying, and managing enterprise-grade agents on the Gemini Enterprise Agent Platform, designed to integrate with popular coding assistants like Claude Code and Codex.
Google I/O, Gemini Spark, Antigravity
Google I/O announced Gemini Spark, a personal AI agent powered by Gemini 3.5 Flash and Antigravity, and the transition of Gemini CLI to the closed-source Antigravity CLI. The article highlights security concerns regarding prompt injection and data handling for agent products.