Private Models





Working with agentsConnect RedPill to agent frameworks and runtimes.
Tencent: Hy3
Newtencent/hy3Model weightsHy3 is a 295B-parameter Mixture-of-Experts model from Tencent (21B active, 192 experts with top-8 routing) built for reasoning, agentic workflows, and real-world production use. It supports a configurable reasoning effort.
- Modalities
- TexttoText
- In / out price
- $0.15 / $0.64per 1MCache read $0.04 per 1M
- Context
- 262K
- Released
- Aug 21, 2026
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: "tencent/hy3",
messages: [{ role: "user", content: "Say hello." }],
});