RedPill
sentence-transformers logo

Sentence Transformers: all-MiniLM-L6-v2

GPU TEE
sentence-transformers/all-minilm-l6-v2
Created Nov 25, 2025|512 context|$0.005/M input tokens|$0.00/M output tokens
Intel TDXNVIDIA CC

The all-MiniLM-L6-v2 embedding model maps sentences and short paragraphs into a 384-dimensional dense vector space, enabling high-quality semantic representations that are ideal for downstream tasks such as information retrieval, clustering, similarity scoring, and text ranking.

Providers for Sentence Transformers: all-MiniLM-L6-v2

RedPill routes requests to the best providers that are able to handle your prompt size and parameters, with fallbacks to maximize uptime.

phala logo
phala
Input Price
$0.005
Output Price
$0.00
Total Context
512

API

RedPill provides an OpenAI-compatible embeddings API to all models & providers that you can call directly, or using the OpenAI SDK. Additionally, some third-party SDKs are available.

fetch("https://api.redpill.ai/v1/embeddings", {
  method: "POST",
  headers: {
    "Authorization": "Bearer <YOUR-REDPILL-API-KEY>",
    "Content-Type": "application/json"
  },
  body: JSON.stringify({
    "model": "sentence-transformers/all-minilm-l6-v2",
    "input": "Your text string goes here",
  })
})