Google Antigravity Python SDK — v0.1.18 Release Notes #216
karmel
announced in
Announcements
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
[0.1.18] - 2026-09-21
This release announces official Antigravity SDK local model support (LiteRT and LocalOpenAI configs are now ready to use), adds a standardized evaluation configuration preset to provide a product-agnostic default for Gemini's coding ability, introduces custom model overrides for subagents, enables schedule and background task management by default, and expands compatibility with Vertex AI service tier handling.
🌟 Key Highlights
Antigravity SDK + Local Models Support: Official local model support is now ready to use with first-class
LiteRTAgentConfigandLocalOpenAIAgentConfigconfigurations. Developers can execute on-device models with automated lightweight presets or integrate with local OpenAI-compatible endpoints.Standardized Evaluation Preset (
AgentConfig.eval()): Adds a standardized, benchmark-ready preset that configures autonomous permissions, benchmark retry behavior, daemon execution in commands, and strips image generation and subagents to focus on core coding evaluations.Custom Subagent Models: Allows developers to assign specific model targets to subagents independently of the root agent configuration.
Built-in Schedule Tool: Enables the
scheduletool by default across standard tool groups, permitting agents and subagents to set timers and cron-based background jobs alongside task management.Automatic Lightweight Presets for LiteRT: Instantiating
LiteRTAgentConfignow automatically applies optimized lightweight presets—including reduced prompt overhead and synchronous context compaction—without requiring an explicit call to.lightweight().📋 Detailed Changes
Features & Enhancements
manage_tasktool wheneverrun_commandorscheduleis active, allowing background task lifecycle management.LiteRTAgentConfig(Gemma 4 26B) and OpenAI-compatible local endpoints viaLocalOpenAIAgentConfig.enable_sandbox=Trueis requested on an environment or OS backend where sandbox isolation cannot be enforced.multipleOf,prefixItems, anddependentSchemas) and prevented accidental mutation of uppercase sample values.ToolContextparameters, and introduced TypeAdapter caching to accelerate tool call execution.ServiceTierExport: Re-exportedServiceTierat the root package namespace for easier import parity.Model & Default Changes
ASK_QUESTIONfrom Default Tools: ExcludedBuiltinTools.ASK_QUESTIONfromBuiltinTools.default(). Default configurations run autonomously; agents in headless workflows will no longer attempt interactive user prompts. To re-enable interactive questions, explicitly passBuiltinTools.ASK_QUESTIONinenabled_tools.CompactionConfigto a singletoken_thresholdproperty, deprecating legacy context token limits and interval dials. To configure context compaction, specifyCompactionConfig(token_threshold=...).modified_arguments_json: Removed the legacy JSON string fallback in tool hook interception in favor ofmodified_args.Bug Fixes
ValueErrorwhen connecting via gateways reporting unlisted backend service tiers (such as Vertex AIPROVISIONED_THROUGHPUT) by safely ignoring unknown tier values while preserving token counts.All reactions