Private Models





Working with agentsConnect RedPill to agent frameworks and runtimes.
OpenAI: Text Embedding 3 Large
openai/text-embedding-3-largetext-embedding-3-large is OpenAI's most capable embedding model for both english and non-english tasks. 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.13per 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-large",
input: "Private AI keeps prompts confidential.",
});