Latest general-purpose model with strong reasoning and code generation. Excellent value for money with competitive performance against models costing significantly more. A strong all-rounder for teams looking to optimize AI spend.
DeepSeek
64k tokens
8,192 tokens
deepseek/deepseek-v3
Drop-in compatible with any OpenAI client library.
import OpenAI from "openai";
const client = new OpenAI({
baseURL: "https://api.deployai.dev/v1",
apiKey: process.env.DEPLOYAI_API_KEY,
});
const completion = await client.chat.completions.create({
model: "deepseek/deepseek-v3",
messages: [
{ role: "user", content: "Hello, how are you?" }
],
});
console.log(completion.choices[0].message.content);Advanced reasoning model rivaling frontier models at a fraction of the cost. Chain-of-thought by default.
Most capable multimodal model. Excels at complex reasoning, coding, creative writing, and vision tasks.
Balanced model with strong reasoning and nuanced understanding. Excellent for analysis and long documents.