Back to Models
DeepSeek V3-0324
deepseek-ai/deepseek-v3
DeepSeek
Chat
Description
DeepSeek V3-0324 by DeepSeek. This model supports chat capabilities. Variant: V3.
Specifications
- Context Length:
- 131072
- Variant:
- V3
Pricing
- Input Cost:
- $0.2500/100K tokens
- Output Cost:
- $0.2500/100K tokens
Usage Example
import OpenAI from "openai";
const client = new OpenAI({
baseURL: "https://api.yourproxy.com/v1",
apiKey: process.env.PROXY_KEY,
});
const completion = await client.chat.completions.create({
model: "deepseek-ai/deepseek-v3",
messages: [{ role: "user", content: "Hello!" }],
});