All models
Model card on Hugging Face
EmbeddingGemma
by Google DeepMind
Embeddings
EmbeddingGemma is Google DeepMind's compact text-embedding model from the Gemma family, tuned for on-device retrieval. Its small size and strong multilingual quality make it a practical embedder for local RAG and semantic search.
- Publisher
- Google DeepMind
- Context window
- 2K tokens
- Licence
- Gemma
Run EmbeddingGemma
Install it on a Pendra worker, then call it through the OpenAI-compatible API with a pdr_sk_ key.
from pendra import Pendra
client = Pendra(api_key="pdr_sk_...")
response = client.embeddings.create(
model="embeddinggemma:embeddinggemma-300m",
input="The quick brown fox",
)
print(response.data[0].embedding)
Run EmbeddingGemma on your own UK infrastructure
Deploy a worker, install EmbeddingGemma, and start serving it through one sovereign API endpoint.