v1beta Interactions API में बड़े बदलाव किए जा रहे हैं. इससे एपीआई के स्ट्रक्चर में बदलाव होगा. इससे, फ़्लाइट के बीच में बदलाव करने और एसिंक्रोनस टूल कॉल जैसी सुविधाओं को इस्तेमाल किया जा सकेगा. इस पेज पर बताया गया है कि क्या बदलाव हो रहा है. साथ ही, माइग्रेट करने में आपकी मदद करने के लिए, कोड के पहले और बाद के उदाहरण दिए गए हैं. बदलावों की दो कैटगरी होती हैं:
- चरणों का स्कीमा: नया
stepsऐरे,outputsऐरे की जगह लेता है. इससे हर इंटरैक्शन टर्न की स्ट्रक्चर्ड टाइमलाइन मिलती है. - आउटपुट फ़ॉर्मैट कॉन्फ़िगरेशन: एक नया पॉलीमॉर्फ़िक
response_format, आउटपुट फ़ॉर्मैट के सभी कंट्रोल को एक साथ जोड़ता है औरresponse_mime_typeको हटाता है.
अपने इंटिग्रेशन को अपडेट करने के लिए, नए स्कीमा पर माइग्रेट करने का तरीका में दिया गया तरीका अपनाएं.
मुख्य बदलाव: outputs से steps
नए स्कीमा में, outputs ऐरे की जगह steps ऐरे का इस्तेमाल किया जाता है.
- लेगसी: जवाब में, फ़्लैट
outputsकलेक्शन दिखाया जाता था. इसमें सिर्फ़ मॉडल से जनरेट किया गया कॉन्टेंट होता था. - नया स्कीमा: जवाबों में
stepsअरे दिखता है. इसमें टाइप डिसक्रिमिनेटर के साथ स्ट्रक्चर्ड चरण शामिल होते हैं.
POST /interactions सिर्फ़ आउटपुट के चरण दिखाता है. GET /interactions/{id}
पूरे चरण की टाइमलाइन दिखाता है. इसमें शुरुआती user_input चरण भी शामिल है.
बेसिक इनपुट/आउटपुट (यूनरी)
पहले (लेगसी)
Python
# Request
interaction = client.interactions.create(
model="gemini-3-flash-preview", input="Tell me a joke."
)
# Response access
print(interaction.outputs[-1].text)
JavaScript
// Request
const interaction = await client.interactions.create({
model: 'gemini-3-flash-preview',
input: 'Tell me a joke.'
});
// Response access
console.log(interaction.outputs[-1].text);
REST
curl -X POST "https://generativelanguage.googleapis.com/v1beta/interactions?key=$GEMINI_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"model": "gemini-3-flash-preview",
"input": "Tell me a joke."
}'
// Response
{
"id": "int_123",
"role": "model",
"outputs": [
{
"type": "text",
"text": "Why did the chicken cross the road?"
}
]
}
(नए स्कीमा) के बाद
Python
# Request
interaction = client.interactions.create(
model="gemini-3-flash-preview", input="Tell me a joke."
)
# Response access
print(interaction.steps[-1].content[0].text) # CHANGED: steps instead of outputs
JavaScript
// Request
const interaction = await client.interactions.create({
model: 'gemini-3-flash-preview',
input: 'Tell me a joke.'
});
// Response access
console.log(interaction.steps.at(-1).content[0].text);
REST
# Opt-in needed before May 26th
curl -X POST "https://generativelanguage.googleapis.com/v1beta/interactions?key=$GEMINI_API_KEY" \
-H "Content-Type: application/json" \
-H "Api-Revision: 2026-05-20" \
-d '{
"model": "gemini-3-flash-preview",
"input": "Tell me a joke."
}'
// POST Response
{
"id": "int_123",
"steps": [
{
"type": "model_output",
"content": [
{
"type": "text",
"text": "Why did the chicken cross the road?"
}
]
}
]
}
// GET /v1beta/interactions/int_123 (returns full timeline including input)
{
"id": "int_123",
"steps": [
{
"type": "user_input",
"content": [
{ "type": "text", "text": "Tell me a joke." }
]
},
{
"type": "model_output",
"content": [
{
"type": "text",
"text": "Why did the chicken cross the road?"
}
]
}
]
}
फ़ंक्शन कॉल करने की सुविधा
अनुरोध के स्ट्रक्चर में कोई बदलाव नहीं होता. हालांकि, जवाब में फ़्लैट outputs कॉन्टेंट की जगह स्ट्रक्चर्ड चरणों का इस्तेमाल किया जाता है.
पहले (लेगसी)
Python
# Accessing function call in legacy schema
for output in interaction.outputs:
if output.type == "function_call":
print(f"Calling {output.name} with {output.arguments}")
JavaScript
// Accessing function call in legacy schema
for (const output of interaction.outputs) {
if (output.type === 'function_call') {
console.log(`Calling {output.name} with {JSON.stringify(output.arguments)}`);
}
}
REST
// Response
{
"id": "int_001",
"role": "model",
"status": "requires_action",
"outputs": [
{
"type": "thought",
"signature": "abc123..."
},
{
"type": "function_call",
"id": "fc_1",
"name": "get_weather",
"arguments": { "location": "Boston, MA" }
}
]
}
(नए स्कीमा) के बाद
Python
# Accessing function call in new steps schema
for step in interaction.steps:
if step.type == "function_call":
print(f"Calling {step.name} with {step.arguments}")
JavaScript
// Accessing function call in new steps schema
for (const step of interaction.steps) {
if (step.type === 'function_call') {
console.log(`Calling {step.name} with {JSON.stringify(step.arguments)}`);
}
}
REST
// POST Response
{
"id": "int_001",
"status": "requires_action",
"steps": [
{
"type": "thought",
"summary": [{
"type": "text",
"text": "I need to check the weather in Boston..."
}],
"signature": "abc123..."
},
{
"type": "function_call",
"id": "fc_1",
"name": "get_weather",
"arguments": { "location": "Boston, MA" }
}
]
}
सर्वर-साइड टूल
सर्वर साइड टूल (जैसे, Google Search या कोड एक्ज़ीक्यूशन) अब steps ऐरे में खास तरह के चरण देते हैं. लेगसी स्कीमा में, इन कार्रवाइयों को outputs कलेक्शन में कॉन्टेंट टाइप के तौर पर दिखाया जाता था. हालांकि, नए स्कीमा में इन्हें steps कलेक्शन में ले जाया जाता है. यहां दिए गए उदाहरणों में, Google Search का इस्तेमाल किया गया है.
पहले (लेगसी)
Python
# Accessing search results in legacy schema
for output in interaction.outputs:
if output.type == "google_search_call":
print(f"Searched for: {output.arguments.queries}")
elif output.type == "google_search_result":
print(f"Found results: {output.result.rendered_content}")
JavaScript
// Accessing search results in legacy schema
for (const output of interaction.outputs) {
if (output.type === 'google_search_call') {
console.log(`Searched for: {output.arguments.queries}`);
} else if (output.type === 'google_search_result') {
console.log(`Found results: {output.result.renderedContent}`);
}
}
REST
curl -X POST "https://generativelanguage.googleapis.com/v1beta/interactions?key=$GEMINI_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"model": "gemini-3-flash-preview",
"input": "Who won the last Super Bowl?",
"tools": [
{ "type": "google_search" }
]
}'
// Response
{
"id": "int_456",
"outputs": [
{
"type": "google_search_call",
"id": "gs_1",
"arguments": { "queries": ["last Super Bowl winner"] }
},
{
"type": "google_search_result",
"call_id": "gs_1",
"result": {
"rendered_content": "<div>...</div>",
"url": "https://www.nfl.com/super-bowl"
}
},
{
"type": "text",
"text": "The Kansas City Chiefs won the last Super Bowl.",
"annotations": [
{
"start_index": 4,
"end_index": 22,
"source": "https://www.nfl.com/super-bowl"
}
]
}
],
"status": "completed"
}
(नए स्कीमा) के बाद
Python
# Accessing search results in new steps schema
for step in interaction.steps:
if step.type == "google_search_call":
print(f"Searched for: {step.arguments.queries}")
elif step.type == "google_search_result":
print(f"Found results: {step.result.search_suggestions}")
JavaScript
// Accessing search results in new steps schema
for (const step of interaction.steps) {
if (step.type === 'google_search_call') {
console.log(`Searched for: {step.arguments.queries}`);
} else if (step.type === 'google_search_result') {
console.log(`Found results: {step.result.searchSuggestions}`);
}
}
REST
# Opt-in needed before May 26th
curl -X POST "https://generativelanguage.googleapis.com/v1beta/interactions?key=$GEMINI_API_KEY" \
-H "Content-Type: application/json" \
-H "Api-Revision: 2026-05-20" \
-d '{
"model": "gemini-3-flash-preview",
"input": "Who won the last Super Bowl?",
"tools": [
{ "type": "google_search" }
]
}'
// POST Response
{
"id": "int_456",
"steps": [
{
"type": "google_search_call",
"id": "gs_1",
"arguments": { "queries": ["last Super Bowl winner"] },
"signature": "abc123..."
},
{
"type": "google_search_result",
"call_id": "gs_1",
"result": {
"search_suggestions": "<div>...</div>"
},
"signature": "abc123..."
},
{
"type": "model_output",
"content": [
{
"type": "text",
"text": "The Kansas City Chiefs won the last Super Bowl.",
"annotations": [
{
"type": "url_citation",
"url": "https://www.nfl.com/super-bowl",
"title": "NFL.com",
"start_index": 4,
"end_index": 22
}
]
}
]
}
],
"status": "completed"
}
स्ट्रीमिंग
स्ट्रीमिंग से नए इवेंट टाइप का पता चलता है:
इवेंट के नए टाइप
interaction.createdinteraction.completedinteraction.in_progressinteraction.requires_actioninteraction.errorstep.startstep.deltastep.stop
इवेंट के ऐसे टाइप जो अब काम नहीं करते
ऊपर दिए गए नए इवेंट, लेगसी इवेंट के इन टाइप की जगह इस्तेमाल किए जाते हैं:
interaction.start→interaction.createdcontent.start→step.startcontent.delta→step.deltacontent.stop→step.stopinteraction.complete→interaction.completederror→interaction.errorinteraction.status_update→ इसकी जगहinteraction.in_progress,interaction.requires_actionवगैरह का इस्तेमाल किया जाता है
फ़ंक्शन कॉल की स्ट्रीमिंग: फ़ंक्शन कॉल के साथ स्ट्रीमिंग का इस्तेमाल करने पर, step.start इवेंट फ़ंक्शन का नाम डिलीवर करता है. साथ ही, step.delta इवेंट, आर्ग्युमेंट को आंशिक JSON स्ट्रिंग के तौर पर स्ट्रीम करते हैं (arguments_delta का इस्तेमाल करके). पूरे आर्ग्युमेंट पाने के लिए, आपको इन डेल्टा को इकट्ठा करना होगा. यह यूनेरी कॉल से अलग है, जहां आपको फ़ंक्शन कॉल ऑब्जेक्ट एक साथ मिलता है.
उदाहरण
पहले (लेगसी)
Python
# Legacy streaming used content.delta
stream = client.interactions.create(
model="gemini-3-flash-preview",
input="Explain quantum entanglement in simple terms.",
stream=True,
)
for chunk in stream:
if chunk.event_type == "content.delta":
if chunk.delta.type == "text":
print(chunk.delta.text, end="", flush=True)
JavaScript
// Legacy streaming used content.delta
const stream = await client.interactions.create({
model: 'gemini-3-flash-preview',
input: 'Explain quantum entanglement in simple terms.',
stream: true,
});
for await (const chunk of stream) {
if (chunk.event_type === 'content.delta') {
if (chunk.delta.type === 'text') {
process.stdout.write(chunk.delta.text);
}
}
}
REST
curl -X POST "https://generativelanguage.googleapis.com/v1beta/interactions?key=$GEMINI_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"model": "gemini-3-flash-preview",
"input": "Explain quantum entanglement in simple terms.",
"stream": true
}'
// Response (SSE Lines)
// event: interaction.start
// data: {"id": "int_123", "status": "in_progress"}
//
// event: content.start
// data: {"index": 0, "type": "text"}
//
// event: content.delta
// data: {"delta": {"type": "text", "text": "Quantum entanglement is..."}}
//
// event: content.stop
// data: {"index": 0}
//
// event: interaction.complete
// data: {"id": "int_123", "status": "done", "usage": {"total_tokens": 42}}
बाद में (नया स्कीमा)
Python
# Consuming stream and handling new event types
for event in client.interactions.create(
model="gemini-3-flash-preview",
input="Tell me a story.",
stream=True,
):
if event.type == "step.delta": # CHANGED: step.delta instead of content.delta
if event.delta.type == "text":
print(event.delta.text, end="")
JavaScript
// Consuming stream and handling new event types
const stream = await client.interactions.create({
model: 'gemini-3-flash-preview',
input: 'Tell me a story.',
stream: true,
});
for await (const event of stream) {
if (event.type === 'step.delta') { // CHANGED: step.delta instead of content.delta
if (event.delta.type === 'text') {
process.stdout.write(event.delta.text);
}
}
}
REST
# Opt-in needed before May 26th
curl -X POST "https://generativelanguage.googleapis.com/v1beta/interactions?key=$GEMINI_API_KEY" \
-H "Content-Type: application/json" \
-H "Accept: text/event-stream" \
-H "Api-Revision: 2026-05-20" \
-d '{
"model": "gemini-3-flash-preview",
"input": "Tell me a story.",
"stream": true
}'
// Response (SSE Lines)
// event: interaction.created
// data: {"interaction": {"id": "int_xyz", "status": "in_progress", "object": "interaction", "model": "gemini-3-flash-preview"}, "event_type": "interaction.created"}
//
// event: interaction.in_progress
// data: {"interaction_id": "int_xyz", "event_type": "interaction.in_progress"}
//
// event: step.start
// data: {"index": 0, "step": {"type": "thought", "signature": "abc123..."}, "event_type": "step.start"}
//
// event: step.stop
// data: {"index": 0, "event_type": "step.stop"}
//
// event: step.start
// data: {"index": 1, "step": {"content": [{"text": "Once upon", "type": "text"}], "type": "model_output"}, "event_type": "step.start"}
//
// event: step.delta
// data: {"index": 1, "delta": {"text": " a time...", "type": "text"}, "event_type": "step.delta"}
//
// event: step.stop
// data: {"type": "step.stop", "index": 1, "status": "done"}
//
// event: interaction.completed
// data: {"type": "interaction.completed", "interaction": {"id": "int_xyz", "status": "completed", "usage": {"prompt_tokens": 10, "completion_tokens": 5, "total_tokens": 15}}} // NEW: Dedicated completion event
स्टेटलेस बातचीत का इतिहास
अगर क्लाइंट साइड पर बातचीत के इतिहास को मैन्युअल तरीके से मैनेज किया जाता है (स्टेटलेस इस्तेमाल का उदाहरण), तो आपको यह अपडेट करना होगा कि पिछले टर्न को कैसे स्ट्रिंग किया जाता है.
- लेगसी: डेवलपर अक्सर जवाबों से
outputsऐरे इकट्ठा करते थे और उन्हें अगले टर्न मेंinputफ़ील्ड में वापस भेजते थे. - नया स्कीमा: अब आपको जवाब से
stepsकलेक्शन करना होगा. इसके बाद, इसे अगले अनुरोध केinputफ़ील्ड में पास करना होगा. साथ ही, अपने नए उपयोगकर्ता के टर्न कोuser_inputचरण के तौर पर जोड़ना होगा.
आउटपुट फ़ॉर्मैट कॉन्फ़िगरेशन: response_format बदलाव
अपडेट किए गए एपीआई में, आउटपुट फ़ॉर्मैट के सभी कंट्रोल को एक ही, पॉलीमॉर्फिक response_format फ़ील्ड में शामिल किया गया है. इससे आउटपुट कॉन्फ़िगरेशन को टॉप लेवल पर सेट किया जा सकता है. साथ ही, generation_config को मॉडल के व्यवहार (जैसे कि तापमान, top_p, और सोचने की क्षमता) पर फ़ोकस करने में मदद मिलती है.
मुख्य बदलाव
- एपीआई,
response_mime_typeको हटा देता है. अबresponse_formatमें हर फ़ॉर्मैट एंट्री के लिए, MIME टाइप तय किया जा सकता है. response_formatअब एक पॉलीमॉर्फिक ऑब्जेक्ट (या ऐरे) है. हर एंट्री मेंtypeडिस्क्रिमिनेटर (text,audio,image) और टाइप के हिसाब से फ़ील्ड होते हैं. एक से ज़्यादा आउटपुट मोडेलिटी का अनुरोध करने के लिए, फ़ॉर्मैट की एंट्री का एक कलेक्शन पास करें.image_configकोgeneration_configसेresponse_formatमें ले जाया गया. अब आपको"type": "image"के साथresponse_formatएंट्री में, इमेज आउटपुट सेटिंग जैसे किaspect_ratioऔरimage_sizeतय करनी होंगी.
स्ट्रक्चर्ड आउटपुट (JSON)
नए स्कीमा में response_mime_type फ़ील्ड को हटा दिया गया है. इसके बजाय, "type": "text" के साथ response_format ऑब्जेक्ट में MIME टाइप और JSON स्कीमा तय करें.
पहले (लेगसी)
Python
interaction = client.interactions.create(
model="gemini-3-flash-preview",
input="Summarize this article.",
response_mime_type="application/json",
response_format={
"type": "object",
"properties": {
"summary": {"type": "string"}
}
},
)
print(interaction.outputs[-1].text)
JavaScript
const interaction = await client.interactions.create({
model: 'gemini-3-flash-preview',
input: 'Summarize this article.',
responseMimeType: 'application/json',
responseFormat: {
type: 'object',
properties: {
summary: { type: 'string' }
}
},
});
console.log(interaction.outputs[-1].text);
REST
curl -X POST "https://generativelanguage.googleapis.com/v1beta/interactions?key=$GEMINI_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"model": "gemini-3-flash-preview",
"input": "Summarize this article.",
"response_mime_type": "application/json",
"response_format": {
"type": "object",
"properties": {
"summary": { "type": "string" }
}
}
}'
(नए स्कीमा) के बाद
Python
interaction = client.interactions.create(
model="gemini-3-flash-preview",
input="Summarize this article.",
# response_mime_type is removed — specify mime_type inside response_format
response_format={
"type": "text",
"mime_type": "application/json",
"schema": {
"type": "object",
"properties": {
"summary": {"type": "string"}
}
}
},
)
print(interaction.steps[-1].content[0].text)
JavaScript
const interaction = await client.interactions.create({
model: 'gemini-3-flash-preview',
input: 'Summarize this article.',
// responseMimeType is removed — specify mimeType inside responseFormat
responseFormat: {
type: 'text',
mimeType: 'application/json',
schema: {
type: 'object',
properties: {
summary: { type: 'string' }
}
}
},
});
console.log(interaction.steps.at(-1).content[0].text);
REST
# Opt-in needed before May 26th
curl -X POST "https://generativelanguage.googleapis.com/v1beta/interactions?key=$GEMINI_API_KEY" \
-H "Content-Type: application/json" \
-H "Api-Revision: 2026-05-20" \
-d '{
"model": "gemini-3-flash-preview",
"input": "Summarize this article.",
"response_format": {
"type": "text",
"mime_type": "application/json",
"schema": {
"type": "object",
"properties": {
"summary": { "type": "string" }
}
}
}
}'
इमेज कॉन्फ़िगरेशन
नए स्कीमा में, generation_config से image_config को हटा दिया गया है. अब आपको response_format एंट्री में "type": "image" का इस्तेमाल करके, इमेज आउटपुट की सेटिंग तय करनी होंगी.
पहले (लेगसी)
Python
interaction = client.interactions.create(
model="gemini-3-flash-preview",
input="Generate an image of a sunset over the ocean.",
generation_config={
"image_config": {
"aspect_ratio": "1:1",
"image_size": "1K"
}
},
)
JavaScript
const interaction = await client.interactions.create({
model: 'gemini-3-flash-preview',
input: 'Generate an image of a sunset over the ocean.',
generationConfig: {
imageConfig: {
aspectRatio: '1:1',
imageSize: '1K'
}
},
});
REST
curl -X POST "https://generativelanguage.googleapis.com/v1beta/interactions?key=$GEMINI_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"model": "gemini-3-flash-preview",
"input": "Generate an image of a sunset over the ocean.",
"generation_config": {
"image_config": {
"aspect_ratio": "1:1",
"image_size": "1K"
}
}
}'
(नए स्कीमा) के बाद
Python
interaction = client.interactions.create(
model="gemini-3-flash-preview",
input="Generate an image of a sunset over the ocean.",
# image_config is removed from generation_config — use response_format
response_format={
"type": "image",
"mime_type": "image/jpeg",
"delivery": "inline",
"aspect_ratio": "1:1",
"image_size": "1K"
},
)
JavaScript
const interaction = await client.interactions.create({
model: 'gemini-3-flash-preview',
input: 'Generate an image of a sunset over the ocean.',
// imageConfig is removed from generationConfig — use responseFormat
responseFormat: {
type: 'image',
mimeType: 'image/jpeg',
delivery: 'inline',
aspectRatio: '1:1',
imageSize: '1K'
},
});
REST
# Opt-in needed before May 26th
curl -X POST "https://generativelanguage.googleapis.com/v1beta/interactions?key=$GEMINI_API_KEY" \
-H "Content-Type: application/json" \
-H "Api-Revision: 2026-05-20" \
-d '{
"model": "gemini-3-flash-preview",
"input": "Generate an image of a sunset over the ocean.",
"response_format": {
"type": "image",
"mime_type": "image/jpeg",
"delivery": "inline",
"aspect_ratio": "1:1",
"image_size": "1K"
}
}'
अगर आपको आउटपुट के लिए एक से ज़्यादा मोड (उदाहरण के लिए, टेक्स्ट और ऑडियो) का अनुरोध करना है, तो response_format को एक ऑब्जेक्ट के बजाय फ़ॉर्मैट एंट्री का ऐरे पास करें.
नए स्कीमा पर माइग्रेट करने का तरीका
एसडीके का इस्तेमाल करने वाले लोग
एसडीके टूल के नए वर्शन पर अपग्रेड करें (Python ≥2.0.0, JavaScript ≥2.0.0). एसडीके, आपको नए स्कीमा में अपने-आप ऑप्ट इन कर देता है. इसके लिए, कोड में किसी तरह का बदलाव करने की ज़रूरत नहीं होती. आपको सिर्फ़ यह अपडेट करना होता है कि जवाबों को कैसे पढ़ा जाए. इसके उदाहरण ऊपर दिए गए हैं. ध्यान दें कि इन SDK वर्शन में, सिर्फ़ नया स्कीमा इस्तेमाल किया जा सकता है. एसडीके के पुराने वर्शन (Python 1.x.x, JavaScript 1.x.x) 8 जून, 2026 को लेगसी स्कीमा हटाए जाने तक काम करते रहेंगे.
REST API का इस्तेमाल करने वाले लोग
नए स्कीमा में ऑप्ट इन करने के लिए, अपने अनुरोधों में Api-Revision: 2026-05-20 हेडर जोड़ें. 26 मई के बाद, सभी अनुरोधों के लिए नया स्कीमा डिफ़ॉल्ट रूप से लागू हो जाएगा. Api-Revision: 2026-05-07 का इस्तेमाल करके, कुछ समय के लिए ऑप्ट आउट किया जा सकता है. ऐसा 8 जून तक किया जा सकता है. इसके बाद, एपीआई लेगसी स्कीमा को हमेशा के लिए हटा देगा.
टाइमलाइन
| तारीख | फ़ेज़ (चरण) | एसडीके का इस्तेमाल करने वाले लोग | REST API का इस्तेमाल करने वाले लोग |
|---|---|---|---|
| 7 मई | ऑप्ट-इन करें | एसडीके का नया वर्शन उपलब्ध है (Python ≥2.0.0, JS ≥2.0.0). नए स्कीमा को अपने-आप पाने के लिए, अपग्रेड करें. | ऑप्ट इन करने के लिए, Api-Revision: 2026-05-20 हेडर जोड़ें. डिफ़ॉल्ट सेटिंग, लेगसी ही रहेगी. |
| 26 मई | डिफ़ॉल्ट फ़्लिप | अगर आपने पहले ही अपग्रेड कर लिया है, तो आपको कुछ करने की ज़रूरत नहीं है. SDK के पुराने वर्शन (Python 1.x.x, JS 1.x.x) अब भी काम करते हैं, लेकिन ये लेगसी वर्शन के जवाब देते हैं. | नया स्कीमा अब डिफ़ॉल्ट रूप से उपलब्ध है. ऑप्ट आउट करने के लिए, Api-Revision: 2026-05-07 हेडर भेजें. |
| 8 जून | सूर्यास्त | Python 1.x.x और JS 1.x.x SDK वर्शन के लिए, Interactions API कॉल काम नहीं करेंगे. | Interactions API के लिए, लेगसी स्कीमा हटा दिया गया है. Api-Revision हेडर को अनदेखा किया गया. |
माइग्रेशन की चेकलिस्ट
Steps schema (steps)
outputsके बजायstepsऐरे से जवाब का कॉन्टेंट पढ़ने के लिए, कोड अपडेट करें. उदाहरण देखें.- पुष्टि करें कि आपका कोड,
user_inputऔरmodel_output, दोनों तरह के चरणों को मैनेज करता हो. उदाहरण देखें. - (फ़ंक्शन कॉल करना)
stepsऐरे मेंfunction_callचरणों को ढूंढने के लिए कोड अपडेट करें. उदाहरण देखें. - (सर्वर-साइड टूल) टूल के हिसाब से कोड अपडेट करें, ताकि टूल से जुड़े चरणों को पूरा किया जा सके. जैसे,
google_search_call,google_search_result. उदाहरण देखें. - (स्टेटलेस इतिहास) इतिहास को मैनेज करने की सुविधा को अपडेट करें, ताकि अगले अनुरोध के
inputफ़ील्ड मेंstepsऐरे को पास किया जा सके. जानकारी देखें. - (सिर्फ़ स्ट्रीमिंग के लिए) नए एसएसई इवेंट टाइप (
interaction.created,step.deltaवगैरह) सुनने के लिए, क्लाइंट को अपडेट करें. उदाहरण देखें.
आउटपुट फ़ॉर्मैट कॉन्फ़िगरेशन (response_format)
response_mime_typeकोresponse_formatमें मौजूदmime_typeफ़ील्ड से बदलें. उदाहरण देखें.- अपने मौजूदा
response_formatJSON स्कीमा को{"type": "text", "schema": ...}ऑब्जेक्ट में रैप करें. उदाहरण देखें. - (इमेज जनरेट करना)
image_configकोgeneration_configसेresponse_formatमें मौजूद{"type": "image", ...}एंट्री में ले जाएं. उदाहरण देखें. - (मल्टीमॉडल) एक से ज़्यादा आउटपुट मोड का अनुरोध करते समय, किसी एक ऑब्जेक्ट से
response_formatको ऐरे में बदलें.