Deepseek V3 03-24
deepseek-ai/DeepSeek-V3-0324
Prompt: 1 credits / 1M tokens
•Completion: 1.5999999999999999 credits / 1M tokens
Overview
Deepseek V3 03-24 is an iteration of the DeepSeek V3 model with notable improvements in reasoning capabilities across various benchmarks, including MMLU-Pro, GPQA, and AIME. It also shows enhancements in front-end web development code executability and Chinese writing proficiency. This model, released in March 2025, features improved function calling accuracy and optimized translation quality.
Tags
Chat
CServe Optimized
Dedicated
LLM
Serverless
API
curl -X POST "https://api.centml.com/openai/v1/chat/completions" \
-H "Authorization: Bearer *******************************************" \
-H "Content-Type: application/json" \
-d '{
"model": "deepseek-ai/DeepSeek-V3-0324",
"messages": [{ "role": "system", "content": "You are a helpful assistant." }],
"stream": false
}'
from openai import OpenAI
client = OpenAI(
api_key="*******************************************",
base_url="https://api.centml.com/openai/v1"
)
completion = client.chat.completions.create(
model="deepseek-ai/DeepSeek-V3-0324",
messages=[{ "role": "system", "content": "You are a helpful assistant." }],
stream=False,
)
print(completion.choices[0].message)
import OpenAI from "openai";
const client = new OpenAI(
api_key="*******************************************",
baseURL="https://api.centml.com/openai/v1"
)
async function main() {
const completion = await client.chat.completions.create({
model: "deepseek-ai/DeepSeek-V3-0324",
messages: [{ "role": "system", "content": "You are a helpful assistant." }],
stream: false,
});
console.log(completion.choices[0])
}
main()