Google অনুসন্ধানের সাথে গ্রাউন্ডিং

গুগল সার্চের মাধ্যমে গ্রাউন্ডিং একটি জেমিনি মডেলকে রিয়েল-টাইম, সর্বজনীনভাবে উপলব্ধ ওয়েব কন্টেন্টের সাথে সংযুক্ত করে। এটি মডেলটিকে আরও নির্ভুল ও হালনাগাদ উত্তর প্রদান করতে এবং তার জ্ঞানের পরিধির বাইরেও যাচাইযোগ্য উৎস উল্লেখ করতে সক্ষম করে।

গুগল সার্চের মাধ্যমে গ্রাউন্ডিং করার নিম্নলিখিত সুবিধাগুলো রয়েছে:

  • তথ্যগত নির্ভুলতা বৃদ্ধি করুন : বাস্তব জগতের তথ্যের উপর ভিত্তি করে প্রতিক্রিয়া তৈরি করে মডেলের বিভ্রম হ্রাস করুন।
  • রিয়েল-টাইম তথ্য জানুন : সাম্প্রতিক ঘটনা ও বিষয় সম্পর্কে প্রশ্নের উত্তর দিন।
  • উৎস প্রদান করুন : মডেলের দাবির উৎসগুলো দেখিয়ে ব্যবহারকারীর আস্থা তৈরি করুন অথবা তাদেরকে প্রাসঙ্গিক সাইটগুলো ব্রাউজ করার সুযোগ দিন।
  • আরও জটিল কাজ সম্পন্ন করুন : যুক্তিমূলক কাজে সহায়তার জন্য প্রত্নবস্তু এবং প্রাসঙ্গিক ছবি, ভিডিও বা অন্যান্য মিডিয়া সংগ্রহ করুন।
  • অঞ্চল বা ভাষা-ভিত্তিক প্রতিক্রিয়া উন্নত করুন : অঞ্চল-ভিত্তিক তথ্য খুঁজুন, অথবা বিষয়বস্তু নির্ভুলভাবে অনুবাদ করতে সহায়তা করুন।

সমর্থিত মডেল

  • gemini-3.1-pro-preview
  • gemini-3-flash-preview
  • gemini-3.1-flash-lite-preview
  • gemini-3-pro-image-preview (ওরফে "ন্যানো ব্যানানা প্রো")
  • gemini-3.1-flash-image-preview (ওরফে "ন্যানো বানানা ২")
  • gemini-2.5-pro
  • gemini-2.5-flash
  • gemini-2.5-flash-lite
  • gemini-2.0-flash-001 (এবং এর স্বয়ংক্রিয়ভাবে আপডেট হওয়া উপনাম gemini-2.0-flash )

সমর্থিত ভাষা

জেমিনি মডেলগুলির জন্য সমর্থিত ভাষাগুলি দেখুন।

গুগল সার্চের মাধ্যমে মডেলটির ভিত্তি স্থাপন করুন।

এই পৃষ্ঠায় প্রদানকারী-নির্দিষ্ট বিষয়বস্তু এবং কোড দেখতে আপনার জেমিনি এপিআই প্রদানকারীর উপর ক্লিক করুন।

যখন আপনি GenerativeModel ইনস্ট্যান্সটি তৈরি করবেন, তখন মডেলটির প্রতিক্রিয়া তৈরি করার জন্য একটি tool হিসেবে GoogleSearch প্রদান করুন।

সুইফট


import FirebaseAILogic

// Initialize the Gemini Developer API backend service
let ai = FirebaseAI.firebaseAI(backend: .googleAI())

// Create a `GenerativeModel` instance with a model that supports your use case
let model = ai.generativeModel(
    modelName: "GEMINI_MODEL_NAME",
    // Provide Google Search as a tool that the model can use to generate its response
    tools: [Tool.googleSearch()]
)

let response = try await model.generateContent("Who won the euro 2024?")
print(response.text ?? "No text in response.")

// Make sure to comply with the "Grounding with Google Search" usage requirements,
// which includes how you use and display the grounded result

Kotlin


// Initialize the Gemini Developer API backend service
// Create a `GenerativeModel` instance with a model that supports your use case
val model = Firebase.ai(backend = GenerativeBackend.googleAI()).generativeModel(
    modelName = "GEMINI_MODEL_NAME",
    // Provide Google Search as a tool that the model can use to generate its response
    tools = listOf(Tool.googleSearch())
)

val response = model.generateContent("Who won the euro 2024?")
print(response.text)

// Make sure to comply with the "Grounding with Google Search" usage requirements,
// which includes how you use and display the grounded result

Java


// Initialize the Gemini Developer API backend service
// Create a `GenerativeModel` instance with a model that supports your use case
GenerativeModel ai = FirebaseAI.getInstance(GenerativeBackend.googleAI())
                .generativeModel("GEMINI_MODEL_NAME",
                        null,
                        null,
                        // Provide Google Search as a tool that the model can use to generate its response
                        List.of(Tool.GoogleSearch()));

// Use the GenerativeModelFutures Java compatibility layer which offers
// support for ListenableFuture and Publisher APIs
GenerativeModelFutures model = GenerativeModelFutures.from(ai);

ListenableFuture response = model.generateContent("Who won the euro 2024?");
  Futures.addCallback(response, new FutureCallback() {
      @Override
      public void onSuccess(GenerateContentResponse result) {
          String resultText = result.getText();
          System.out.println(resultText);
      }

      @Override
      public void onFailure(Throwable t) {
          t.printStackTrace();
      }
  }, executor);

// Make sure to comply with the "Grounding with Google Search" usage requirements,
// which includes how you use and display the grounded result

Web


import { initializeApp } from "firebase/app";
import { getAI, getGenerativeModel, GoogleAIBackend } from "firebase/ai";

// TODO(developer) Replace the following with your app's Firebase configuration
// See: https://firebase.google.com/docs/web/learn-more#config-object
const firebaseConfig = {
  // ...
};

// Initialize FirebaseApp
const firebaseApp = initializeApp(firebaseConfig);

// Initialize the Gemini Developer API backend service
const ai = getAI(firebaseApp, { backend: new GoogleAIBackend() });

// Create a `GenerativeModel` instance with a model that supports your use case
const model = getGenerativeModel(
  ai,
  {
    model: "GEMINI_MODEL_NAME",
    // Provide Google Search as a tool that the model can use to generate its response
    tools: [{ googleSearch: {} }]
  }
);

const result = await model.generateContent("Who won the euro 2024?");

console.log(result.response.text());

// Make sure to comply with the "Grounding with Google Search" usage requirements,
// which includes how you use and display the grounded result

Dart


import 'package:firebase_core/firebase_core.dart';
import 'package:firebase_ai/firebase_ai.dart';
import 'firebase_options.dart';

// Initialize FirebaseApp
await Firebase.initializeApp(
  options: DefaultFirebaseOptions.currentPlatform,
);

// Initialize the Gemini Developer API backend service
// Create a `GenerativeModel` instance with a model that supports your use case
final model = FirebaseAI.googleAI().generativeModel(
  model: 'GEMINI_MODEL_NAME',
  // Provide Google Search as a tool that the model can use to generate its response
  tools: [
    Tool.googleSearch(),
  ],
);

final response = await model.generateContent([Content.text("Who won the euro 2024?")]);
print(response.text);

// Make sure to comply with the "Grounding with Google Search" usage requirements,
// which includes how you use and display the grounded result

ঐক্য


using Firebase;
using Firebase.AI;

// Initialize the Gemini Developer API backend service
var ai = FirebaseAI.GetInstance(FirebaseAI.Backend.GoogleAI());

// Create a `GenerativeModel` instance with a model that supports your use case
var model = ai.GetGenerativeModel(
  modelName: "GEMINI_MODEL_NAME",
  // Provide Google Search as a tool that the model can use to generate its response
  tools: new[] { new Tool(new GoogleSearch()) }
);

var response = await model.GenerateContentAsync("Who won the euro 2024?");
UnityEngine.Debug.Log(response.Text ?? "No text in response.");

// Make sure to comply with the "Grounding with Google Search" usage requirements,
// which includes how you use and display the grounded result

কীভাবে একটি মডেল বেছে নিতে হয় তা জানুনআপনার ব্যবহারের ক্ষেত্র এবং অ্যাপের জন্য উপযুক্ত।

আদর্শ ফলাফলের জন্য, 1.0 তাপমাত্রা ব্যবহার করুন (যা সকল ২.৫ মডেলের জন্য ডিফল্ট)। মডেলের কনফিগারেশনে কীভাবে তাপমাত্রা সেট করতে হয় তা জেনে নিন।

গুগল সার্চের মাধ্যমে গ্রাউন্ডিং কীভাবে কাজ করে

আপনি যখন GoogleSearch টুলটি ব্যবহার করেন, তখন মডেলটি স্বয়ংক্রিয়ভাবে তথ্য অনুসন্ধান, প্রক্রিয়াকরণ এবং উদ্ধৃত করার সম্পূর্ণ কার্যপ্রবাহ পরিচালনা করে।

মডেলটির কার্যপ্রবাহ নিচে দেওয়া হলো:

  1. প্রম্পট গ্রহণ করুন : আপনার অ্যাপটি GoogleSearch টুল সক্রিয় থাকা জেমিনি মডেলে একটি প্রম্পট পাঠায়।
  2. প্রম্পট বিশ্লেষণ : মডেলটি প্রম্পটটি বিশ্লেষণ করে এবং গুগল সার্চ তার প্রতিক্রিয়া উন্নত করতে পারে কিনা তা নির্ধারণ করে।
  3. গুগল সার্চে কোয়েরি পাঠান : প্রয়োজনে, মডেলটি স্বয়ংক্রিয়ভাবে এক বা একাধিক সার্চ কোয়েরি তৈরি করে এবং সেগুলো কার্যকর করে।
  4. অনুসন্ধানের ফলাফল প্রক্রিয়াকরণ : মডেলটি গুগল অনুসন্ধানের ফলাফলগুলো প্রক্রিয়াকরণ করে এবং মূল অনুরোধের একটি প্রতিক্রিয়া তৈরি করে।
  5. একটি 'ভিত্তিযুক্ত ফলাফল' ফেরত দিন : মডেলটি একটি চূড়ান্ত, ব্যবহারকারী-বান্ধব প্রতিক্রিয়া প্রদান করে যা গুগল সার্চ ফলাফলের উপর ভিত্তি করে তৈরি। এই প্রতিক্রিয়ায় মডেলের টেক্সট উত্তর এবং সার্চ কোয়েরি, ওয়েব ফলাফল ও উৎসসহ groundingMetadata অন্তর্ভুক্ত থাকে।

উল্লেখ্য যে, মডেলে একটি টুল হিসেবে গুগল সার্চ প্রদান করার অর্থ এই নয় যে, মডেলটিকে তার প্রতিক্রিয়া তৈরি করার জন্য সর্বদা গুগল সার্চ টুলটিই ব্যবহার করতে হবে। এই ক্ষেত্রে, প্রতিক্রিয়াটিতে কোনো groundingMetadata অবজেক্ট থাকবে না এবং তাই এটি একটি "গ্রাউন্ডেড রেজাল্ট" নয়

ডায়াগ্রামটি দেখাচ্ছে কিভাবে গুগল সার্চের সাথে গ্রাউন্ডিং-এর ক্ষেত্রে মডেলটি গুগল সার্চের সাথে ইন্টারঅ্যাক্ট করে।

বাস্তব ফলাফলটি বুঝুন

যদি মডেলটি গুগল সার্চ ফলাফলের উপর ভিত্তি করে তার প্রতিক্রিয়া তৈরি করে, তাহলে সেই প্রতিক্রিয়ায় একটি groundingMetadata অবজেক্ট অন্তর্ভুক্ত থাকে। এই অবজেক্টটিতে এমন কাঠামোগত ডেটা থাকে যা দাবি যাচাই করতে এবং আপনার অ্যাপ্লিকেশনে একটি সমৃদ্ধ উৎস অভিজ্ঞতা তৈরি করার জন্য অপরিহার্য।

একটি 'গ্রাউন্ডেড রেজাল্ট'-এর মধ্যে থাকা groundingMetadata অবজেক্টটিতে নিম্নলিখিত তথ্য থাকে:

  • webSearchQueries : গুগল সার্চে পাঠানো সার্চ কোয়েরিগুলোর একটি অ্যারে। এই তথ্য ডিবাগিং এবং মডেলের যুক্তি প্রক্রিয়া বোঝার জন্য দরকারি।

  • searchEntryPoint : প্রয়োজনীয় "গুগল সার্চ সাজেশন" রেন্ডার করার জন্য HTML এবং CSS ধারণ করে। আপনার নির্বাচিত API প্রোভাইডার— Gemini Developer API অথবা Vertex AI Gemini API—এর জন্য আপনাকে "Grounding with Google Search" ব্যবহারের শর্তাবলী মেনে চলতে হবে (সার্ভিস স্পেসিফিক টার্মস-এর মধ্যে সার্ভিস টার্মস সেকশনটি দেখুন)। এই পেজের পরবর্তী অংশে জানুন কীভাবে একটি গ্রাউন্ডেড রেজাল্ট ব্যবহার ও প্রদর্শন করতে হয়।

  • groundingChunks : ওয়েব উৎসগুলো ( uri এবং title ) ধারণকারী অবজেক্টের একটি অ্যারে।

  • groundingSupports : মডেল রেসপন্স text groundingChunks এর সোর্সগুলোর সাথে সংযুক্ত করার জন্য চাঙ্কগুলোর একটি অ্যারে। প্রতিটি চাঙ্ক একটি টেক্সট segment (যা startIndex এবং endIndex দ্বারা সংজ্ঞায়িত) এক বা একাধিক groundingChunkIndices এর সাথে লিঙ্ক করে। এই ফিল্ডটি আপনাকে ইনলাইন সোর্স লিঙ্ক তৈরি করতে সাহায্য করে। এই পৃষ্ঠার পরবর্তী অংশে জানুন কীভাবে একটি গ্রাউন্ডেড রেজাল্ট ব্যবহার ও প্রদর্শন করতে হয়

এখানে একটি উদাহরণ প্রতিক্রিয়া দেওয়া হল, যাতে একটি groundingMetadata অবজেক্ট অন্তর্ভুক্ত রয়েছে:

{
  "candidates": [
    {
      "content": {
        "parts": [
          {
            "text": "Spain won Euro 2024, defeating England 2-1 in the final. This victory marks Spain's record fourth European Championship title."
          }
        ],
        "role": "model"
      },
      "groundingMetadata": {
        "webSearchQueries": [
          "UEFA Euro 2024 winner",
          "who won euro 2024"
        ],
        "searchEntryPoint": {
          "renderedContent": "<!-- HTML and CSS for the search widget -->"
        },
        "groundingChunks": [
          {"web": {"uri": "https://vertexaisearch.cloud.google.com.....", "title": "aljazeera.com"}},
          {"web": {"uri": "https://vertexaisearch.cloud.google.com.....", "title": "uefa.com"}}
        ],
        "groundingSupports": [
          {
            "segment": {"startIndex": 0, "endIndex": 85, "text": "Spain won Euro 2024, defeatin..."},
            "groundingChunkIndices": [0]
          },
          {
            "segment": {"startIndex": 86, "endIndex": 210, "text": "This victory marks Spain's..."},
            "groundingChunkIndices": [0, 1]
          }
        ]
      }
    }
  ]
}

একটি ভিত্তিযুক্ত ফলাফল ব্যবহার করুন এবং প্রদর্শন করুন

মডেলটি যদি কোনো প্রতিক্রিয়া তৈরি করতে গুগল সার্চ টুল ব্যবহার করে, তাহলে এটি সেই প্রতিক্রিয়ায় একটি groundingMetadata অবজেক্ট প্রদান করবে।

গুগল সার্চ সাজেশন এবং সোর্সগুলো প্রদর্শন করা প্রয়োজন

গুগল সার্চ টুল ব্যবহারের শর্তাবলী পূরণের পাশাপাশি, এই তথ্য প্রদর্শন করা আপনাকে এবং আপনার ব্যবহারকারীদেরকে প্রাপ্ত উত্তরগুলো যাচাই করতে সাহায্য করে এবং আরও জানার সুযোগ তৈরি করে।

(আবশ্যক) গুগল অনুসন্ধানের পরামর্শ প্রদর্শন করুন

যদি কোনো উত্তরে "গুগল সার্চ সাজেশন" থাকে, তাহলে আপনাকে "গ্রাউন্ডিং উইথ গুগল সার্চ" ব্যবহারের শর্তাবলী মেনে চলতে হবে, যার মধ্যে গুগল সার্চ সাজেশনগুলো কীভাবে প্রদর্শন করা হবে তাও অন্তর্ভুক্ত।

groundingMetadata অবজেক্টটিতে "Google Search suggestions" থাকে, বিশেষত searchEntryPoint ফিল্ডটিতে, যার একটি renderedContent ফিল্ড রয়েছে যা সঙ্গতিপূর্ণ HTML এবং CSS স্টাইলিং প্রদান করে, যা আপনার অ্যাপে সার্চ সাজেশন প্রদর্শন করার জন্য ইমপ্লিমেন্ট করতে হবে।

Google Cloud ডকুমেন্টেশনে গুগল সার্চ সাজেশনের প্রদর্শন এবং আচরণগত প্রয়োজনীয়তা সম্পর্কে বিস্তারিত তথ্য পর্যালোচনা করুন। উল্লেখ্য যে, যদিও এই বিস্তারিত নির্দেশিকাটি ভার্টেক্স এআই জেমিনি এপিআই ডকুমেন্টেশনে রয়েছে, তবে এটি জেমিনি ডেভেলপার এপিআই প্রোভাইডারের ক্ষেত্রেও প্রযোজ্য।

এই বিভাগের পরবর্তী অংশে উদাহরণ কোডের নমুনা দেখুন।

(প্রয়োজনীয়) উৎসসমূহ প্রদর্শন করুন

groundingMetadata অবজেক্টটিতে কাঠামোগত উৎস ডেটা থাকে, বিশেষত groundingSupports এবং groundingChunks ফিল্ডগুলো। আপনার UI-এর মধ্যে (ইনলাইন এবং অ্যাগ্রিগেটে) মডেলের স্টেটমেন্টগুলোকে সরাসরি তাদের উৎসের সাথে লিঙ্ক করতে এই তথ্য ব্যবহার করুন।

এই বিভাগের পরবর্তী অংশে উদাহরণ কোডের নমুনা দেখুন।

উদাহরণ কোড নমুনা

এই কোড নমুনাগুলো গ্রাউন্ডেড ফলাফল ব্যবহার ও প্রদর্শনের জন্য সাধারণ প্যাটার্ন প্রদান করে। তবে, আপনার নির্দিষ্ট বাস্তবায়ন যেন কমপ্লায়েন্সের প্রয়োজনীয়তাগুলোর সাথে সামঞ্জস্যপূর্ণ হয়, তা নিশ্চিত করার দায়িত্ব আপনার।

সুইফট

// ...

// Get the model's response
let text = response.text

// Get the grounding metadata
if let candidate = response.candidates.first,
   let groundingMetadata = candidate.groundingMetadata {
  // REQUIRED - display Google Search suggestions
  // (renderedContent contains HTML and CSS for the search widget)
  if let renderedContent = groundingMetadata.searchEntryPoint?.renderedContent {
    // TODO(developer): Display Google Search suggestions using a WebView
  }

  // REQUIRED - display sources
  let groundingChunks = groundingMetadata.groundingChunks
  for chunk in groundingMetadata.groundingChunks {
    if let web = chunk.web {
      let title = web.title  // for example, "uefa.com"
      let uri = web.uri  // for example, "https://vertexaisearch.cloud.google.com..."
      // TODO(developer): show source in the UI
    }
  }
}

Kotlin

// ...

// Get the model's response
val text = response.text

// Get the grounding metadata
val groundingMetadata = response.candidates.firstOrNull()?.groundingMetadata

// REQUIRED - display Google Search suggestions
// (renderedContent contains HTML and CSS for the search widget)
val renderedContent = groundingMetadata?.searchEntryPoint?.renderedContent
if (renderedContent != null) {
    // TODO(developer): Display Google Search suggestions using a WebView
}

// REQUIRED - display sources
val groundingChunks = groundingMetadata?.groundingChunks
groundingChunks?.let { chunks ->
  for (chunk in chunks) {
  	val title = chunk.web?.title  // for example, "uefa.com"
	val uri = chunk.web?.uri  // for example, "https://vertexaisearch.cloud.google.com..."
// TODO(developer): show source in the UI
  }
}

Java

// ...

Futures.addCallback(response, new FutureCallback() {
  @Override
  public void onSuccess(GenerateContentResponse result) {
  // Get the model's response
  String text = result.getText();

  // Get the grounding metadata
  GroundingMetadata groundingMetadata =
  result.getCandidates()[0].getGroundingMetadata();

  if (groundingMetadata != null) {
    // REQUIRED - display Google Search suggestions
  // (renderedContent contains HTML and CSS for the search widget)
    String renderedContent =
  groundingMetadata.getSearchEntryPoint().getRenderedContent();
    if (renderedContent != null) {
      // TODO(developer): Display Google Search suggestions using a WebView
    }

    // REQUIRED - display sources
    List chunks = groundingMetadata.getGroundingChunks();
    if (chunks != null) {
      for(GroundingChunk chunk : chunks) {
        WebGroundingChunk web = chunk.getWeb();
        if (web != null) {
          String title = web.getTitle();  // for example, "uefa.com"
          String uri = web.getUri();  // for example, "https://vertexaisearch.cloud.google.com..."
          // TODO(developer): show sources in the UI
        }
      }
    }
  }
  }

  @Override
  public void onFailure(Throwable t) {
  t.printStackTrace();
  }
  }, executor);

Web

// ...

// Get the model's text response
const text = result.response.text();

// Get the grounding metadata
const groundingMetadata = result.response.candidates?.[0]?.groundingMetadata;

// REQUIRED - display Google Search suggestions
// (renderedContent contains HTML and CSS for the search widget)
const renderedContent = groundingMetadata?.searchEntryPoint?.renderedContent;
if (renderedContent) {
  // TODO(developer): render this HTML and CSS in the UI
}

// REQUIRED - display sources
const groundingChunks = groundingMetadata?.groundingChunks;
if (groundingChunks) {
  for (const chunk of groundingChunks) {
    const title = chunk.web?.title;  // for example, "uefa.com"
    const uri = chunk.web?.uri;  // for example, "https://vertexaisearch.cloud.google.com..."
    // TODO(developer): show sources in the UI
  }
}

Dart

// ...

// Get the model's response
final text = response.text;

// Get the grounding metadata
final groundingMetadata = response.candidates.first.groundingMetadata;

// REQUIRED - display Google Search suggestions
// (renderedContent contains HTML and CSS for the search widget)
final renderedContent = groundingMetadata?.searchEntryPoint?.renderedContent;
if (renderedContent != null) {
    // TODO(developer): Display Google Search suggestions using a WebView
}

// REQUIRED - display sources
final groundingChunks = groundingMetadata?.groundingChunks;
if (groundingChunks != null) {
  for (var chunk in groundingChunks) {
    final title = chunk.web?.title;  // for example, "uefa.com"
    final uri = chunk.web?.uri;  // for example, "https://vertexaisearch.cloud.google.com..."
    // TODO(developer): show sources in the UI
  }
}

ঐক্য

// ...

// Get the model's response
var text = response.Text;

// Get the grounding metadata
var groundingMetadata = response.Candidates.First().GroundingMetadata.Value;

// REQUIRED - display Google Search suggestions
// (renderedContent contains HTML and CSS for the search widget)
if (groundingMetadata.SearchEntryPoint.HasValue) {
    var renderedContent = groundingMetadata.SearchEntryPoint.Value.RenderedContent;
    // TODO(developer): Display Google Search suggestions using a WebView
}

// REQUIRED - display sources
foreach(GroundingChunk chunk in groundingMetadata.GroundingChunks) {
    var title = chunk.Web.Value.Title;  // for example, "uefa.com"
    var uri = chunk.Web.Value.Uri;  // for example, "https://vertexaisearch.cloud.google.com..."
    // TODO(developer): show sources in the UI
}

Firebase কনসোলে বাস্তব ফলাফল এবং এআই পর্যবেক্ষণ

If you've enabled AI monitoring in the Firebase console , responses are stored in Cloud Logging . By default, this data has a 30-day retention period.

এই ডেটা সংরক্ষণের সময়কাল, অথবা আপনার সেট করা যেকোনো কাস্টম সময়কাল, যেন আপনার নির্দিষ্ট ব্যবহারের ক্ষেত্র এবং আপনার নির্বাচিত Gemini API প্রদানকারী— Gemini Developer API বা Vertex AI Gemini API-এর জন্য প্রযোজ্য যেকোনো অতিরিক্ত কমপ্লায়েন্স প্রয়োজনীয়তার সাথে সম্পূর্ণরূপে সামঞ্জস্যপূর্ণ হয়, তা নিশ্চিত করা আপনার দায়িত্ব (পরিষেবা-নির্দিষ্ট শর্তাবলীর মধ্যে পরিষেবা শর্তাবলী বিভাগটি দেখুন)। এই প্রয়োজনীয়তাগুলো পূরণের জন্য আপনাকে Cloud Logging -এ ডেটা সংরক্ষণের সময়কাল সমন্বয় করতে হতে পারে।

মূল্য নির্ধারণ এবং সীমা

আপনার নির্বাচিত Gemini API প্রদানকারীর ডকুমেন্টেশনে ( Gemini Developer API |Vertex AI Gemini API ) Google Search-এর সাথে গ্রাউন্ডিং-এর জন্য মূল্য, মডেলের প্রাপ্যতা এবং সীমাবদ্ধতা পর্যালোচনা করতে ভুলবেন না।