Gemini Embedding 2

Gemini Embedding 2 by Google AI: $0.2 input and — output per 1M tokens, 8K context. Call it through the odnoga LLM gateway.

Vision

Gemini Embedding 2 is served by Google AI and called through odnoga with the same OpenAI-compatible request shape as every other model in the catalog. It accepts images alongside text. Its 8K-token context window sets how much input you can send in one request.

Specification and price

VendorGoogle AI
Model IDgemini-embedding-2
Context window8K tokens
Max output1 tokens
CapabilitiesVision
Your plan
Per 1M tokensVendor costYour price on Free+7%
Input$0.2$0.215
Output
Cached input

Vendor cost is the list price per million tokens as recorded in the odnoga catalog; your price applies your plan margin with the same formula that bills every request — see pricing. Pricing

Call it through odnoga

const res = await fetch("https://api.odnoga.com/v1/chat/completions", {
  method: "POST",
  headers: {
    Authorization: `Bearer ${process.env.ODNOGA_API_KEY}`,
    "Content-Type": "application/json",
  },
  body: JSON.stringify({
    model: "gemini-embedding-2",
    messages: [{ role: "user", content: "Hello" }],
  }),
});

Same request shape for every vendor in the catalog — swap the model id and odnoga handles keys, routing, limits and cost accounting.

How to use Gemini Embedding 2

Derived from the odnoga catalog record for this model.

Best for

  • High-volume, latency-sensitive calls: classification, extraction, routing, short rewrites and summaries.
  • Work that mixes images with text — screenshots, scanned documents, charts, product photos.

Not the right pick when

  • Agent loops that must call your functions — tool calling is not available here.
  • Pipelines that require guaranteed JSON — parse defensively or pick a model with enforced JSON.
  • Very long generated documents — output is capped at 1 tokens per response.
  • Large documents in one request — the window is 8K tokens, so you will need chunking.
  • Anything where a wrong answer is costly without a human check — no model in the catalog removes that requirement.

Practical tips through odnoga

  1. 01Pin the model id in a managed prompt version, so a model swap is a version change you can compare and roll back, not an edit in application code.
  2. 02Compare it against 2–8 other models on the same frozen test cases in the evaluation laboratory before you make it the production default.
  3. 03For repeated identical deterministic calls, odnoga answer reuse returns the stored answer and bills no vendor tokens — turn it off for creative output.
  4. 04Set a fallback model on the route so a vendor incident degrades quality instead of returning an error, and a per-tenant budget so one caller cannot spend the month.

Gemini Embedding 2 compared

ModelContextInput / 1MOutput / 1MCapabilities
Gemini Embedding 28K$0.2Vision
Gemini 2.5 Computer Use131K$1$5Vision, Tools, JSON mode, Streaming
Gemini 2.5 Flash Image (Nano Banana)33K$0.3$2.50Vision

Questions

How much does Gemini Embedding 2 cost per 1M tokens?
Google AI lists $0.2 / — per 1M input / output tokens in the odnoga catalog. Through odnoga you pay that vendor price plus your plan margin, and every request is recorded with both numbers.
What is Gemini Embedding 2 best for?
High-volume, latency-sensitive calls: classification, extraction, routing, short rewrites and summaries. Work that mixes images with text — screenshots, scanned documents, charts, product photos.
Can I switch to Gemini Embedding 2 without changing my code?
Yes. odnoga exposes one OpenAI-compatible endpoint, so switching means sending "gemini-embedding-2" as the model id — or changing it in the managed prompt version, with no application deploy.
How large is the Gemini Embedding 2 context window?
8K tokens of input, with up to 1 tokens of output per response.

All models · Pricing · Docs · Compare models in the evaluation lab

One gateway, every model.