Agjentët e menaxhuar në Gemini API ju lejojnë të bashkoni udhëzimet, aftësitë dhe një mjedis në një agjent të ripërdorshëm që më pas mund ta thirrni me anë të ID-së. Përcaktoni një herë një rishikues kodi, një analist të dhënash ose një robot vendosjeje dhe thirreni atë nga çdo klient pa përsëritur konfigurimin.
Python
from google import genai
client = genai.Client()
agent = client.agents.create(
id="code-reviewer",
base_agent="antigravity-preview-05-2026",
system_instruction="You are a senior code reviewer. Check every file for bugs, style issues, and security vulnerabilities.",
base_environment={
"type": "remote",
"sources": [
{
"type": "repository",
"source": "https://github.com/my-org/backend",
"target": "/workspace/repo",
}
],
},
)
result = client.interactions.create(
agent="code-reviewer",
input="Review the latest changes in /workspace/repo/src and file a summary.",
environment="remote",
)
print(result.output_text)
JavaScript
import { GoogleGenAI } from "@google/genai";
const client = new GoogleGenAI({});
const agent = await client.agents.create({
id: "code-reviewer",
base_agent: "antigravity-preview-05-2026",
system_instruction: "You are a senior code reviewer. Check every file for bugs, style issues, and security vulnerabilities.",
base_environment: {
type: "remote",
sources: [
{
type: "repository",
source: "https://github.com/my-org/backend",
target: "/workspace/repo",
}
],
},
});
const result = await client.interactions.create({
agent: "code-reviewer",
input: "Review the latest changes in /workspace/repo/src and file a summary.",
environment: "remote",
}, { timeout: 300000 });
console.log(result.output_text);
PUSHTIM
curl -X POST "https://generativelanguage.googleapis.com/v1beta/agents" \
-H "Content-Type: application/json" \
-H "x-goog-api-key: $GEMINI_API_KEY" \
-H "Api-Revision: 2026-05-20" \
-d '{
"id": "code-reviewer",
"base_agent": "antigravity-preview-05-2026",
"system_instruction": "You are a senior code reviewer. Check every file for bugs, style issues, and security vulnerabilities.",
"base_environment": {
"type": "remote",
"sources": [
{
"type": "repository",
"source": "https://github.com/my-org/backend",
"target": "/workspace/repo"
}
]
}
}'
curl -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": "code-reviewer",
"input": "Review the latest changes in /workspace/repo/src and file a summary.",
"environment": "remote"
}'
Krijo një agjent të menaxhuar
Një agjent i menaxhuar kombinon një base_agent , një system_instruction , një base_environment dhe tools në një konfigurim të vetëm që ju e thirrni me ID. Hardware i agjentit Antigravity siguron kohën e ekzekutimit. Në çdo thirrje, platforma e ndan base_environment në një sandbox të ri me të gjitha aftësitë e base_agent (ekzekutimi i kodit, menaxhimi i skedarëve, qasja në internet).
Mund të krijoni një agjent nga burime , si Git, Cloud Storage ose inline, ose të krijoni një degëzim nga një mjedis që e keni konfiguruar tashmë. Nga burimet Specifikoni system_instruction dhe base_environment me burimet. Platforma ofron një sandbox të ri me skedarët tuaj në çdo thirrje. Shihni Mjediset për llojet e burimeve të disponueshme (Git, Cloud Storage, inline).
Python
from google import genai
client = genai.Client()
agent = client.agents.create(
id="data-analyst",
base_agent="antigravity-preview-05-2026",
system_instruction="You are a data analyst. Always include visualizations and export results as PDF.",
base_environment={
"type": "remote",
"sources": [
{
"type": "inline",
"target": ".agents/AGENTS.md", # This is appended to the system instruction
"content": "Always use matplotlib for charts. Include a summary table in every report.",
},
{
"type": "inline",
"target": ".agents/skills/slide-maker/SKILL.md",
"content": "---\nname: slide-maker\n---\n# Slide Maker\nCreate HTML slide decks from data analysis results.",
},
{
"type": "repository",
"source": "https://github.com/my-org/analysis-templates",
"target": "/workspace/templates",
},
],
},
)
print(f"Created agent: {agent.id}")
JavaScript
import { GoogleGenAI } from "@google/genai";
const client = new GoogleGenAI({});
const agent = await client.agents.create({
id: "data-analyst",
base_agent: "antigravity-preview-05-2026",
system_instruction: "You are a data analyst. Always include visualizations and export results as PDF.",
base_environment: {
type: "remote",
sources: [
{
type: "inline",
target: ".agents/AGENTS.md",
content: "Always use matplotlib for charts. Include a summary table in every report.",
},
{
type: "inline",
target: ".agents/skills/slide-maker/SKILL.md",
content: "---\nname: slide-maker\n---\n# Slide Maker\nCreate HTML slide decks from data analysis results.",
},
{
type: "repository",
source: "https://github.com/my-org/analysis-templates",
target: "/workspace/templates",
},
],
},
});
console.log(`Created agent: ${agent.id}`);
PUSHTIM
curl -X POST "https://generativelanguage.googleapis.com/v1beta/agents" \
-H "Content-Type: application/json" \
-H "x-goog-api-key: $GEMINI_API_KEY" \
-H "Api-Revision: 2026-05-20" \
-d '{
"id": "data-analyst",
"base_agent": "antigravity-preview-05-2026",
"system_instruction": "You are a data analyst. Always include visualizations and export results as PDF.",
"base_environment": {
"type": "remote",
"sources": [
{
"type": "inline",
"target": ".agents/AGENTS.md",
"content": "Always use matplotlib for charts. Include a summary table in every report."
},
{
"type": "inline",
"target": ".agents/skills/slide-maker/SKILL.md",
"content": "---\nname: slide-maker\n---\n# Slide Maker\nCreate HTML slide decks from data analysis results."
},
{
"type": "repository",
"source": "https://github.com/my-org/analysis-templates",
"target": "/workspace/templates"
}
]
}
}'
Nga një mjedis ekzistues (fork)
Përsëriteni me agjentin bazë Antigravity derisa mjedisi të jetë i duhuri (paketat e instaluara, skedarët në vend), pastaj transferojeni atë në një agjent të menaxhuar.
Python
from google import genai
client = genai.Client()
# Step 1: set up the environment interactively
interaction = client.interactions.create(
agent="antigravity-preview-05-2026",
input="Install pandas, matplotlib, and seaborn. Create an analysis template at /workspace/template.py.",
environment="remote",
)
# Step 2: fork that environment into a named agent
agent = client.agents.create(
id="my-data-analyst",
base_agent="antigravity-preview-05-2026",
system_instruction="You are a data analyst. Use the template at /workspace/template.py for all reports.",
base_environment=interaction.environment_id,
)
print(f"Forked agent successfully: {agent.id}")
JavaScript
import { GoogleGenAI } from "@google/genai";
const client = new GoogleGenAI({});
const interaction = await client.interactions.create({
agent: "antigravity-preview-05-2026",
input: "Install pandas, matplotlib, and seaborn. Create an analysis template at /workspace/template.py.",
environment: "remote",
}, { timeout: 300000 });
const agent = await client.agents.create({
id: "my-data-analyst",
base_agent: "antigravity-preview-05-2026",
system_instruction: "You are a data analyst. Use the template at /workspace/template.py for all reports.",
base_environment: interaction.environment_id,
});
console.log(`Forked agent successfully: ${agent.id}`);
PUSHTIM
curl -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": "Install pandas, matplotlib, and seaborn. Create an analysis template at /workspace/template.py.",
"environment": "remote"
}'
Konfigurimi i rregullave të rrjetit
Mund të përdorni fushën e network për të kufizuar trafikun dalës në domene specifike. Kredencialet kalojnë përmes proxy-t të daljes dhe nuk ekspozohen kurrë brenda sandbox-it. Për më shumë informacion rreth konfigurimit të aksesit në rrjet, shihni Konfigurimin e Rrjetit në dokumentin e Mjediseve:
Python
from google import genai
client = genai.Client()
agent = client.agents.create(
id="issue-resolver",
base_agent="antigravity-preview-05-2026",
system_instruction="You resolve GitHub issues. Clone the repo, find the bug, write the fix, run the tests, and open a PR.",
base_environment={
"type": "remote",
"sources": [
{
"type": "repository",
"source": "https://github.com/my-org/backend",
"target": "/workspace/repo",
}
],
"network": {
"allowlist": [
{
"domain": "api.github.com",
"transform": {
"Authorization": "Basic YOUR_BASE64_TOKEN"
},
},
{"domain": "pypi.org"},
]
},
},
)
print(f"Created issue-resolver agent successfully: {agent.id}")
JavaScript
import { GoogleGenAI } from "@google/genai";
const client = new GoogleGenAI({});
const agent = await client.agents.create({
id: "issue-resolver",
base_agent: "antigravity-preview-05-2026",
system_instruction: "You resolve GitHub issues. Clone the repo, find the bug, write the fix, run the tests, and open a PR.",
base_environment: {
type: "remote",
sources: [
{
type: "repository",
source: "https://github.com/my-org/backend",
target: "/workspace/repo",
}
],
network: {
allowlist: [
{
domain: "api.github.com",
transform: {
"Authorization": "Basic YOUR_BASE64_TOKEN"
},
},
{ domain: "pypi.org" },
]
}
},
});
console.log(`Created issue-resolver agent successfully: ${agent.id}`);
PUSHTIM
curl -X POST "https://generativelanguage.googleapis.com/v1beta/agents" \
-H "Content-Type: application/json" \
-H "x-goog-api-key: $GEMINI_API_KEY" \
-H "Api-Revision: 2026-05-20" \
-d '{
"id": "issue-resolver",
"base_agent": "antigravity-preview-05-2026",
"system_instruction": "You resolve GitHub issues. Clone the repo, find the bug, write the fix, run the tests, and open a PR.",
"base_environment": {
"type": "remote",
"sources": [
{
"type": "repository",
"source": "https://github.com/my-org/backend",
"target": "/workspace/repo"
}
],
"network": {
"allowlist": [
{
"domain": "api.github.com",
"transform": {
"Authorization": "Basic YOUR_BASE64_TOKEN"
}
},
{"domain": "pypi.org"}
]
}
}
}'
Kur vendoset një listë lejimesh, lejohen vetëm kërkesat për domenet e listuara. Shihni Mjediset: Konfigurimi i rrjetit për skemën e plotë të listës së lejimeve dhe modelet e kredencialeve. Mund të përdorni shenja të ndyra për të përputhur nën-domenet (p.sh., {"domain": "*.example.com"} ), por vini re se kjo nuk përputhet me domenin rrënjë example.com , i cili duhet të shtohet veçmas. Për të lejuar të gjithë trafikun tjetër, siç është drejtimi i domeneve të palistuara pa tituj të injektuar, shtoni {"domain": "*"} si një hyrje gjithëpërfshirëse.
Referenca e përkufizimit të agjentit
Tabela e mëposhtme përshkruan të gjithë parametrat e konfigurueshëm në një agjent:
| Fushë | Lloji | E detyrueshme | Përshkrimi |
|---|---|---|---|
id | varg | Po | Identifikues unik i agjentit. Përdoret për të thirrur agjentin. |
description | varg | Jo | Përshkrim i agjentit i lexueshëm nga njeriu. |
base_agent | varg | Po | ID e agjentit bazë (p.sh., antigravity-preview-05-2026 ). |
system_instruction | varg | Jo | Kërkesa e sistemit që përcakton sjelljen dhe personalitetin. |
tools | varg ose objekt | Jo | Mjetet që agjenti mund të përdorë, të lëna jashtë, do të kenë qasje në code_execution , google_search dhe url_context . |
base_environment | varg ose objekt | Jo | "remote" , një environment_id ose një objekt konfigurimi me sources dhe network . Shihni Mjediset. |
Udhëzime për sistemin: AGENTS.md
Pajisja kërkon dy shtigje për AGENTS.md në fillim:
| Shteg | Fushëveprimi |
|---|---|
.agents/AGENTS.md | Rrënja aktuale e hapësirës së punës. |
/.agents/AGENTS.md | Rrënja e sistemit të skedarëve. |
Nëse të dyja ekzistojnë, të dyja ngarkohen si udhëzime të sistemit.
Për të montuar një AGENTS.md duke përdorur një burim të brendshëm:
Python
from google import genai
client = genai.Client()
agent = client.agents.create(
id="styled-writer",
base_agent="antigravity-preview-05-2026",
base_environment={
"type": "remote",
"sources": [
{
"type": "inline",
"target": ".agents/AGENTS.md",
"content": "# Writing Style\n\n- Use active voice\n- Keep paragraphs under 3 sentences\n- Include code examples for every concept",
},
],
},
)
print(f"Created styled-writer agent: {agent.id}")
JavaScript
import { GoogleGenAI } from "@google/genai";
const client = new GoogleGenAI({});
const agent = await client.agents.create({
id: "styled-writer",
base_agent: "antigravity-preview-05-2026",
base_environment: {
type: "remote",
sources: [
{
type: "inline",
target: ".agents/AGENTS.md",
content: "# Writing Style\n\n- Use active voice\n- Keep paragraphs under 3 sentences\n- Include code examples for every concept",
},
],
},
});
console.log(`Created styled-writer agent: ${agent.id}`);
PUSHTIM
curl -X POST "https://generativelanguage.googleapis.com/v1beta/agents" \
-H "Content-Type: application/json" \
-H "x-goog-api-key: $GEMINI_API_KEY" \
-H "Api-Revision: 2026-05-20" \
-d '{
"id": "styled-writer",
"base_agent": "antigravity-preview-05-2026",
"base_environment": {
"type": "remote",
"sources": [
{
"type": "inline",
"target": ".agents/AGENTS.md",
"content": "# Writing Style\n\n- Use active voice\n- Keep paragraphs under 3 sentences\n- Include code examples for every concept"
}
]
}
}'
Aftësi: SKILL.md
Aftësitë janë skedarë që zgjerojnë aftësitë e agjentit. Vendosini ato nën .agents/skills/<skill-name>/SKILL.md dhe harness-i i zbulon dhe i regjistron automatikisht ato.
.agents/
├── AGENTS.md
└── skills/
└── slide-maker/
└── SKILL.md
Për të montuar një aftësi duke përdorur burimin inline:
Python
from google import genai
client = genai.Client()
agent = client.agents.create(
id="presenter",
base_agent="antigravity-preview-05-2026",
system_instruction="You create presentations from data.",
base_environment={
"type": "remote",
"sources": [
{
"type": "inline",
"target": ".agents/skills/slide-maker/SKILL.md",
"content": "---\nname: slide-maker\ndescription: Create HTML slide decks\n---\n# Slide Maker\n\nWhen asked to create a presentation:\n1. Analyze the input data\n2. Create an HTML slide deck with reveal.js\n3. Save to /workspace/output/slides.html",
},
],
},
)
print(f"Created presenter: {agent.id}")
JavaScript
import { GoogleGenAI } from "@google/genai";
const client = new GoogleGenAI({});
const agent = await client.agents.create({
id: "presenter",
base_agent: "antigravity-preview-05-2026",
system_instruction: "You create presentations from data.",
base_environment: {
type: "remote",
sources: [
{
type: "inline",
target: ".agents/skills/slide-maker/SKILL.md",
content: "---\nname: slide-maker\ndescription: Create HTML slide decks\n---\n# Slide Maker\n\nWhen asked to create a presentation:\n1. Analyze the input data\n2. Create an HTML slide deck with reveal.js\n3. Save to /workspace/output/slides.html",
},
],
},
});
console.log(`Created presenter: ${agent.id}`);
PUSHTIM
# Create agent with skill
curl -X POST "https://generativelanguage.googleapis.com/v1beta/agents" \
-H "Content-Type: application/json" \
-H "x-goog-api-key: $GEMINI_API_KEY" \
-H "Api-Revision: 2026-05-20" \
-d '{
"id": "presenter",
"base_agent": "antigravity-preview-05-2026",
"system_instruction": "You create presentations from data.",
"base_environment": {
"type": "remote",
"sources": [
{
"type": "inline",
"target": ".agents/skills/slide-maker/SKILL.md",
"content": "---\nname: slide-maker\ndescription: Create HTML slide decks\n---\n# Slide Maker\n\nWhen asked to create a presentation:\n1. Analyze the input data\n2. Create an HTML slide deck with reveal.js\n3. Save to /workspace/output/slides.html"
}
]
}
}'
Thirrni agjentin
Për të thirrur agjentin tuaj të menaxhuar të personalizuar, thirrni client.interactions.create me ID-në e agjentit tuaj. Çdo thirrje përplaset me mjedisin bazë, kështu që çdo ekzekutim fillon i pastër.
Python
result = client.interactions.create(
agent="data-analyst",
input="Analyze Q1 revenue data from /workspace/templates/sample.csv and create a slide deck.",
environment="remote",
)
print(result.output_text)
JavaScript
const result = await client.interactions.create({
agent: "data-analyst",
input: "Analyze Q1 revenue data from /workspace/templates/sample.csv and create a slide deck.",
environment: "remote",
}, { timeout: 300000 });
console.log(result.output_text);
PUSHTIM
curl -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": "data-analyst",
"input": "Analyze Q1 revenue data from /workspace/templates/sample.csv and create a slide deck.",
"environment": "remote"
}'
Për biseda dhe transmetime me shumë kthesa, shihni Fillimin e Shpejtë . Të njëjtat modele previous_interaction_id dhe environment zbatohen edhe për agjentët e menaxhuar.
Konfigurimi mbivendoset gjatë thirrjes
Mund të anashkaloni system_instruction dhe tools e parazgjedhura të agjentit kur krijoni një bashkëveprim. Kjo ju lejon të modifikoni sjelljen ose aftësitë e agjentit për një ekzekutim specifik pa ndryshuar përkufizimin e ruajtur të agjentit.
Python
result = client.interactions.create(
agent="data-analyst",
input="Analyze Q1 revenue data, but do not create a slide deck. Just output a summary table.",
system_instruction="You are a data analyst. Focus ONLY on summary tables. Ignore default instructions about slides.",
tools=[{"type": "code_execution"}], # Override to only use code execution
environment="remote",
)
print(result.output_text)
JavaScript
const result = await client.interactions.create({
agent: "data-analyst",
input: "Analyze Q1 revenue data, but do not create a slide deck. Just output a summary table.",
system_instruction: "You are a data analyst. Focus ONLY on summary tables. Ignore default instructions about slides.",
tools: [{ type: "code_execution" }], // Override to only use code execution
environment: "remote",
}, { timeout: 300000 });
console.log(result.output_text);
PUSHTIM
curl -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": "data-analyst",
"input": "Analyze Q1 revenue data, but do not create a slide deck. Just output a summary table.",
"system_instruction": "You are a data analyst. Focus ONLY on summary tables. Ignore default instructions about slides.",
"tools": [{"type": "code_execution"}],
"environment": "remote"
}'
Menaxho agjentët
Ju mund të listoni, merrni dhe fshini agjentë.
Agjentët e listës
Python
agents = client.agents.list()
for a in agents.agents:
print(f"{a.id}: {a.description}")
JavaScript
const agents = await client.agents.list();
if (agents.agents) {
for (const a of agents.agents) {
console.log(`${a.id}: ${a.description}`);
}
}
PUSHTIM
curl -X GET "https://generativelanguage.googleapis.com/v1beta/agents" \
-H "x-goog-api-key: $GEMINI_API_KEY"
Merrni një agjent
Python
agent = client.agents.get(id="data-analyst")
print(agent)
JavaScript
const agent = await client.agents.get("data-analyst");
console.log(agent);
PUSHTIM
curl -X GET "https://generativelanguage.googleapis.com/v1beta/agents/data-analyst" \
-H "x-goog-api-key: $GEMINI_API_KEY"
Fshi një agjent
Fshirja e heq konfigurimin. Mjediset ekzistuese dhe ndërveprimet e krijuara nga agjenti nuk preken.
Python
client.agents.delete(id="data-analyst")
JavaScript
await client.agents.delete("data-analyst");
PUSHTIM
curl -X DELETE "https://generativelanguage.googleapis.com/v1beta/agents/data-analyst" \
-H "x-goog-api-key: $GEMINI_API_KEY"
Fluksi i punës iteracionale
- Prototip me agjentin bazë Antigravitacion. Testoni udhëzimet, aftësitë dhe konfigurimin e mjedisit në mënyrë interaktive.
- Stabilizoni mjedisin. Instaloni paketa, montoni burimet, verifikoni që gjithçka funksionon.
- Vazhdoni si një agjent i menaxhuar me
client.agents.create, qoftë nga burimet ose duke ndarë mjedisin. - Përditësoni përkufizimin e agjentit. Ndryshoni
system_instruction, ndërroni aftësitë ose shtoni burimet. Thirrja tjetër merr konfigurimin e ri.
Kufizime
- Statusi i pamjes paraprake : Agjentët e menaxhuar janë në pamje paraprake. Karakteristikat dhe skemat mund të ndryshojnë.
- Agjent bazë : Vetëm
antigravity-preview-05-2026mbështetet sibase_agent. - Pa versionim : Versionimi dhe rikthimi i agjentit nuk janë ende të disponueshme.
- Pa folezim të subagjentëve : Delegimi i subagjentëve nuk mbështetet ende.
- Mund të keni deri në 1000 agjentë të menaxhuar për projekt në çdo kohë.
Çfarë vjen më pas
- Përmbledhje e Agjentëve : Mësoni rreth koncepteve kryesore të agjentëve të menaxhuar.
- Fillim i shpejtë : Filloni ndërtimin me biseda dhe transmetime me shumë kthesa.
- Agjent Antigravitacional : Eksploroni aftësitë, mjetet dhe çmimet për agjentin parazgjedhur.
- Mjediset e Agjentëve : Konfiguroni sandbox-et, burimet dhe rrjetëzimin.