Private Models





Working with agentsConnect RedPill to agent frameworks and runtimes.
OpenAI: Text Embedding 3 Small
openai/text-embedding-3-smalltext-embedding-3-small is OpenAI's improved, more performant version of the ada embedding model. Embeddings are a numerical representation of text that can be used to measure the relatedness between two pieces of text. Embeddings are useful for search, clustering, recommendations, anomaly detection, and classification tasks.
- Modalities
- TexttoEmbeddings
- Price
- $0.02per 1M
- Context
- 8,192
- Released
- Nov 14, 2025
Providers
RedPill routes this private model across verified providers with automatic fallbacks. Pricing is unified, so you pay the same price no matter which provider serves your request, while live metrics show first-token latency, speed, and uptime.
| Checking | Checking | Checking |
Gateway API
Generate embeddings with this model through RedPill's OpenAI-compatible API.
- Create an API key
- Set
REDPILL_API_KEY - Run the request
import OpenAI from "openai";
const client = new OpenAI({
baseURL: "https://api.redpill.ai/v1",
apiKey: process.env.REDPILL_API_KEY,
});
const response = await client.embeddings.create({
model: "openai/text-embedding-3-small",
input: "Private AI keeps prompts confidential.",
});