Antigravity एजेंट, Gemini API पर अलग-अलग कामों के लिए इस्तेमाल किया जाने वाला मैनेज एजेंट है. एक एपीआई कॉल से आपको एक ऐसा एजेंट मिलता है जो तर्क देता है, कोड को लागू करता है, फ़ाइलों को मैनेज करता है, और Google की ओर से होस्ट किए गए आपके सुरक्षित Linux सैंडबॉक्स में वेब ब्राउज़ करता है.
यह Gemini 3.5 Flash पर काम करता है और Antigravity IDE की तरह ही एक ही हार्नेस का इस्तेमाल करता है. यह सुविधा, Interactions API और Google AI Studio के ज़रिए उपलब्ध है.
Python
from google import genai
client = genai.Client()
interaction = client.interactions.create(
agent="antigravity-preview-05-2026",
input="Read Hacker News, summarize the top 10 stories, and save the results as a PDF.",
environment="remote",
)
print(interaction.output_text)
JavaScript
import { GoogleGenAI } from "@google/genai";
const client = new GoogleGenAI({});
const interaction = await client.interactions.create({
agent: "antigravity-preview-05-2026",
input: "Read Hacker News, summarize the top 10 stories, and save the results as a PDF.",
environment: "remote",
}, { timeout: 300000 });
console.log(interaction.output_text);
REST
curl -X POST "https://generativelanguage.googleapis.com/v1beta/interactions" \
-H "Content-Type: application/json" \
-H "x-goog-api-key: $GEMINI_API_KEY" \
-d '{
"agent": "antigravity-preview-05-2026",
"input": "Read Hacker News, summarize the top 10 stories, and save the results as a PDF.",
"environment": "remote"
}'
क्षमताएं
हर कॉल के लिए, Linux सैंडबॉक्स उपलब्ध कराया जा सकता है. साथ ही, टूल इस्तेमाल करने का लूप शुरू किया जा सकता है. एजेंट प्लान बनाता है, कार्रवाई करता है, नतीजों को देखता है, और टास्क पूरा होने तक इस प्रोसेस को दोहराता है.
- कोड एक्ज़ीक्यूशन: Bash, Python, और Node.js कमांड चलाएं. पैकेज इंस्टॉल करना, टेस्ट चलाना, और ऐप्लिकेशन बनाना.
- फ़ाइल मैनेजमेंट: सैंडबॉक्स में फ़ाइलों को पढ़ना, लिखना, उनमें बदलाव करना, उन्हें खोजना, और उनकी सूची बनाना. फ़ाइलें, सभी इंटरैक्शन में बनी रहती हैं.
- वेब ऐक्सेस: Google Search और डेटा के लिए यूआरएल फ़ेच करना.
- कॉन्टेक्स्ट को छोटा करना: लंबे समय तक चलने वाले और सिलसिलेवार बातचीत वाले सेशन के लिए, कॉन्टेक्स्ट को अपने-आप छोटा करने की सुविधा (यह सुविधा ~135 हज़ार टोकन पर ट्रिगर होती है). इससे कॉन्टेक्स्ट नहीं बदलता और टोकन की सीमाएं भी नहीं टूटती हैं.
सिलसिलेवार बातचीत और स्ट्रीमिंग के लिए, क्विकस्टार्ट देखें.
इन टूल के साथ काम करता है
डिफ़ॉल्ट रूप से, एजेंट के पास code_execution, google_search, और url_context का ऐक्सेस होता है. environment पैरामीटर तय करने पर, फ़ाइल सिस्टम टूल अपने-आप चालू हो जाते हैं. अपने एपीआई और टूल से एजेंट को कनेक्ट करने के लिए, कस्टम फ़ंक्शन भी तय किए जा सकते हैं. डिफ़ॉल्ट सेट को पसंद के मुताबिक बनाने या उसे सीमित करने पर ही, tools पैरामीटर तय करना होता है. इसके अलावा, कस्टम फ़ंक्शन जोड़ते समय भी ऐसा करना होता है.
| टूल | वैल्यू टाइप करें | ब्यौरा |
|---|---|---|
| कोड एक्ज़ीक्यूट करना | code_execution |
stdout/stderr कैप्चर करने की सुविधा के साथ, शेल कमांड (bash, Python, Node) चलाएं. |
| Google Search | google_search |
सार्वजनिक वेब पर खोजें. |
| यूआरएल का कॉन्टेक्स्ट | url_context |
वेब पेजों को फ़ेच और पढ़ सकता है. |
| फ़ाइल सिस्टम | (environment के ज़रिए चालू किया गया) |
सैंडबॉक्स में फ़ाइलें पढ़ने, लिखने, उनमें बदलाव करने, उन्हें खोजने, और उनकी सूची बनाने की अनुमति. कोई अलग टूल टाइप नहीं है; environment सेट होने पर, यह सुविधा अपने-आप चालू हो जाती है. |
| कस्टम फ़ंक्शन | function |
ऐसे कस्टम फ़ंक्शन तय करें जिन्हें एजेंट लागू करने का अनुरोध कर सकता है. फ़ंक्शन कॉलिंग देखें. |
| रिमोट एमसीपी सर्वर | mcp_server |
बाहरी मॉडल कॉन्टेक्स्ट प्रोटोकॉल (एमसीपी) सर्वर को टूल के तौर पर रजिस्टर करें. एमसीपी सर्वर देखें. |
एजेंट को सिर्फ़ कुछ टूल का ऐक्सेस देने के लिए, सिर्फ़ उन टूल को पास करें जिनकी ज़रूरत है:
Python
from google import genai
client = genai.Client()
interaction = client.interactions.create(
agent="antigravity-preview-05-2026",
input="Search for the latest AI research papers on reasoning and summarize them.",
environment="remote",
tools=[
{"type": "google_search"},
{"type": "url_context"},
],
)
print(interaction.output_text)
JavaScript
import { GoogleGenAI } from "@google/genai";
const client = new GoogleGenAI({});
const interaction = await client.interactions.create({
agent: "antigravity-preview-05-2026",
input: "Search for the latest AI research papers on reasoning and summarize them.",
environment: "remote",
tools: [
{ type: "google_search" },
{ type: "url_context" },
],
}, { timeout: 300000 });
console.log(interaction.output_text);
REST
curl -X POST "https://generativelanguage.googleapis.com/v1beta/interactions" \
-H "Content-Type: application/json" \
-H "x-goog-api-key: $GEMINI_API_KEY" \
-d '{
"agent": "antigravity-preview-05-2026",
"input": "Search for the latest AI research papers on reasoning and summarize them.",
"environment": "remote",
"tools": [
{"type": "google_search"},
{"type": "url_context"}
]
}'
मल्टीमॉडल इनपुट
Antigravity एजेंट, मल्टीमॉडल इनपुट के साथ काम करता है. फ़िलहाल, सिर्फ़ text और image इनपुट इस्तेमाल किए जा सकते हैं. इमेज, Base64 कोड में बदली गई इनलाइन स्ट्रिंग (data) के तौर पर दी जानी चाहिए.
Python
import base64
from google import genai
client = genai.Client()
with open("path/to/chart.png", "rb") as f:
image_bytes = f.read()
interaction_inline = client.interactions.create(
agent="antigravity-preview-05-2026",
input=[
{"type": "text", "text": "Analyze this chart and summarize the trends."},
{
"type": "image",
"data": base64.b64encode(image_bytes).decode("utf-8"),
"mime_type": "image/png",
},
],
environment="remote",
)
JavaScript
import { GoogleGenAI } from "@google/genai";
import * as fs from "node:fs";
const client = new GoogleGenAI({});
const base64Image = fs.readFileSync("path/to/chart.png", { encoding: "base64" });
const interactionInline = await client.interactions.create({
agent: "antigravity-preview-05-2026",
input: [
{ type: "text", text: "Analyze this chart and summarize the trends." },
{
type: "image",
data: base64Image,
mime_type: "image/png",
},
],
environment: "remote",
}, { timeout: 300000 });
REST
BASE64_IMAGE=$(base64 -w0 /path/to/chart.png)
curl -X POST "https://generativelanguage.googleapis.com/v1beta/interactions" \
-H "Content-Type: application/json" \
-H "x-goog-api-key: $GEMINI_API_KEY" \
-d "{
\"agent\": \"antigravity-preview-05-2026\",
\"input\": [
{\"type\": \"text\", \"text\": \"Analyze this chart and summarize the trends.\"},
{
\"type\": \"image\",
\"mime_type\": \"image/png\",
\"data\": \"$BASE64_IMAGE\"
}
],
\"environment\": \"remote\"
}"
फ़ंक्शन कॉलिंग
फ़ंक्शन कॉलिंग की सुविधा की मदद से, Antigravity एजेंट को बाहरी एपीआई और डेटाबेस से कनेक्ट किया जा सकता है. इसके लिए, आपको कस्टम टूल तय करने होंगे, जिन्हें एजेंट इस्तेमाल कर सकता है. सामान्य कॉन्सेप्ट के लिए, Gemini API के साथ फ़ंक्शन कॉलिंग देखें.
यहां दिए गए उदाहरण में, दो बार की बातचीत दिखाई गई है. एजेंट पहले कस्टम get_weather फ़ंक्शन कॉल का अनुरोध करता है. इसके बाद, क्लाइंट उसे लागू करता है और दूसरे टर्न में नतीजा दिखाता है.
Python
from google import genai
client = genai.Client()
# 1. Define the custom function
get_weather_tool = {
"type": "function",
"name": "get_weather",
"description": "Gets the current weather for a given location.",
"parameters": {
"type": "object",
"properties": {
"location": {
"type": "string",
"description": "The city and country, e.g. San Francisco, USA",
}
},
"required": ["location"],
},
}
# 2. Call the agent with the custom tool (Turn 1)
interaction = client.interactions.create(
agent="antigravity-preview-05-2026",
input="What is the weather in Tokyo?",
environment="remote",
tools=[
{"type": "code_execution"}, # Enable default code execution
get_weather_tool, # Add custom function
],
)
# Check if the agent requested a function call
if interaction.status == "requires_action":
# Find function calls that do not have a matching function result.
# Filesystem tools (like write_file) are also represented as function calls
# but are executed automatically by the environment.
executed_calls = {step.call_id for step in interaction.steps if step.type == "function_result"}
pending_calls = [step for step in interaction.steps if step.type == "function_call" and step.id not in executed_calls]
if pending_calls:
fc_step = pending_calls[0]
print(f"Function to call: {fc_step.name} (ID: {fc_step.id})")
print(f"Arguments: {fc_step.arguments}")
# 3. Execute the function locally (simulated get_weather()) and send the result back (Turn 2)
function_result = {
"temperature": 23,
"unit": "celsius"
}
final_interaction = client.interactions.create(
agent="antigravity-preview-05-2026",
previous_interaction_id=interaction.id, # Reference the interaction ID
environment=interaction.environment_id,
input=[
{
"type": "function_result",
"name": fc_step.name,
"call_id": fc_step.id,
"result": function_result,
}
],
)
print(final_interaction.output_text)
# Output: The current weather in Tokyo, Japan is 23°C (Celsius).
else:
print("No pending function calls.")
else:
print(f"Interaction completed with status: {interaction.status}")
JavaScript
import { GoogleGenAI } from "@google/genai";
const client = new GoogleGenAI({});
// 1. Define the custom function
const get_weather_tool = {
type: "function",
name: "get_weather",
description: "Gets the current weather for a given location.",
parameters: {
type: "object",
properties: {
location: {
type: "string",
description: "The city and country, e.g. San Francisco, USA",
},
},
required: ["location"],
},
};
// 2. Call the agent with the custom tool (Turn 1)
const interaction = await client.interactions.create({
agent: "antigravity-preview-05-2026",
input: "What is the weather in Tokyo?",
environment: "remote",
tools: [
{ type: "code_execution" },
get_weather_tool,
],
}, { timeout: 300000 });
if (interaction.status === "requires_action") {
// Find function calls that do not have a matching function result.
// Filesystem tools (like write_file) are also represented as function calls
// but are executed automatically by the environment.
const executedCalls = new Set(
interaction.steps
.filter(s => s.type === "function_result")
.map(s => s.call_id)
);
const pendingCalls = interaction.steps.filter(
s => s.type === "function_call" && !executedCalls.has(s.id)
);
if (pendingCalls.length > 0) {
const fcStep = pendingCalls[0];
console.log(`Function to call: ${fcStep.name} (ID: ${fcStep.id})`);
// 3. Execute the function locally (simulated get_weather()) and send the result back (Turn 2)
const functionResult = {
temperature: 23,
unit: "celsius"
};
const finalInteraction = await client.interactions.create({
agent: "antigravity-preview-05-2026",
previous_interaction_id: interaction.id, // Reference the interaction ID
environment: interaction.environment_id,
input: [
{
type: "function_result",
name: fcStep.name,
call_id: fcStep.id,
result: functionResult,
}
],
}, { timeout: 300000 });
console.log(finalInteraction.output_text);
} else {
console.log("No pending function calls.");
}
} else {
console.log(`Interaction completed with status: ${interaction.status}`);
}
REST
# 1. Turn 1: Request function call
RESPONSE=$(curl -s -X POST "https://generativelanguage.googleapis.com/v1beta/interactions" \
-H "Content-Type: application/json" \
-H "x-goog-api-key: $GEMINI_API_KEY" \
-d '{
"agent": "antigravity-preview-05-2026",
"input": "What is the weather in Tokyo?",
"environment": "remote",
"tools": [
{"type": "code_execution"},
{
"type": "function",
"name": "get_weather",
"description": "Gets the current weather for a given location.",
"parameters": {
"type": "object",
"properties": {
"location": {"type": "string"}
},
"required": ["location"]
}
}
]
}')
# Extract interaction ID, environment ID, and call ID (requires jq)
INTERACTION_ID=$(echo $RESPONSE | jq -r '.id')
ENVIRONMENT_ID=$(echo $RESPONSE | jq -r '.environment_id')
CALL_ID=$(echo $RESPONSE | jq -r '.steps[] | select(.type=="function_call") | .id')
# 2. Turn 2: Send function result back using variables
curl -X POST "https://generativelanguage.googleapis.com/v1beta/interactions" \
-H "Content-Type: application/json" \
-H "x-goog-api-key: $GEMINI_API_KEY" \
-d "{
\"agent\": \"antigravity-preview-05-2026\",
\"previous_interaction_id\": \"$INTERACTION_ID\",
\"environment\": \"$ENVIRONMENT_ID\",
\"input\": [
{
\"type\": \"function_result\",
\"name\": \"get_weather\",
\"call_id\": \"$CALL_ID\",
\"result\": {
\"temperature\": 23,
\"unit\": \"celsius\"
}
}
]
}"
एमसीपी सर्वर
रिमोट मॉडल कॉन्टेक्स्ट प्रोटोकॉल (एमसीपी) सर्वर रजिस्टर करके, Antigravity एजेंट को बाहरी टूल से कनेक्ट किया जा सकता है. यह एजेंट, स्ट्रीम किए जा सकने वाले एचटीटीपी पर रिमोट एमसीपी सर्वर के साथ काम करता है.
एमसीपी सर्वर रजिस्टर करते समय, आपको tools ऐरे में ये फ़ील्ड तय करने होंगे:
| फ़ील्ड | प्रकार | ज़रूरी है | ब्यौरा |
|---|---|---|---|
type |
स्ट्रिंग | हां | "mcp_server" होना चाहिए. |
name |
स्ट्रिंग | हां | सर्वर के लिए यूनीक आइडेंटिफ़ायर. यह पूरी तरह से छोटे अक्षरों में होना चाहिए. साथ ही, इसमें अक्षर और अंक (^[a-z0-9_-]+$ से मेल खाने वाले) होने चाहिए. |
url |
स्ट्रिंग | हां | रिमोट एमसीपी सर्वर का एंडपॉइंट यूआरएल. |
headers |
ऑब्जेक्ट | नहीं | अनुरोधों के साथ भेजे गए कस्टम हेडर (जैसे, पुष्टि करने से जुड़ा हेडर). |
allowed_tools |
ऐरे | नहीं | उन टूल के नामों की सूची जिन्हें लागू करने की अनुमति है. अगर इसे शामिल नहीं किया जाता है, तो सभी टूल इस्तेमाल किए जा सकते हैं. |
Python
from google import genai
client = genai.Client()
# Register a remote HTTP MCP server
interaction = client.interactions.create(
agent="antigravity-preview-05-2026",
input="What is the weather in Tokyo?",
environment="remote",
tools=[{
"type": "mcp_server",
"name": "weather", # Must be lowercase
"url": "https://gemini-api-demos.uc.r.appspot.com/mcp"
}]
)
print(interaction.output_text)
JavaScript
import { GoogleGenAI } from "@google/genai";
const client = new GoogleGenAI({});
const interaction = await client.interactions.create({
agent: "antigravity-preview-05-2026",
input: "What is the weather in Tokyo?",
environment: "remote",
tools: [{
type: "mcp_server",
name: "weather", // Must be lowercase
url: "https://gemini-api-demos.uc.r.appspot.com/mcp"
}]
}, { timeout: 300000 });
console.log(interaction.output_text);
REST
curl -X POST "https://generativelanguage.googleapis.com/v1beta/interactions" \
-H "Content-Type: application/json" \
-H "x-goog-api-key: $GEMINI_API_KEY" \
-d '{
"agent": "antigravity-preview-05-2026",
"input": "What is the weather in Tokyo?",
"environment": "remote",
"tools": [{
"type": "mcp_server",
"name": "weather",
"url": "https://gemini-api-demos.uc.r.appspot.com/mcp"
}]
}'
एजेंट को पसंद के मुताबिक बनाना
Antigravity एजेंट को बेहतर बनाया जा सकता है. इसके लिए, निर्देशों, टूल, और एनवायरमेंट में अपनी पसंद के मुताबिक बदलाव करें. एजेंट, फ़ाइल सिस्टम के हिसाब से काम करता है. इसलिए, इसे अपनी पसंद के मुताबिक़ बनाया जा सकता है: .agents/skills/ में मौजूद निर्देशों और स्किल के लिए, AGENTS.md जैसी फ़ाइलें सीधे सैंडबॉक्स में माउंट की जा सकती हैं. इसके अलावा, इंटरैक्शन के समय कॉन्फ़िगरेशन को इनलाइन पास किया जा सकता है. कॉन्फ़िगरेशन में बदलाव करने के बाद, इसे मैनेज किए जा सकने वाले एजेंट के तौर पर सेव किया जा सकता है.
कस्टम एजेंट बनाने के बारे में पूरी जानकारी के लिए, मैनेज किए गए एजेंट बनाना लेख पढ़ें.
बैकग्राउंड में कोड एक्ज़ीक्यूट होने की सुविधा
एजेंट के ऐसे टास्क पूरे होने में कुछ मिनट लग सकते हैं जिनमें कई चरणों में तर्क करना, कोड एक्ज़ीक्यूशन या फ़ाइल से जुड़ी कार्रवाइयां शामिल हों. इंटरैक्शन को एसिंक्रोनस तरीके से चलाने के लिए, background=True का इस्तेमाल करें. एपीआई, इंटरैक्शन आईडी के साथ तुरंत जवाब देता है. आपको इस आईडी को तब तक पोल करना होता है, जब तक स्थिति completed या failed न हो जाए.
Python
import time
from google import genai
client = genai.Client()
# 1. Start the interaction in the background
interaction = client.interactions.create(
agent="antigravity-preview-05-2026",
input="Run a complex analysis on the repository.",
environment="remote",
background=True,
)
print(f"Interaction started in background: {interaction.id}")
# 2. Poll for completion
while interaction.status == "in_progress":
time.sleep(5)
interaction = client.interactions.get(id=interaction.id)
if interaction.status == "completed":
print(interaction.output_text)
else:
print(f"Finished with status: {interaction.status}")
JavaScript
import { GoogleGenAI } from "@google/genai";
const client = new GoogleGenAI({});
const interaction = await client.interactions.create({
agent: "antigravity-preview-05-2026",
input: "Run a complex analysis on the repository.",
environment: "remote",
background: true,
});
console.log(`Interaction started in background: ${interaction.id}`);
let result = interaction;
while (result.status === "in_progress") {
await new Promise(resolve => setTimeout(resolve, 5000));
result = await client.interactions.get(interaction.id);
}
if (result.status === "completed") {
console.log(result.output_text);
} else {
console.log(`Finished with status: ${result.status}`);
}
REST
# 1. Start the interaction in the background
RESPONSE=$(curl -s -X POST "https://generativelanguage.googleapis.com/v1beta/interactions" \
-H "Content-Type: application/json" \
-H "x-goog-api-key: $GEMINI_API_KEY" \
-H "Api-Revision: 2026-05-20" \
-d '{
"agent": "antigravity-preview-05-2026",
"input": "Run a complex analysis on the repository.",
"environment": "remote",
"background": true
}')
INTERACTION_ID=$(echo $RESPONSE | jq -r '.id')
# 2. Poll for results (repeat until status is "completed")
curl -s -X GET "https://generativelanguage.googleapis.com/v1beta/interactions/$INTERACTION_ID" \
-H "x-goog-api-key: $GEMINI_API_KEY"
बैकग्राउंड में कोड एक्ज़ीक्यूट होने की सुविधा के लिए store=True ज़रूरी है. यह डिफ़ॉल्ट रूप से चालू होती है. बैकग्राउंड में प्रोसेस होने के दौरान, रीयल-टाइम में प्रोग्रेस अपडेट पाने के लिए, बैकग्राउंड में होने वाले इंटरैक्शन को स्ट्रीम करना लेख पढ़ें.
cancel तरीके का इस्तेमाल करके, बैकग्राउंड में चल रहे इंटरैक्शन को रद्द किया जा सकता है.
Python
client.interactions.cancel(id="INTERACTION_ID")
JavaScript
await client.interactions.cancel({ id: "INTERACTION_ID" });
REST
curl -X POST "https://generativelanguage.googleapis.com/v1beta/interactions/INTERACTION_ID:cancel" \
-H "x-goog-api-key: $GEMINI_API_KEY"
बैकग्राउंड में कोड एक्ज़ीक्यूट होने की सुविधा के साथ सिलसिलेवार बातचीत
जब बैकग्राउंड इंटरैक्शन में स्टेटफ़ुल टूल (जैसे, सैंडबॉक्स में कोड एक्ज़ीक्यूट करना) शामिल हो, तो उसी एनवायरमेंट में जारी रखने के लिए, पूरे किए गए इंटरैक्शन से environment_id का इस्तेमाल करें. इससे यह पक्का होता है कि एजेंट, सभी फ़ाइलों और स्थिति को बरकरार रखते हुए, वहीं से काम शुरू करे जहां उसने छोड़ा था.
Python
import time
from google import genai
client = genai.Client()
# First turn: run a task in the background
interaction = client.interactions.create(
agent="antigravity-preview-05-2026",
input="Clone https://github.com/google/generative-ai-python and run its tests.",
environment="remote",
background=True,
)
while interaction.status == "in_progress":
time.sleep(5)
interaction = client.interactions.get(id=interaction.id)
# Second turn: continue in the same environment
followup = client.interactions.create(
agent="antigravity-preview-05-2026",
input="Fix any failing tests and re-run them.",
previous_interaction_id=interaction.id,
environment=interaction.environment_id,
background=True,
)
while followup.status == "in_progress":
time.sleep(5)
followup = client.interactions.get(id=followup.id)
print(followup.output_text)
JavaScript
import { GoogleGenAI } from "@google/genai";
const client = new GoogleGenAI({});
// First turn: run a task in the background
let interaction = await client.interactions.create({
agent: "antigravity-preview-05-2026",
input: "Clone https://github.com/google/generative-ai-python and run its tests.",
environment: "remote",
background: true,
});
while (interaction.status === "in_progress") {
await new Promise(resolve => setTimeout(resolve, 5000));
interaction = await client.interactions.get(interaction.id);
}
// Second turn: continue in the same environment
let followup = await client.interactions.create({
agent: "antigravity-preview-05-2026",
input: "Fix any failing tests and re-run them.",
previous_interaction_id: interaction.id,
environment: interaction.environment_id,
background: true,
});
while (followup.status === "in_progress") {
await new Promise(resolve => setTimeout(resolve, 5000));
followup = await client.interactions.get(followup.id);
}
console.log(followup.output_text);
REST
# 1. Start first interaction in the background
RESPONSE=$(curl -s -X POST "https://generativelanguage.googleapis.com/v1beta/interactions" \
-H "Content-Type: application/json" \
-H "x-goog-api-key: $GEMINI_API_KEY" \
-H "Api-Revision: 2026-05-20" \
-d '{
"agent": "antigravity-preview-05-2026",
"input": "Clone https://github.com/google/generative-ai-python and run its tests.",
"environment": "remote",
"background": true
}')
INTERACTION_ID=$(echo $RESPONSE | jq -r '.id')
# 2. Poll until completed (repeat until status is "completed")
RESULT=$(curl -s -X GET "https://generativelanguage.googleapis.com/v1beta/interactions/$INTERACTION_ID" \
-H "x-goog-api-key: $GEMINI_API_KEY")
ENVIRONMENT_ID=$(echo $RESULT | jq -r '.environment_id')
# 3. Continue in the same environment
curl -s -X POST "https://generativelanguage.googleapis.com/v1beta/interactions" \
-H "Content-Type: application/json" \
-H "x-goog-api-key: $GEMINI_API_KEY" \
-H "Api-Revision: 2026-05-20" \
-d "{
\"agent\": \"antigravity-preview-05-2026\",
\"input\": \"Fix any failing tests and re-run them.\",
\"previous_interaction_id\": \"$INTERACTION_ID\",
\"environment\": \"$ENVIRONMENT_ID\",
\"background\": true
}"
एनवायरमेंट
हर कॉल, Linux सैंडबॉक्स बनाता है या उसका फिर से इस्तेमाल करता है. environment पैरामीटर तीन तरह के होते हैं:
| फ़ॉर्म | ब्यौरा |
|---|---|
"remote" |
डिफ़ॉल्ट सेटिंग के साथ नया सैंडबॉक्स उपलब्ध कराएं. |
"env_abc123" |
आईडी के हिसाब से किसी मौजूदा एनवायरमेंट का फिर से इस्तेमाल करें. इससे सभी फ़ाइलें और उनकी स्थिति बनी रहती है. |
{...} |
कस्टम सोर्स और नेटवर्क के नियमों के साथ पूरी EnvironmentConfig. |
सोर्स (Git, GCS, इनलाइन), नेटवर्किंग, लाइफ़साइकल, और संसाधन की सीमाओं के बारे में जानकारी के लिए, एनवायरमेंट देखें.
उपलब्धता और कीमत
Antigravity एजेंट, Google AI Studio और Gemini API में Interactions API के ज़रिए, सिर्फ़ झलक के लिए उपलब्ध है.
कीमत, इस्तेमाल के हिसाब से पैसे चुकाएं मॉडल के हिसाब से तय की जाती है. यह Gemini मॉडल के टोकन और एजेंट के इस्तेमाल किए गए टूल पर आधारित होती है. सामान्य चैट के अनुरोध में सिर्फ़ एक आउटपुट मिलता है. वहीं, Antigravity इंटरैक्शन एक एजेंटिक वर्कफ़्लो है. एक अनुरोध से, तर्क करने, टूल चलाने, कोड चलाने, और फ़ाइल मैनेज करने का लूप अपने-आप ट्रिगर हो जाता है.
अनुमानित लागतें
टास्क की जटिलता के आधार पर लागत अलग-अलग होती है. एजेंट अपने-आप यह तय करता है कि कितने टूल कॉल, कोड एक्ज़ीक्यूशन, और फ़ाइल ऑपरेशन की ज़रूरत है. यहां दिए गए अनुमान, रन के आधार पर तय किए जाते हैं.
| टास्क की कैटगरी | इनपुट टोकन | आउटपुट टोकन | औसत लागत के बराबर |
|---|---|---|---|
| रिसर्च करना और जानकारी को व्यवस्थित करना | 1 लाख से 5 लाख | 10 हज़ार से 40 हज़ार | 0.30 डॉलर से 1.00 डॉलर |
| दस्तावेज़ और कॉन्टेंट जनरेट करना | 1 लाख से 5 लाख | 15 हज़ार–50 हज़ार | 0.30 डॉलर से 1.30 डॉलर |
| प्रोसेस और सिस्टम डिज़ाइन | 1 लाख से 4 लाख | 10 हज़ार से 30 हज़ार | 0.25 डॉलर से 0.80 डॉलर |
| डेटा प्रोसेसिंग और विश्लेषण | 3 लाख से 30 लाख | 30 हज़ार से 1.5 लाख | 0.70 डॉलर से 3.25 डॉलर |
आम तौर पर, 50 से 70% इनपुट टोकन कैश मेमोरी में सेव किए जाते हैं. कई टूल कॉल वाले जटिल एजेंटिक वर्कफ़्लो में, एक इंटरैक्शन में 30 से 50 लाख टोकन इस्तेमाल हो सकते हैं. इनकी लागत करीब 5 डॉलर तक हो सकती है.
प्रीव्यू की अवधि के दौरान, एनवायरमेंट कंप्यूट (सीपीयू, मेमोरी, सैंडबॉक्स एक्ज़ीक्यूशन) के लिए बिल नहीं भेजा जाता.
सीमाएं
- झलक की स्थिति: Antigravity एजेंट और Interactions API. सुविधाओं और स्कीमा में बदलाव हो सकता है.
- जनरेशन कॉन्फ़िगरेशन काम नहीं करता: यहां दिए गए पैरामीटर काम नहीं करते हैं और इनसे 400 गड़बड़ी मिलती है:
temperature,top_p,top_k,stop_sequences,max_output_tokens. - स्ट्रक्चर्ड आउटपुट: Antigravity एजेंट, स्ट्रक्चर्ड आउटपुट के साथ काम नहीं करता.
- उपलब्ध नहीं हैं:
file_search,computer_use, औरgoogle_mapsकी सुविधाएं अभी उपलब्ध नहीं हैं. - रिमोट एमसीपी की सीमाएं: Server-Sent Events (एसएसई) ट्रांसपोर्ट मौजूद नहीं है (स्ट्रीम किए जा सकने वाले एचटीटीपी का इस्तेमाल करें). इसके अलावा, सर्वर
nameपूरी तरह से लोअरकेस और अल्फ़ान्यूमेरिक होना चाहिए. अपरकेस अक्षरों का इस्तेमाल करने पर, सामान्य400 Bad Requestगड़बड़ी ट्रिगर होती है. - फ़ाइल सिस्टम टूल: फ़िलहाल, कोई फ़ाइल सिस्टम टूल उपलब्ध नहीं है. यह
environmentका हिस्सा है. - स्टोर से जुड़ी ज़रूरी शर्तें:
background=Trueका इस्तेमाल करके एजेंट को रन करने के लिए,store=Trueज़रूरी है. - सिर्फ़ स्टेटफ़ुल मोड में फ़ंक्शन कॉल करने की सुविधा: फ़ंक्शन कॉल करने की सुविधा सिर्फ़ स्टेटफ़ुल मोड में उपलब्ध है. बातचीत जारी रखने के लिए, आपको
previous_interaction_idका इस्तेमाल करना होगा. इतिहास को मैन्युअल तरीके से फिर से बनाने (स्टेटलेस मोड) की सुविधा मौजूद नहीं है. - मल्टीमॉडल के ऐसे टाइप जिनका इस्तेमाल नहीं किया जा सकता. फ़िलहाल, ऑडियो, वीडियो, और दस्तावेज़ के इनपुट इस्तेमाल नहीं किए जा सकते. सिर्फ़ टेक्स्ट और इमेज का इस्तेमाल किया जा सकता है.
आगे क्या करना है
- क्विकस्टार्ट: सिलसिलेवार बातचीत और स्ट्रीमिंग.
- कस्टम एजेंट बनाना: कस्टम निर्देश, स्किल, और एजेंट सेव करना.
- एनवायरमेंट: सैंडबॉक्स कॉन्फ़िगरेशन, सोर्स, नेटवर्किंग.
- Deep Research Agent: रिसर्च से जुड़े लंबे टास्क.
- Interactions API: यह एपीआई, इस सुविधा के लिए ज़रूरी है.