Private Models





Working with agentsConnect RedPill to agent frameworks and runtimes.
OpenAI: Text Embedding Ada 002
openai/text-embedding-ada-002text-embedding-ada-002 is OpenAI's legacy text embedding model.
- Modalities
- TexttoEmbeddings
- Price
- $0.10per 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-ada-002",
input: "Private AI keeps prompts confidential.",
});