Gemini API

Gemini, Veo, Nano Banana वगैरह की मदद से, प्रॉम्प्ट से प्रोडक्शन तक पहुंचने का सबसे तेज़ तरीका Gemini API है. इसकी मदद से, जनरेटिव मॉडल को अपने ऐप्लिकेशन में इंटिग्रेट किया जा सकता है. इससे टेक्स्ट और इमेज जनरेट की जा सकती हैं, टेक्स्ट, इमेज वगैरह को प्रोसेस करने वाले मॉडल के इनपुट का विश्लेषण किया जा सकता है, और बातचीत करने वाले एजेंट बनाए जा सकते हैं.

Gemini API और Gemini के मॉडल और एजेंट बनाने के लिए, Interactions API सबसे अच्छा तरीका है. ज़्यादा जानने के लिए, Interactions API खास जानकारी देखें.

Python

from google import genai

client = genai.Client()

interaction = client.interactions.create(
    model="gemini-3.5-flash",
    input="Explain how AI works in a few words"
)

print(interaction.output_text)

JavaScript

import { GoogleGenAI } from "@google/genai";

const ai = new GoogleGenAI({});

const interaction = await ai.interactions.create({
  model: "gemini-3.5-flash",
  input: "Explain how AI works in a few words",
});

console.log(interaction.output_text);

REST

curl -X POST "https://generativelanguage.googleapis.com/v1beta/interactions" \
  -H "x-goog-api-key: $GEMINI_API_KEY" \
  -H 'Content-Type: application/json' \
  -d '{
    "model": "gemini-3.5-flash",
    "input": "Explain how AI works in a few words"
  }'
बनाना शुरू करें

एपीआई पासकोड पाने और कुछ ही मिनटों में अपना पहला एपीआई कॉल करने के लिए, शुरू करने से जुड़ी हमारी गाइड देखें.


मॉडल के बारे में जानकारी

सभी देखें

सुविधाओं के बारे में जानें