২০২৪ সালের শেষের দিকে জেমিনি ২.০ রিলিজ থেকে শুরু করে, আমরা গুগল জেনএআই এসডিকে (Google GenAI SDK) নামে একটি নতুন লাইব্রেরি সেট চালু করেছি। এটি একটি আপডেটেড ক্লায়েন্ট আর্কিটেকচারের মাধ্যমে ডেভেলপারদের জন্য উন্নত অভিজ্ঞতা প্রদান করে এবং ডেভেলপার ও এন্টারপ্রাইজ ওয়ার্কফ্লোর মধ্যে রূপান্তরকে সহজ করে তোলে ।
Google GenAI SDK এখন সকল সমর্থিত প্ল্যাটফর্মে সাধারণ উপলব্ধিতে (GA) উপলব্ধ । আপনি যদি আমাদের কোনো পুরোনো লাইব্রেরি ব্যবহার করে থাকেন, তবে আমরা আপনাকে মাইগ্রেট করার জন্য দৃঢ়ভাবে সুপারিশ করছি।
এই নির্দেশিকাটি আপনাকে কাজ শুরু করতে সাহায্য করার জন্য মাইগ্রেট করা কোডের আগের ও পরের উদাহরণ প্রদান করে।
ইনস্টলেশন
আগে
পাইথন
pip install -U -q "google-generativeai"
জাভাস্ক্রিপ্ট
npm install @google/generative-ai
যান
go get github.com/google/generative-ai-go
জাভা
<dependency>
<groupId>com.google.ai.client.generativeai</groupId>
<artifactId>generativeai</artifactId>
<version>0.9.0</version>
</dependency>
পরে
পাইথন
pip install -U -q "google-genai"
জাভাস্ক্রিপ্ট
npm install @google/genai
যান
go get google.golang.org/genai
জাভা
<dependency>
<groupId>com.google.genai</groupId>
<artifactId>google-genai</artifactId>
<version>1.67.0</version>
</dependency>
এপিআই অ্যাক্সেস
পুরানো SDK-টি বিভিন্ন অ্যাড-হক মেথড ব্যবহার করে নেপথ্যে API ক্লায়েন্টকে পরোক্ষভাবে পরিচালনা করত। এর ফলে ক্লায়েন্ট এবং ক্রেডেনশিয়াল পরিচালনা করা কঠিন ছিল। এখন, আপনি একটি কেন্দ্রীয় Client অবজেক্টের মাধ্যমে ইন্টারঅ্যাক্ট করেন। এই Client অবজেক্টটি বিভিন্ন API সার্ভিসের (যেমন, models , chats , files , tunings ) জন্য একটি একক এন্ট্রি পয়েন্ট হিসেবে কাজ করে, যা সামঞ্জস্যতা বাড়ায় এবং বিভিন্ন API কলের মধ্যে ক্রেডেনশিয়াল ও কনফিগারেশন ম্যানেজমেন্টকে সহজ করে তোলে।
পূর্বে (কম কেন্দ্রীভূত এপিআই অ্যাক্সেস)
পাইথন
পুরানো SDK-তে বেশিরভাগ API কলের জন্য স্পষ্টভাবে কোনো টপ-লেভেল ক্লায়েন্ট অবজেক্ট ব্যবহার করা হতো না। আপনাকে সরাসরি GenerativeModel অবজেক্ট ইনস্ট্যানশিয়েট করতে এবং সেগুলোর সাথে ইন্টারঅ্যাক্ট করতে হতো।
import google.generativeai as genai
# Directly create and use model objects
model = genai.GenerativeModel('gemini-3.8-flash')
response = model.generate_content(...)
chat = model.start_chat(...)
জাভাস্ক্রিপ্ট
যদিও GoogleGenerativeAI মডেল এবং চ্যাটের জন্য একটি কেন্দ্রীয় বিন্দু ছিল, ফাইল ও ক্যাশ ব্যবস্থাপনার মতো অন্যান্য কার্যকারিতার জন্য প্রায়শই সম্পূর্ণ আলাদা ক্লায়েন্ট ক্লাস ইম্পোর্ট এবং ইনস্ট্যানশিয়েট করার প্রয়োজন হতো।
import { GoogleGenerativeAI } from "@google/generative-ai";
import { GoogleAIFileManager, GoogleAICacheManager } from "@google/generative-ai/server"; // For files/caching
const genAI = new GoogleGenerativeAI("GEMINI_API_KEY");
const fileManager = new GoogleAIFileManager("GEMINI_API_KEY");
const cacheManager = new GoogleAICacheManager("GEMINI_API_KEY");
// Get a model instance, then call methods on it
const model = genAI.getGenerativeModel({ model: "gemini-3.8-flash" });
const result = await model.generateContent(...);
const chat = model.startChat(...);
// Call methods on separate client objects for other services
const uploadedFile = await fileManager.uploadFile(...);
const cache = await cacheManager.create(...);
জাভা
import com.google.genai.Chat;
import com.google.genai.Client;
import com.google.genai.types.GenerateContentResponse;
// Previously, model operations were called on separate model instances
Client client = new Client();
GenerateContentResponse response =
client.models.generateContent("gemini-3.8-flash", "Tell me a story.", null);
Chat chat = client.chats.create("gemini-3.8-flash");
যান
genai.NewClient ফাংশনটি একটি ক্লায়েন্ট তৈরি করত, কিন্তু জেনারেটিভ মডেল অপারেশনগুলো সাধারণত এই ক্লায়েন্ট থেকে প্রাপ্ত একটি পৃথক GenerativeModel ইনস্ট্যান্সে কল করা হতো। অন্যান্য পরিষেবাগুলো স্বতন্ত্র প্যাকেজ বা প্যাটার্নের মাধ্যমে অ্যাক্সেস করা হয়ে থাকতে পারে।
import (
"github.com/google/generative-ai-go/genai"
"github.com/google/generative-ai-go/genai/fileman" // For files
"google.golang.org/api/option"
)
client, err := genai.NewClient(ctx, option.WithAPIKey("GEMINI_API_KEY"))
fileClient, err := fileman.NewClient(ctx, option.WithAPIKey("GEMINI_API_KEY"))
// Get a model instance, then call methods on it
model := client.GenerativeModel("gemini-3.8-flash")
resp, err := model.GenerateContent(...)
cs := model.StartChat()
// Call methods on separate client objects for other services
uploadedFile, err := fileClient.UploadFile(...)
পরে (কেন্দ্রীয় ক্লায়েন্ট অবজেক্ট)
পাইথন
from google import genai
# Create a single client object
client = genai.Client()
# Access API methods through services on the client object
response = client.models.generate_content(...)
chat = client.chats.create(...)
my_file = client.files.upload(...)
tuning_job = client.tunings.tune(...)
জাভাস্ক্রিপ্ট
import { GoogleGenAI } from "@google/genai";
// Create a single client object
const ai = new GoogleGenAI({apiKey: "GEMINI_API_KEY"});
// Access API methods through services on the client object
const response = await ai.models.generateContent(...);
const chat = ai.chats.create(...);
const uploadedFile = await ai.files.upload(...);
const cache = await ai.caches.create(...);
জাভা
import com.google.genai.Chat;
import com.google.genai.Client;
import com.google.genai.types.CachedContent;
import com.google.genai.types.CreateCachedContentConfig;
import com.google.genai.types.File;
import com.google.genai.types.GenerateContentResponse;
// Create a single client object
Client client = new Client();
// Access API methods through services on the client object
GenerateContentResponse response =
client.models.generateContent("gemini-3.8-flash", "Tell me a story.", null);
Chat chat = client.chats.create("gemini-3.8-flash");
File uploadedFile = client.files.upload("sample.txt", null);
CachedContent cache =
client.caches.create("gemini-3.8-flash", CreateCachedContentConfig.builder().build());
যান
import "google.golang.org/genai"
// Create a single client object
client, err := genai.NewClient(ctx, nil)
// Access API methods through services on the client object
result, err := client.Models.GenerateContent(...)
chat, err := client.Chats.Create(...)
uploadedFile, err := client.Files.Upload(...)
tuningJob, err := client.Tunings.Tune(...)
প্রমাণীকরণ
পুরোনো এবং নতুন উভয় লাইব্রেরিই এপিআই কী (API key) ব্যবহার করে প্রমাণীকরণ করে। আপনি গুগল এআই স্টুডিও (Google AI Studio)-তে আপনার এপিআই কী তৈরি করতে পারেন।
আগে
পাইথন
পুরানো SDK-টি API ক্লায়েন্ট অবজেক্টটি পরোক্ষভাবে পরিচালনা করত।
import google.generativeai as genai
genai.configure(api_key=...)
জাভাস্ক্রিপ্ট
import { GoogleGenerativeAI } from "@google/generative-ai";
const genAI = new GoogleGenerativeAI("GEMINI_API_KEY");
জাভা
import com.google.genai.Client;
// Passing the API key explicitly to the client builder
Client client = Client.builder().apiKey("GEMINI_API_KEY").build();
যান
গুগল লাইব্রেরিগুলো ইম্পোর্ট করুন:
import (
"github.com/google/generative-ai-go/genai"
"google.golang.org/api/option"
)
ক্লায়েন্ট তৈরি করুন:
client, err := genai.NewClient(ctx, option.WithAPIKey("GEMINI_API_KEY"))
পরে
পাইথন
Google GenAI SDK ব্যবহার করে, আপনাকে প্রথমে একটি API ক্লায়েন্ট তৈরি করতে হবে, যা API কল করার জন্য ব্যবহৃত হয়। আপনি যদি ক্লায়েন্টে কোনো API কী না পাঠান, তাহলে নতুন SDK-টি GEMINI_API_KEY এনভায়রনমেন্ট ভেরিয়েবল থেকে আপনার API কী সংগ্রহ করবে।
export GEMINI_API_KEY="YOUR_API_KEY"
from google import genai
client = genai.Client() # Set the API key using the GEMINI_API_KEY env var.
# Alternatively, you could set the API key explicitly:
# client = genai.Client(api_key="YOUR_API_KEY")
জাভাস্ক্রিপ্ট
import { GoogleGenAI } from "@google/genai";
const ai = new GoogleGenAI({apiKey: "GEMINI_API_KEY"});
জাভা
import com.google.genai.Client;
// The client automatically picks up the GEMINI_API_KEY environment variable,
// or you can pass it explicitly via Client.builder().apiKey("GEMINI_API_KEY").build()
Client client = new Client();
যান
GenAI লাইব্রেরিটি ইম্পোর্ট করুন:
import "google.golang.org/genai"
ক্লায়েন্ট তৈরি করুন:
client, err := genai.NewClient(ctx, &genai.ClientConfig{
Backend: genai.BackendGeminiAPI,
})
বিষয়বস্তু তৈরি করুন
পাঠ্য
আগে
পাইথন
পূর্বে কোনো ক্লায়েন্ট অবজেক্ট ছিল না, সরাসরি GenerativeModel অবজেক্টের মাধ্যমেই এপিআই অ্যাক্সেস করা হতো।
import google.generativeai as genai
model = genai.GenerativeModel('gemini-3.8-flash')
response = model.generate_content(
'Tell me a story in 300 words'
)
print(response.text)
জাভাস্ক্রিপ্ট
import { GoogleGenerativeAI } from "@google/generative-ai";
const genAI = new GoogleGenerativeAI(process.env.GEMINI_API_KEY);
const model = genAI.getGenerativeModel({ model: "gemini-3.8-flash" });
const prompt = "Tell me a story in 300 words";
const result = await model.generateContent(prompt);
console.log(result.response.text());
জাভা
import com.google.genai.Client;
import com.google.genai.types.GenerateContentResponse;
Client client = new Client();
String prompt = "Tell me a story in 300 words";
GenerateContentResponse response =
client.models.generateContent("gemini-3.8-flash", prompt, null);
System.out.println(response.text());
যান
ctx := context.Background()
client, err := genai.NewClient(ctx, option.WithAPIKey("GEMINI_API_KEY"))
if err != nil {
log.Fatal(err)
}
defer client.Close()
model := client.GenerativeModel("gemini-3.8-flash")
resp, err := model.GenerateContent(ctx, genai.Text("Tell me a story in 300 words."))
if err != nil {
log.Fatal(err)
}
printResponse(resp) // utility for printing response parts
পরে
পাইথন
নতুন গুগল জেনএআই এসডিকে Client অবজেক্টের মাধ্যমে সমস্ত এপিআই মেথড অ্যাক্সেস করার সুযোগ দেয়। কয়েকটি স্টেটফুল বিশেষ ক্ষেত্র ( chat এবং লাইভ-এপিআই session ) ছাড়া, এগুলি সবই স্টেটলেস ফাংশন। উপযোগিতা এবং সামঞ্জস্যের জন্য, রিটার্ন করা অবজেক্টগুলো pydantic ক্লাস হয়ে থাকে।
from google import genai
client = genai.Client()
response = client.models.generate_content(
model='gemini-3.8-flash',
contents='Tell me a story in 300 words.'
)
print(response.text)
print(response.model_dump_json(
exclude_none=True, indent=4))
জাভাস্ক্রিপ্ট
import { GoogleGenAI } from "@google/genai";
const ai = new GoogleGenAI({ apiKey: "GEMINI_API_KEY" });
const response = await ai.models.generateContent({
model: "gemini-3.8-flash",
contents: "Tell me a story in 300 words.",
});
console.log(response.text);
জাভা
import com.google.genai.Client;
import com.google.genai.types.GenerateContentResponse;
Client client = new Client();
GenerateContentResponse response =
client.models.generateContent(
"gemini-3.8-flash", "Tell me a story in 300 words.", null);
System.out.println(response.text());
যান
ctx := context.Background()
client, err := genai.NewClient(ctx, nil)
if err != nil {
log.Fatal(err)
}
result, err := client.Models.GenerateContent(ctx, "gemini-3.8-flash", genai.Text("Tell me a story in 300 words."), nil)
if err != nil {
log.Fatal(err)
}
debugPrint(result) // utility for printing result
ছবি
আগে
পাইথন
import google.generativeai as genai
model = genai.GenerativeModel('gemini-3.8-flash')
response = model.generate_content([
'Tell me a story based on this image',
Image.open(image_path)
])
print(response.text)
জাভাস্ক্রিপ্ট
import { GoogleGenerativeAI } from "@google/generative-ai";
const genAI = new GoogleGenerativeAI("GEMINI_API_KEY");
const model = genAI.getGenerativeModel({ model: "gemini-3.8-flash" });
function fileToGenerativePart(path, mimeType) {
return {
inlineData: {
data: Buffer.from(fs.readFileSync(path)).toString("base64"),
mimeType,
},
};
}
const prompt = "Tell me a story based on this image";
const imagePart = fileToGenerativePart(
`path/to/organ.jpg`,
"image/jpeg",
);
const result = await model.generateContent([prompt, imagePart]);
console.log(result.response.text());
জাভা
import com.google.genai.Client;
import com.google.genai.types.Content;
import com.google.genai.types.GenerateContentResponse;
import com.google.genai.types.Part;
import java.nio.file.Files;
import java.nio.file.Paths;
Client client = new Client();
byte[] imageBytes = Files.readAllBytes(Paths.get("path/to/organ.jpg"));
Part imagePart = Part.fromBytes(imageBytes, "image/jpeg");
GenerateContentResponse response =
client.models.generateContent(
"gemini-3.8-flash",
Content.fromParts(Part.fromText("Tell me a story based on this image"), imagePart),
null);
System.out.println(response.text());
যান
ctx := context.Background()
client, err := genai.NewClient(ctx, option.WithAPIKey("GEMINI_API_KEY"))
if err != nil {
log.Fatal(err)
}
defer client.Close()
model := client.GenerativeModel("gemini-3.8-flash")
imgData, err := os.ReadFile("path/to/organ.jpg")
if err != nil {
log.Fatal(err)
}
resp, err := model.GenerateContent(ctx,
genai.Text("Tell me about this instrument"),
genai.ImageData("jpeg", imgData))
if err != nil {
log.Fatal(err)
}
printResponse(resp) // utility for printing response
পরে
পাইথন
নতুন SDK-তেও একই ধরনের অনেক সুবিধাজনক বৈশিষ্ট্য বিদ্যমান। উদাহরণস্বরূপ, PIL.Image অবজেক্টগুলো স্বয়ংক্রিয়ভাবে রূপান্তরিত হয়।
from google import genai
from PIL import Image
client = genai.Client()
response = client.models.generate_content(
model='gemini-3.8-flash',
contents=[
'Tell me a story based on this image',
Image.open(image_path)
]
)
print(response.text)
জাভাস্ক্রিপ্ট
import {GoogleGenAI} from '@google/genai';
const ai = new GoogleGenAI({ apiKey: "GEMINI_API_KEY" });
const organ = await ai.files.upload({
file: "path/to/organ.jpg",
});
const response = await ai.models.generateContent({
model: "gemini-3.8-flash",
contents: [
createUserContent([
"Tell me a story based on this image",
createPartFromUri(organ.uri, organ.mimeType)
]),
],
});
console.log(response.text);
জাভা
import com.google.genai.Client;
import com.google.genai.types.Content;
import com.google.genai.types.File;
import com.google.genai.types.GenerateContentResponse;
import com.google.genai.types.Part;
Client client = new Client();
File organ = client.files.upload("path/to/organ.jpg", null);
GenerateContentResponse response =
client.models.generateContent(
"gemini-3.8-flash",
Content.fromParts(
Part.fromText("Tell me a story based on this image"),
Part.fromUri(organ.uri().orElse(""), organ.mimeType().orElse("image/jpeg"))),
null);
System.out.println(response.text());
যান
ctx := context.Background()
client, err := genai.NewClient(ctx, nil)
if err != nil {
log.Fatal(err)
}
imgData, err := os.ReadFile("path/to/organ.jpg")
if err != nil {
log.Fatal(err)
}
parts := []*genai.Part{
{Text: "Tell me a story based on this image"},
{InlineData: &genai.Blob{Data: imgData, MIMEType: "image/jpeg"}},
}
contents := []*genai.Content{
{Parts: parts},
}
result, err := client.Models.GenerateContent(ctx, "gemini-3.8-flash", contents, nil)
if err != nil {
log.Fatal(err)
}
debugPrint(result) // utility for printing result
স্ট্রিমিং
আগে
পাইথন
import google.generativeai as genai
response = model.generate_content(
"Write a cute story about cats.",
stream=True)
for chunk in response:
print(chunk.text)
জাভাস্ক্রিপ্ট
import { GoogleGenerativeAI } from "@google/generative-ai";
const genAI = new GoogleGenerativeAI("GEMINI_API_KEY");
const model = genAI.getGenerativeModel({ model: "gemini-3.8-flash" });
const prompt = "Write a story about a magic backpack.";
const result = await model.generateContentStream(prompt);
// Print text as it comes in.
for await (const chunk of result.stream) {
const chunkText = chunk.text();
process.stdout.write(chunkText);
}
জাভা
import com.google.genai.Client;
import com.google.genai.ResponseStream;
import com.google.genai.types.GenerateContentResponse;
Client client = new Client();
String prompt = "Write a story about a magic backpack.";
try (ResponseStream<GenerateContentResponse> stream =
client.models.generateContentStream("gemini-3.8-flash", prompt, null)) {
for (GenerateContentResponse chunk : stream) {
System.out.print(chunk.text());
}
}
যান
ctx := context.Background()
client, err := genai.NewClient(ctx, option.WithAPIKey("GEMINI_API_KEY"))
if err != nil {
log.Fatal(err)
}
defer client.Close()
model := client.GenerativeModel("gemini-3.8-flash")
iter := model.GenerateContentStream(ctx, genai.Text("Write a story about a magic backpack."))
for {
resp, err := iter.Next()
if err == iterator.Done {
break
}
if err != nil {
log.Fatal(err)
}
printResponse(resp) // utility for printing the response
}
পরে
পাইথন
from google import genai
client = genai.Client()
for chunk in client.models.generate_content_stream(
model='gemini-3.8-flash',
contents='Tell me a story in 300 words.'
):
print(chunk.text)
জাভাস্ক্রিপ্ট
import {GoogleGenAI} from '@google/genai';
const ai = new GoogleGenAI({ apiKey: "GEMINI_API_KEY" });
const response = await ai.models.generateContentStream({
model: "gemini-3.8-flash",
contents: "Write a story about a magic backpack.",
});
let text = "";
for await (const chunk of response) {
console.log(chunk.text);
text += chunk.text;
}
জাভা
import com.google.genai.Client;
import com.google.genai.ResponseStream;
import com.google.genai.types.GenerateContentResponse;
Client client = new Client();
try (ResponseStream<GenerateContentResponse> response =
client.models.generateContentStream(
"gemini-3.8-flash", "Tell me a story in 300 words.", null)) {
for (GenerateContentResponse chunk : response) {
System.out.println(chunk.text());
}
}
যান
ctx := context.Background()
client, err := genai.NewClient(ctx, nil)
if err != nil {
log.Fatal(err)
}
for result, err := range client.Models.GenerateContentStream(
ctx,
"gemini-3.8-flash",
genai.Text("Write a story about a magic backpack."),
nil,
) {
if err != nil {
log.Fatal(err)
}
fmt.Print(result.Candidates[0].Content.Parts[0].Text)
}
কনফিগারেশন
আগে
পাইথন
import google.generativeai as genai
model = genai.GenerativeModel(
'gemini-3.8-flash',
system_instruction='you are a story teller for kids under 5 years old',
generation_config=genai.GenerationConfig(
max_output_tokens=400,
top_k=2,
top_p=0.5,
temperature=0.5,
response_mime_type='application/json',
stop_sequences=['\n'],
)
)
response = model.generate_content('tell me a story in 100 words')
জাভাস্ক্রিপ্ট
import { GoogleGenerativeAI } from "@google/generative-ai";
const genAI = new GoogleGenerativeAI("GEMINI_API_KEY");
const model = genAI.getGenerativeModel({
model: "gemini-3.8-flash",
generationConfig: {
candidateCount: 1,
stopSequences: ["x"],
maxOutputTokens: 20,
temperature: 1.0,
},
});
const result = await model.generateContent(
"Tell me a story about a magic backpack.",
);
console.log(result.response.text())
জাভা
import com.google.genai.Client;
import com.google.genai.types.Content;
import com.google.genai.types.GenerateContentConfig;
import com.google.genai.types.GenerateContentResponse;
import com.google.genai.types.Part;
import java.util.Arrays;
Client client = new Client();
GenerateContentConfig config =
GenerateContentConfig.builder()
.systemInstruction(
Content.fromParts(Part.fromText("you are a story teller for kids under 5 years old")))
.maxOutputTokens(400)
.topK(2.0f)
.topP(0.5f)
.temperature(0.5f)
.responseMimeType("application/json")
.stopSequences(Arrays.asList("\n"))
.build();
GenerateContentResponse response =
client.models.generateContent("gemini-3.8-flash", "tell me a story in 100 words", config);
System.out.println(response.text());
যান
ctx := context.Background()
client, err := genai.NewClient(ctx, option.WithAPIKey("GEMINI_API_KEY"))
if err != nil {
log.Fatal(err)
}
defer client.Close()
model := client.GenerativeModel("gemini-3.8-flash")
model.SetTemperature(0.5)
model.SetTopP(0.5)
model.SetTopK(2.0)
model.SetMaxOutputTokens(100)
model.ResponseMIMEType = "application/json"
resp, err := model.GenerateContent(ctx, genai.Text("Tell me about New York"))
if err != nil {
log.Fatal(err)
}
printResponse(resp) // utility for printing response
পরে
পাইথন
নতুন SDK-এর সমস্ত মেথডের জন্য, প্রয়োজনীয় আর্গুমেন্টগুলো কীওয়ার্ড আর্গুমেন্ট হিসেবে প্রদান করা হয়। সমস্ত ঐচ্ছিক ইনপুট config আর্গুমেন্টে দেওয়া হয়। কনফিগ আর্গুমেন্টগুলো পাইথন ডিকশনারি অথবা google.genai.types নেমস্পেসের Config ক্লাস হিসেবে নির্দিষ্ট করা যেতে পারে। উপযোগিতা এবং সামঞ্জস্যের জন্য, types মডিউলের ভেতরের সমস্ত ডেফিনিশন হলো pydantic ক্লাস।
from google import genai
from google.genai import types
client = genai.Client()
response = client.models.generate_content(
model='gemini-3.8-flash',
contents='Tell me a story in 100 words.',
config=types.GenerateContentConfig(
system_instruction='you are a story teller for kids under 5 years old',
max_output_tokens= 400,
top_k= 2,
top_p= 0.5,
temperature= 0.5,
response_mime_type= 'application/json',
stop_sequences= ['\n'],
seed=42,
),
)
জাভাস্ক্রিপ্ট
import {GoogleGenAI} from '@google/genai';
const ai = new GoogleGenAI({ apiKey: "GEMINI_API_KEY" });
const response = await ai.models.generateContent({
model: "gemini-3.8-flash",
contents: "Tell me a story about a magic backpack.",
config: {
candidateCount: 1,
stopSequences: ["x"],
maxOutputTokens: 20,
temperature: 1.0,
},
});
console.log(response.text);
জাভা
import com.google.genai.Client;
import com.google.genai.types.GenerateContentConfig;
import com.google.genai.types.GenerateContentResponse;
import java.util.Arrays;
Client client = new Client();
GenerateContentConfig config =
GenerateContentConfig.builder()
.candidateCount(1)
.stopSequences(Arrays.asList("x"))
.maxOutputTokens(20)
.temperature(1.0f)
.build();
GenerateContentResponse response =
client.models.generateContent(
"gemini-3.8-flash", "Tell me a story about a magic backpack.", config);
System.out.println(response.text());
যান
ctx := context.Background()
client, err := genai.NewClient(ctx, nil)
if err != nil {
log.Fatal(err)
}
result, err := client.Models.GenerateContent(ctx,
"gemini-3.8-flash",
genai.Text("Tell me about New York"),
&genai.GenerateContentConfig{
Temperature: genai.Ptr[float32](0.5),
TopP: genai.Ptr[float32](0.5),
TopK: genai.Ptr[float32](2.0),
ResponseMIMEType: "application/json",
StopSequences: []string{"Yankees"},
CandidateCount: 2,
Seed: genai.Ptr[int32](42),
MaxOutputTokens: 128,
PresencePenalty: genai.Ptr[float32](0.5),
FrequencyPenalty: genai.Ptr[float32](0.5),
},
)
if err != nil {
log.Fatal(err)
}
debugPrint(result) // utility for printing response
নিরাপত্তা সেটিংস
নিরাপত্তা সেটিংস সহ একটি প্রতিক্রিয়া তৈরি করুন:
আগে
পাইথন
import google.generativeai as genai
model = genai.GenerativeModel('gemini-3.8-flash')
response = model.generate_content(
'say something bad',
safety_settings={
'HATE': 'BLOCK_ONLY_HIGH',
'HARASSMENT': 'BLOCK_ONLY_HIGH',
}
)
জাভাস্ক্রিপ্ট
import { GoogleGenerativeAI, HarmCategory, HarmBlockThreshold } from "@google/generative-ai";
const genAI = new GoogleGenerativeAI("GEMINI_API_KEY");
const model = genAI.getGenerativeModel({
model: "gemini-3.8-flash",
safetySettings: [
{
category: HarmCategory.HARM_CATEGORY_HARASSMENT,
threshold: HarmBlockThreshold.BLOCK_LOW_AND_ABOVE,
},
],
});
const unsafePrompt =
"I support Martians Soccer Club and I think " +
"Jupiterians Football Club sucks! Write an ironic phrase telling " +
"them how I feel about them.";
const result = await model.generateContent(unsafePrompt);
try {
result.response.text();
} catch (e) {
console.error(e);
console.log(result.response.candidates[0].safetyRatings);
}
জাভা
import com.google.genai.Client;
import com.google.genai.types.GenerateContentConfig;
import com.google.genai.types.GenerateContentResponse;
import com.google.genai.types.HarmBlockThreshold;
import com.google.genai.types.HarmCategory;
import com.google.genai.types.SafetySetting;
import java.util.Arrays;
Client client = new Client();
GenerateContentConfig config =
GenerateContentConfig.builder()
.safetySettings(
Arrays.asList(
SafetySetting.builder()
.category(HarmCategory.Known.HARM_CATEGORY_HARASSMENT)
.threshold(HarmBlockThreshold.Known.BLOCK_LOW_AND_ABOVE)
.build()))
.build();
GenerateContentResponse response =
client.models.generateContent("gemini-3.8-flash", "say something bad", config);
System.out.println(response.text());
পরে
পাইথন
from google import genai
from google.genai import types
client = genai.Client()
response = client.models.generate_content(
model='gemini-3.8-flash',
contents='say something bad',
config=types.GenerateContentConfig(
safety_settings= [
types.SafetySetting(
category='HARM_CATEGORY_HATE_SPEECH',
threshold='BLOCK_ONLY_HIGH'
),
]
),
)
জাভাস্ক্রিপ্ট
import {GoogleGenAI} from '@google/genai';
const ai = new GoogleGenAI({ apiKey: "GEMINI_API_KEY" });
const unsafePrompt =
"I support Martians Soccer Club and I think " +
"Jupiterians Football Club sucks! Write an ironic phrase telling " +
"them how I feel about them.";
const response = await ai.models.generateContent({
model: "gemini-3.8-flash",
contents: unsafePrompt,
config: {
safetySettings: [
{
category: "HARM_CATEGORY_HARASSMENT",
threshold: "BLOCK_ONLY_HIGH",
},
],
},
});
console.log("Finish reason:", response.candidates[0].finishReason);
console.log("Safety ratings:", response.candidates[0].safetyRatings);
জাভা
import com.google.genai.Client;
import com.google.genai.types.GenerateContentConfig;
import com.google.genai.types.GenerateContentResponse;
import com.google.genai.types.HarmBlockThreshold;
import com.google.genai.types.HarmCategory;
import com.google.genai.types.SafetySetting;
import java.util.Arrays;
Client client = new Client();
GenerateContentConfig config =
GenerateContentConfig.builder()
.safetySettings(
Arrays.asList(
SafetySetting.builder()
.category(HarmCategory.Known.HARM_CATEGORY_HATE_SPEECH)
.threshold(HarmBlockThreshold.Known.BLOCK_ONLY_HIGH)
.build()))
.build();
GenerateContentResponse response =
client.models.generateContent("gemini-3.8-flash", "say something bad", config);
System.out.println("Finish reason: " + response.finishReason());
অ্যাসিঙ্ক
আগে
পাইথন
import google.generativeai as genai
model = genai.GenerativeModel('gemini-3.8-flash')
response = model.generate_content_async(
'tell me a story in 100 words'
)
পরে
পাইথন
asyncio সাথে নতুন SDK ব্যবহার করার জন্য, client.aio অধীনে প্রতিটি মেথডের একটি আলাদা async ইমপ্লিমেন্টেশন রয়েছে।
from google import genai
client = genai.Client()
response = await client.aio.models.generate_content(
model='gemini-3.8-flash',
contents='Tell me a story in 300 words.'
)
চ্যাট
একটি চ্যাট শুরু করুন এবং মডেলকে একটি বার্তা পাঠান:
আগে
পাইথন
import google.generativeai as genai
model = genai.GenerativeModel('gemini-3.8-flash')
chat = model.start_chat()
response = chat.send_message(
"Tell me a story in 100 words")
response = chat.send_message(
"What happened after that?")
জাভাস্ক্রিপ্ট
import { GoogleGenerativeAI } from "@google/generative-ai";
const genAI = new GoogleGenerativeAI("GEMINI_API_KEY");
const model = genAI.getGenerativeModel({ model: "gemini-3.8-flash" });
const chat = model.startChat({
history: [
{
role: "user",
parts: [{ text: "Hello" }],
},
{
role: "model",
parts: [{ text: "Great to meet you. What would you like to know?" }],
},
],
});
let result = await chat.sendMessage("I have 2 dogs in my house.");
console.log(result.response.text());
result = await chat.sendMessage("How many paws are in my house?");
console.log(result.response.text());
জাভা
import com.google.genai.Chat;
import com.google.genai.Client;
import com.google.genai.types.GenerateContentResponse;
Client client = new Client();
Chat chat = client.chats.create("gemini-3.8-flash");
GenerateContentResponse response1 = chat.sendMessage("Tell me a story in 100 words");
System.out.println(response1.text());
GenerateContentResponse response2 = chat.sendMessage("What happened after that?");
System.out.println(response2.text());
যান
ctx := context.Background()
client, err := genai.NewClient(ctx, option.WithAPIKey("GEMINI_API_KEY"))
if err != nil {
log.Fatal(err)
}
defer client.Close()
model := client.GenerativeModel("gemini-3.8-flash")
cs := model.StartChat()
cs.History = []*genai.Content{
{
Parts: []genai.Part{
genai.Text("Hello, I have 2 dogs in my house."),
},
Role: "user",
},
{
Parts: []genai.Part{
genai.Text("Great to meet you. What would you like to know?"),
},
Role: "model",
},
}
res, err := cs.SendMessage(ctx, genai.Text("How many paws are in my house?"))
if err != nil {
log.Fatal(err)
}
printResponse(res) // utility for printing the response
পরে
পাইথন
from google import genai
client = genai.Client()
chat = client.chats.create(model='gemini-3.8-flash')
response = chat.send_message(
message='Tell me a story in 100 words')
response = chat.send_message(
message='What happened after that?')
জাভাস্ক্রিপ্ট
import {GoogleGenAI} from '@google/genai';
const ai = new GoogleGenAI({ apiKey: "GEMINI_API_KEY" });
const chat = ai.chats.create({
model: "gemini-3.8-flash",
history: [
{
role: "user",
parts: [{ text: "Hello" }],
},
{
role: "model",
parts: [{ text: "Great to meet you. What would you like to know?" }],
},
],
});
const response1 = await chat.sendMessage({
message: "I have 2 dogs in my house.",
});
console.log("Chat response 1:", response1.text);
const response2 = await chat.sendMessage({
message: "How many paws are in my house?",
});
console.log("Chat response 2:", response2.text);
জাভা
import com.google.genai.Chat;
import com.google.genai.Client;
import com.google.genai.types.GenerateContentResponse;
Client client = new Client();
Chat chat = client.chats.create("gemini-3.8-flash");
GenerateContentResponse response1 = chat.sendMessage("I have 2 dogs in my house.");
System.out.println("Chat response 1: " + response1.text());
GenerateContentResponse response2 = chat.sendMessage("How many paws are in my house?");
System.out.println("Chat response 2: " + response2.text());
যান
ctx := context.Background()
client, err := genai.NewClient(ctx, nil)
if err != nil {
log.Fatal(err)
}
chat, err := client.Chats.Create(ctx, "gemini-3.8-flash", nil, nil)
if err != nil {
log.Fatal(err)
}
result, err := chat.SendMessage(ctx, genai.Part{Text: "Hello, I have 2 dogs in my house."})
if err != nil {
log.Fatal(err)
}
debugPrint(result) // utility for printing result
result, err = chat.SendMessage(ctx, genai.Part{Text: "How many paws are in my house?"})
if err != nil {
log.Fatal(err)
}
debugPrint(result) // utility for printing result
ফাংশন কলিং
আগে
পাইথন
import google.generativeai as genai
from enum import Enum
def get_current_weather(location: str) -> str:
"""Get the current whether in a given location.
Args:
location: required, The city and state, e.g. San Franciso, CA
unit: celsius or fahrenheit
"""
print(f'Called with: {location=}')
return "23C"
model = genai.GenerativeModel(
model_name="gemini-3.8-flash",
tools=[get_current_weather]
)
response = model.generate_content("What is the weather in San Francisco?")
function_call = response.candidates[0].parts[0].function_call
পরে
পাইথন
নতুন SDK-তে স্বয়ংক্রিয় ফাংশন কলিং ডিফল্ট হিসেবে থাকে। এখানে আপনি এটি নিষ্ক্রিয় করবেন।
from google import genai
from google.genai import types
client = genai.Client()
def get_current_weather(location: str) -> str:
"""Get the current whether in a given location.
Args:
location: required, The city and state, e.g. San Franciso, CA
unit: celsius or fahrenheit
"""
print(f'Called with: {location=}')
return "23C"
response = client.models.generate_content(
model='gemini-3.8-flash',
contents="What is the weather like in Boston?",
config=types.GenerateContentConfig(
tools=[get_current_weather],
automatic_function_calling={'disable': True},
),
)
function_call = response.candidates[0].content.parts[0].function_call
স্বয়ংক্রিয় ফাংশন কলিং
আগে
পাইথন
পুরানো SDK-টি শুধুমাত্র চ্যাটে স্বয়ংক্রিয় ফাংশন কলিং সমর্থন করে। নতুন SDK-তে generate_content ক্ষেত্রে এটিই ডিফল্ট আচরণ।
import google.generativeai as genai
def get_current_weather(city: str) -> str:
return "23C"
model = genai.GenerativeModel(
model_name="gemini-3.8-flash",
tools=[get_current_weather]
)
chat = model.start_chat(
enable_automatic_function_calling=True)
result = chat.send_message("What is the weather in San Francisco?")
পরে
পাইথন
from google import genai
from google.genai import types
client = genai.Client()
def get_current_weather(city: str) -> str:
return "23C"
response = client.models.generate_content(
model='gemini-3.8-flash',
contents="What is the weather like in Boston?",
config=types.GenerateContentConfig(
tools=[get_current_weather]
),
)
কোড এক্সিকিউশন
কোড এক্সিকিউশন এমন একটি টুল যা মডেলকে পাইথন কোড তৈরি করতে, তা রান করতে এবং ফলাফল ফেরত দিতে সক্ষম করে।
আগে
পাইথন
import google.generativeai as genai
model = genai.GenerativeModel(
model_name="gemini-3.8-flash",
tools="code_execution"
)
result = model.generate_content(
"What is the sum of the first 50 prime numbers? Generate and run code for "
"the calculation, and make sure you get all 50.")
জাভাস্ক্রিপ্ট
import { GoogleGenerativeAI } from "@google/generative-ai";
const genAI = new GoogleGenerativeAI("GEMINI_API_KEY");
const model = genAI.getGenerativeModel({
model: "gemini-3.8-flash",
tools: [{ codeExecution: {} }],
});
const result = await model.generateContent(
"What is the sum of the first 50 prime numbers? " +
"Generate and run code for the calculation, and make sure you get " +
"all 50.",
);
console.log(result.response.text());
জাভা
import com.google.genai.Client;
import com.google.genai.types.GenerateContentConfig;
import com.google.genai.types.GenerateContentResponse;
import com.google.genai.types.Tool;
import com.google.genai.types.ToolCodeExecution;
import java.util.Arrays;
Client client = new Client();
GenerateContentConfig config =
GenerateContentConfig.builder()
.tools(
Arrays.asList(
Tool.builder().codeExecution(ToolCodeExecution.builder().build()).build()))
.build();
GenerateContentResponse response =
client.models.generateContent(
"gemini-3.8-flash",
"What is the sum of the first 50 prime numbers? Generate and run code for "
+ "the calculation, and make sure you get all 50.",
config);
System.out.println(response.text());
পরে
পাইথন
from google import genai
from google.genai import types
client = genai.Client()
response = client.models.generate_content(
model='gemini-3.8-flash',
contents='What is the sum of the first 50 prime numbers? Generate and run '
'code for the calculation, and make sure you get all 50.',
config=types.GenerateContentConfig(
tools=[types.Tool(code_execution=types.ToolCodeExecution)],
),
)
জাভাস্ক্রিপ্ট
import {GoogleGenAI} from '@google/genai';
const ai = new GoogleGenAI({ apiKey: "GEMINI_API_KEY" });
const response = await ai.models.generateContent({
model: "gemini-3.8-flash",
contents: `Write and execute code that calculates the sum of the first 50 prime numbers.
Ensure that only the executable code and its resulting output are generated.`,
});
// Each part may contain text, executable code, or an execution result.
for (const part of response.candidates[0].content.parts) {
console.log(part);
console.log("\n");
}
console.log("-".repeat(80));
// The `.text` accessor concatenates the parts into a markdown-formatted text.
console.log("\n", response.text);
জাভা
import com.google.genai.Client;
import com.google.genai.types.GenerateContentConfig;
import com.google.genai.types.GenerateContentResponse;
import com.google.genai.types.Part;
import com.google.genai.types.Tool;
import com.google.genai.types.ToolCodeExecution;
import java.util.Arrays;
Client client = new Client();
GenerateContentConfig config =
GenerateContentConfig.builder()
.tools(
Arrays.asList(
Tool.builder().codeExecution(ToolCodeExecution.builder().build()).build()))
.build();
GenerateContentResponse response =
client.models.generateContent(
"gemini-3.8-flash",
"Write and execute code that calculates the sum of the first 50 prime numbers. "
+ "Ensure that only the executable code and its resulting output are generated.",
config);
if (response.parts() != null) {
for (Part part : response.parts()) {
System.out.println(part);
}
}
System.out.println(response.text());
অনুসন্ধান ভিত্তি
GoogleSearch (Gemini>=2.0) এবং GoogleSearchRetrieval (Gemini < 2.0) হলো গুগল দ্বারা চালিত এমন দুটি টুল, যা মডেলটিকে গ্রাউন্ডিংয়ের জন্য পাবলিক ওয়েব ডেটা পুনরুদ্ধার করতে সাহায্য করে।
আগে
পাইথন
import google.generativeai as genai
model = genai.GenerativeModel('gemini-3.8-flash')
response = model.generate_content(
contents="what is the Google stock price?",
tools='google_search_retrieval'
)
পরে
পাইথন
from google import genai
from google.genai import types
client = genai.Client()
response = client.models.generate_content(
model='gemini-3.8-flash',
contents='What is the Google stock price?',
config=types.GenerateContentConfig(
tools=[
types.Tool(
google_search=types.GoogleSearch()
)
]
)
)
JSON প্রতিক্রিয়া
JSON ফরম্যাটে উত্তর তৈরি করুন।
আগে
পাইথন
একটি response_schema নির্দিষ্ট করে এবং response_mime_type="application/json" সেট করার মাধ্যমে ব্যবহারকারীরা মডেলটিকে একটি নির্দিষ্ট কাঠামো অনুসরণ করে JSON প্রতিক্রিয়া তৈরি করতে বাধ্য করতে পারেন।
import google.generativeai as genai
import typing_extensions as typing
class CountryInfo(typing.TypedDict):
name: str
population: int
capital: str
continent: str
major_cities: list[str]
gdp: int
official_language: str
total_area_sq_mi: int
model = genai.GenerativeModel(model_name="gemini-3.8-flash")
result = model.generate_content(
"Give me information of the United States",
generation_config=genai.GenerationConfig(
response_mime_type="application/json",
response_schema = CountryInfo
),
)
জাভাস্ক্রিপ্ট
import { GoogleGenerativeAI, SchemaType } from "@google/generative-ai";
const genAI = new GoogleGenerativeAI("GEMINI_API_KEY");
const schema = {
description: "List of recipes",
type: SchemaType.ARRAY,
items: {
type: SchemaType.OBJECT,
properties: {
recipeName: {
type: SchemaType.STRING,
description: "Name of the recipe",
nullable: false,
},
},
required: ["recipeName"],
},
};
const model = genAI.getGenerativeModel({
model: "gemini-3.8-flash",
generationConfig: {
responseMimeType: "application/json",
responseSchema: schema,
},
});
const result = await model.generateContent(
"List a few popular cookie recipes.",
);
console.log(result.response.text());
জাভা
import com.google.genai.Client;
import com.google.genai.types.GenerateContentConfig;
import com.google.genai.types.GenerateContentResponse;
import com.google.genai.types.Schema;
import com.google.genai.types.Type;
import java.util.Arrays;
import java.util.Map;
Client client = new Client();
Schema schema =
Schema.builder()
.description("List of recipes")
.type(Type.Known.ARRAY)
.items(
Schema.builder()
.type(Type.Known.OBJECT)
.properties(
Map.of(
"recipeName",
Schema.builder()
.type(Type.Known.STRING)
.description("Name of the recipe")
.build()))
.required(Arrays.asList("recipeName"))
.build())
.build();
GenerateContentConfig config =
GenerateContentConfig.builder()
.responseMimeType("application/json")
.responseSchema(schema)
.build();
GenerateContentResponse response =
client.models.generateContent(
"gemini-3.8-flash", "List a few popular cookie recipes.", config);
System.out.println(response.text());
পরে
পাইথন
নতুন SDK স্কিমা প্রদানের জন্য pydantic ক্লাস ব্যবহার করে (যদিও আপনি genai.types.Schema বা এর সমতুল্য dict পাস করতে পারেন)। যখন সম্ভব, SDK ফেরত আসা JSON পার্স করবে এবং ফলাফলটি response.parsed এ ফেরত দেবে। যদি আপনি স্কিমা হিসেবে একটি pydantic ক্লাস প্রদান করেন, তাহলে SDK সেই JSON ক্লাসটির একটি ইনস্ট্যান্সে রূপান্তর করবে।
from google import genai
from pydantic import BaseModel
client = genai.Client()
class CountryInfo(BaseModel):
name: str
population: int
capital: str
continent: str
major_cities: list[str]
gdp: int
official_language: str
total_area_sq_mi: int
response = client.models.generate_content(
model='gemini-3.8-flash',
contents='Give me information of the United States.',
config={
'response_mime_type': 'application/json',
'response_schema': CountryInfo,
},
)
response.parsed
জাভাস্ক্রিপ্ট
import {GoogleGenAI} from '@google/genai';
const ai = new GoogleGenAI({ apiKey: "GEMINI_API_KEY" });
const response = await ai.models.generateContent({
model: "gemini-3.8-flash",
contents: "List a few popular cookie recipes.",
config: {
responseMimeType: "application/json",
responseSchema: {
type: "array",
items: {
type: "object",
properties: {
recipeName: { type: "string" },
ingredients: { type: "array", items: { type: "string" } },
},
required: ["recipeName", "ingredients"],
},
},
},
});
console.log(response.text);
জাভা
import com.google.genai.Client;
import com.google.genai.types.GenerateContentConfig;
import com.google.genai.types.GenerateContentResponse;
import com.google.genai.types.Schema;
import com.google.genai.types.Type;
import java.util.Arrays;
import java.util.Map;
Client client = new Client();
Schema schema =
Schema.builder()
.type(Type.Known.ARRAY)
.items(
Schema.builder()
.type(Type.Known.OBJECT)
.properties(
Map.of(
"recipeName", Schema.builder().type(Type.Known.STRING).build(),
"ingredients",
Schema.builder()
.type(Type.Known.ARRAY)
.items(Schema.builder().type(Type.Known.STRING).build())
.build()))
.required(Arrays.asList("recipeName", "ingredients"))
.build())
.build();
GenerateContentConfig config =
GenerateContentConfig.builder()
.responseMimeType("application/json")
.responseSchema(schema)
.build();
GenerateContentResponse response =
client.models.generateContent(
"gemini-3.8-flash", "List a few popular cookie recipes.", config);
System.out.println(response.text());
ফাইল
আপলোড
একটি ফাইল আপলোড করুন:
আগে
পাইথন
import requests
import pathlib
import google.generativeai as genai
# Download file
response = requests.get(
'https://storage.googleapis.com/generativeai-downloads/data/a11.txt')
pathlib.Path('a11.txt').write_text(response.text)
file = genai.upload_file(path='a11.txt')
model = genai.GenerativeModel('gemini-3.8-flash')
response = model.generate_content([
'Can you summarize this file:',
my_file
])
print(response.text)
পরে
পাইথন
import requests
import pathlib
from google import genai
client = genai.Client()
# Download file
response = requests.get(
'https://storage.googleapis.com/generativeai-downloads/data/a11.txt')
pathlib.Path('a11.txt').write_text(response.text)
my_file = client.files.upload(file='a11.txt')
response = client.models.generate_content(
model='gemini-3.8-flash',
contents=[
'Can you summarize this file:',
my_file
]
)
print(response.text)
তালিকা করুন এবং পান
আপলোড করা ফাইলগুলির তালিকা দেখুন এবং ফাইলের নাম দিয়ে আপলোড করা ফাইলটি খুঁজে নিন:
আগে
পাইথন
import google.generativeai as genai
for file in genai.list_files():
print(file.name)
file = genai.get_file(name=file.name)
পরে
পাইথন
from google import genai
client = genai.Client()
for file in client.files.list():
print(file.name)
file = client.files.get(name=file.name)
মুছে ফেলুন
একটি ফাইল মুছে ফেলুন:
আগে
পাইথন
import pathlib
import google.generativeai as genai
pathlib.Path('dummy.txt').write_text(dummy)
dummy_file = genai.upload_file(path='dummy.txt')
file = genai.delete_file(name=dummy_file.name)
পরে
পাইথন
import pathlib
from google import genai
client = genai.Client()
pathlib.Path('dummy.txt').write_text(dummy)
dummy_file = client.files.upload(file='dummy.txt')
response = client.files.delete(name=dummy_file.name)
প্রসঙ্গ ক্যাশিং
কন্টেক্সট ক্যাশিং ব্যবহারকারীকে একবার মডেলে কন্টেন্ট পাঠাতে, ইনপুট টোকেনগুলো ক্যাশ করতে এবং তারপর খরচ কমানোর জন্য পরবর্তী কলগুলোতে সেই ক্যাশ করা টোকেনগুলো উল্লেখ করতে দেয়।
আগে
পাইথন
import requests
import pathlib
import google.generativeai as genai
from google.generativeai import caching
# Download file
response = requests.get(
'https://storage.googleapis.com/generativeai-downloads/data/a11.txt')
pathlib.Path('a11.txt').write_text(response.text)
# Upload file
document = genai.upload_file(path="a11.txt")
# Create cache
apollo_cache = caching.CachedContent.create(
model="gemini-3.8-flash",
system_instruction="You are an expert at analyzing transcripts.",
contents=[document],
)
# Generate response
apollo_model = genai.GenerativeModel.from_cached_content(
cached_content=apollo_cache
)
response = apollo_model.generate_content("Find a lighthearted moment from this transcript")
জাভাস্ক্রিপ্ট
import { GoogleAICacheManager, GoogleAIFileManager } from "@google/generative-ai/server";
import { GoogleGenerativeAI } from "@google/generative-ai";
const cacheManager = new GoogleAICacheManager("GEMINI_API_KEY");
const fileManager = new GoogleAIFileManager("GEMINI_API_KEY");
const uploadResult = await fileManager.uploadFile("path/to/a11.txt", {
mimeType: "text/plain",
});
const cacheResult = await cacheManager.create({
model: "models/gemini-3.8-flash",
contents: [
{
role: "user",
parts: [
{
fileData: {
fileUri: uploadResult.file.uri,
mimeType: uploadResult.file.mimeType,
},
},
],
},
],
});
console.log(cacheResult);
const genAI = new GoogleGenerativeAI("GEMINI_API_KEY");
const model = genAI.getGenerativeModelFromCachedContent(cacheResult);
const result = await model.generateContent(
"Please summarize this transcript.",
);
console.log(result.response.text());
জাভা
import com.google.genai.Client;
import com.google.genai.types.CachedContent;
import com.google.genai.types.Content;
import com.google.genai.types.CreateCachedContentConfig;
import com.google.genai.types.File;
import com.google.genai.types.GenerateContentConfig;
import com.google.genai.types.GenerateContentResponse;
import com.google.genai.types.Part;
import java.util.Arrays;
Client client = new Client();
File uploadResult = client.files.upload("path/to/a11.txt", null);
CachedContent cacheResult =
client.caches.create(
"gemini-3.8-flash",
CreateCachedContentConfig.builder()
.contents(
Arrays.asList(
Content.fromParts(
Part.fromUri(
uploadResult.uri().orElse(""),
uploadResult.mimeType().orElse("text/plain")))))
.systemInstruction(
Content.fromParts(Part.fromText("You are an expert at analyzing transcripts.")))
.build());
GenerateContentResponse response =
client.models.generateContent(
"gemini-3.8-flash",
"Please summarize this transcript.",
GenerateContentConfig.builder().cachedContent(cacheResult.name().orElse("")).build());
System.out.println(response.text());
পরে
পাইথন
import requests
import pathlib
from google import genai
from google.genai import types
client = genai.Client()
# Check which models support caching.
for m in client.models.list():
for action in m.supported_actions:
if action == "createCachedContent":
print(m.name)
break
# Download file
response = requests.get(
'https://storage.googleapis.com/generativeai-downloads/data/a11.txt')
pathlib.Path('a11.txt').write_text(response.text)
# Upload file
document = client.files.upload(file='a11.txt')
# Create cache
model='gemini-3.8-flash'
apollo_cache = client.caches.create(
model=model,
config={
'contents': [document],
'system_instruction': 'You are an expert at analyzing transcripts.',
},
)
# Generate response
response = client.models.generate_content(
model=model,
contents='Find a lighthearted moment from this transcript',
config=types.GenerateContentConfig(
cached_content=apollo_cache.name,
)
)
জাভাস্ক্রিপ্ট
import {GoogleGenAI} from '@google/genai';
const ai = new GoogleGenAI({ apiKey: "GEMINI_API_KEY" });
const filePath = path.join(media, "a11.txt");
const document = await ai.files.upload({
file: filePath,
config: { mimeType: "text/plain" },
});
console.log("Uploaded file name:", document.name);
const modelName = "gemini-3.8-flash";
const contents = [
createUserContent(createPartFromUri(document.uri, document.mimeType)),
];
const cache = await ai.caches.create({
model: modelName,
config: {
contents: contents,
systemInstruction: "You are an expert analyzing transcripts.",
},
});
console.log("Cache created:", cache);
const response = await ai.models.generateContent({
model: modelName,
contents: "Please summarize this transcript",
config: { cachedContent: cache.name },
});
console.log("Response text:", response.text);
জাভা
import com.google.genai.Client;
import com.google.genai.types.CachedContent;
import com.google.genai.types.Content;
import com.google.genai.types.CreateCachedContentConfig;
import com.google.genai.types.File;
import com.google.genai.types.GenerateContentConfig;
import com.google.genai.types.GenerateContentResponse;
import com.google.genai.types.Part;
import java.util.Arrays;
Client client = new Client();
File document = client.files.upload("a11.txt", null);
String modelName = "gemini-3.8-flash";
CachedContent cache =
client.caches.create(
modelName,
CreateCachedContentConfig.builder()
.contents(
Arrays.asList(
Content.fromParts(
Part.fromUri(
document.uri().orElse(""), document.mimeType().orElse("text/plain")))))
.systemInstruction(
Content.fromParts(Part.fromText("You are an expert analyzing transcripts.")))
.build());
GenerateContentResponse response =
client.models.generateContent(
modelName,
"Find a lighthearted moment from this transcript",
GenerateContentConfig.builder().cachedContent(cache.name().orElse("")).build());
System.out.println(response.text());
টোকেন গণনা করুন
একটি অনুরোধে থাকা টোকেনের সংখ্যা গণনা করুন।
আগে
পাইথন
import google.generativeai as genai
model = genai.GenerativeModel('gemini-3.8-flash')
response = model.count_tokens(
'The quick brown fox jumps over the lazy dog.')
জাভাস্ক্রিপ্ট
import { GoogleGenerativeAI } from "@google/generative-ai";
const genAI = new GoogleGenerativeAI("GEMINI_API_KEY");
const model = genAI.getGenerativeModel({
model: "gemini-3.8-flash",
});
// Count tokens in a prompt without calling text generation.
const countResult = await model.countTokens(
"The quick brown fox jumps over the lazy dog.",
);
console.log(countResult.totalTokens); // 11
const generateResult = await model.generateContent(
"The quick brown fox jumps over the lazy dog.",
);
// On the response for `generateContent`, use `usageMetadata`
// to get separate input and output token counts
// (`promptTokenCount` and `candidatesTokenCount`, respectively),
// as well as the combined token count (`totalTokenCount`).
console.log(generateResult.response.usageMetadata);
// candidatesTokenCount and totalTokenCount depend on response, may vary
// { promptTokenCount: 11, candidatesTokenCount: 124, totalTokenCount: 135 }
জাভা
import com.google.genai.Client;
import com.google.genai.types.CountTokensResponse;
import com.google.genai.types.GenerateContentResponse;
Client client = new Client();
String prompt = "The quick brown fox jumps over the lazy dog.";
CountTokensResponse countResult = client.models.countTokens("gemini-3.8-flash", prompt, null);
System.out.println(countResult.totalTokens().orElse(0));
GenerateContentResponse generateResult =
client.models.generateContent("gemini-3.8-flash", prompt, null);
System.out.println(generateResult.usageMetadata());
পরে
পাইথন
from google import genai
client = genai.Client()
response = client.models.count_tokens(
model='gemini-3.8-flash',
contents='The quick brown fox jumps over the lazy dog.',
)
জাভাস্ক্রিপ্ট
import {GoogleGenAI} from '@google/genai';
const ai = new GoogleGenAI({ apiKey: "GEMINI_API_KEY" });
const prompt = "The quick brown fox jumps over the lazy dog.";
const countTokensResponse = await ai.models.countTokens({
model: "gemini-3.8-flash",
contents: prompt,
});
console.log(countTokensResponse.totalTokens);
const generateResponse = await ai.models.generateContent({
model: "gemini-3.8-flash",
contents: prompt,
});
console.log(generateResponse.usageMetadata);
জাভা
import com.google.genai.Client;
import com.google.genai.types.CountTokensResponse;
import com.google.genai.types.GenerateContentResponse;
Client client = new Client();
String prompt = "The quick brown fox jumps over the lazy dog.";
CountTokensResponse countTokensResponse =
client.models.countTokens("gemini-3.8-flash", prompt, null);
System.out.println(countTokensResponse.totalTokens().orElse(0));
GenerateContentResponse generateResponse =
client.models.generateContent("gemini-3.8-flash", prompt, null);
System.out.println(generateResponse.usageMetadata());
ছবি তৈরি করুন
ছবি তৈরি করুন:
আগে
পাইথন
#pip install https://github.com/google-gemini/generative-ai-python@imagen
import google.generativeai as genai
imagen = genai.ImageGenerationModel(
"imagen-3.0-generate-001")
gen_images = imagen.generate_images(
prompt="Robot holding a red skateboard",
number_of_images=1,
safety_filter_level="block_low_and_above",
person_generation="allow_adult",
aspect_ratio="3:4",
)
পরে
পাইথন
from google import genai
client = genai.Client()
gen_images = client.models.generate_images(
model='gemini-2.5-flash-image',
prompt='Robot holding a red skateboard',
config=types.GenerateImagesConfig(
number_of_images= 1,
safety_filter_level= "BLOCK_LOW_AND_ABOVE",
person_generation= "ALLOW_ADULT",
aspect_ratio= "3:4",
)
)
for n, image in enumerate(gen_images.generated_images):
pathlib.Path(f'{n}.png').write_bytes(
image.image.image_bytes)
বিষয়বস্তু এমবেড করুন
কন্টেন্ট এমবেডিং তৈরি করুন।
আগে
পাইথন
import google.generativeai as genai
response = genai.embed_content(
model='models/gemini-embedding-001',
content='Hello world'
)
জাভাস্ক্রিপ্ট
import { GoogleGenerativeAI } from "@google/generative-ai";
const genAI = new GoogleGenerativeAI("GEMINI_API_KEY");
const model = genAI.getGenerativeModel({
model: "gemini-embedding-001",
});
const result = await model.embedContent("Hello world!");
console.log(result.embedding);
জাভা
import com.google.genai.Client;
import com.google.genai.types.EmbedContentResponse;
Client client = new Client();
EmbedContentResponse response =
client.models.embedContent("gemini-embedding-001", "Hello world!", null);
System.out.println(response.embeddings());
পরে
পাইথন
from google import genai
client = genai.Client()
response = client.models.embed_content(
model='gemini-embedding-001',
contents='Hello world',
)
জাভাস্ক্রিপ্ট
import {GoogleGenAI} from '@google/genai';
const ai = new GoogleGenAI({ apiKey: "GEMINI_API_KEY" });
const text = "Hello World!";
const result = await ai.models.embedContent({
model: "gemini-embedding-001",
contents: text,
config: { outputDimensionality: 10 },
});
console.log(result.embeddings);
জাভা
import com.google.genai.Client;
import com.google.genai.types.EmbedContentConfig;
import com.google.genai.types.EmbedContentResponse;
Client client = new Client();
String text = "Hello World!";
EmbedContentResponse result =
client.models.embedContent(
"gemini-embedding-001",
text,
EmbedContentConfig.builder().outputDimensionality(10).build());
System.out.println(result.embeddings());