Back to modelsGoogle
Buy Plan
Google
Gemini Embedding 001
Gemini Embedding generates high-dimensional vector representations for semantic search, classification, and RAG systems. 计价类型: embedding
Quick Stats
Context
2K
Max Output
—
Provider
Specs
2
Modalities
in textout embedding
Specs & List Price (per 1M tokens)
Quality
Input $0.15Output $0
Value
Input $0.075Output $0
Recommended Plan
Gemini Embedding 001 Starter Plan
Pay-as-you-go after top-up; $1 free credit for new users.
API Endpoint
Model ID
google/gemini-embedding-001cURL
curl https://intertoken.ai/v1/chat/completions \
-H "Authorization: Bearer $TOKENPORTAL_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"model": "google/gemini-embedding-001",
"messages": [{"role": "user", "content": "Hello!"}]
}'Python (openai SDK)
from openai import OpenAI
client = OpenAI(
base_url="https://intertoken.ai/v1",
api_key="$TOKENPORTAL_API_KEY",
)
resp = client.chat.completions.create(
model="google/gemini-embedding-001",
messages=[{"role": "user", "content": "Hello!"}],
)
print(resp.choices[0].message.content)Start using this model
Sign up free, get an API key, and make your first call in 30 seconds.