Gemini-Embedding-001 is Google’s top-ranked multilingual embedding model, supporting over 100 languages and flexible output dimensions (3072, 1536, or 768). It is optimized for semantic search, clustering, and recommendations, and leverages Matryoshka Representation Learning for efficient, high-quality embeddings.
Code Example
Example code for using this model through our API with Python (OpenAI SDK) or cURL. Replace placeholders with your API key and model ID.
Basic request example. Ensure API key permissions. For more details, see our documentation.
from openai import OpenAI
client = OpenAI(base_url="https://api.naga.ac/v1", api_key="YOUR_API_KEY")
resp = client.embeddings.create(
model="gemini-embedding-001",
input=[
"The food was delicious!",
"Service could be faster."
],
# dimensions=512, # if supported
# encoding_format="base64",
)
print(resp)