Private Models





Working with agentsConnect RedPill to agent frameworks and runtimes.
OpenAI: GPT-3.5 Turbo
openai/gpt-3.5-turboGPT-3.5 Turbo is OpenAI's fastest model. It can understand and generate natural language or code, and is optimized for chat and traditional completion tasks. Training data up to Sep 2021.
- Modalities
- TexttoText
- In / out price
- $0.50 / $1.50per 1M
- Context
- 16K
- Released
- May 28, 2023
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
Call 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.chat.completions.create({
model: "openai/gpt-3.5-turbo",
messages: [{ role: "user", content: "Say hello." }],
});