DeepSeek R1 05-28
deepseek-ai/DeepSeek-R1-0528
Overview
DeepSeek R1 0528 is a minor version upgrade to the DeepSeek R1 model, released around May 28, 2025. This update significantly boosts reasoning and inference capabilities, demonstrating strong performance in mathematics, programming, and general logic benchmarks, with results approaching those of leading models like O3 and Gemini 2.5 Pro. It also features a reduced hallucination rate, improved function calling, and enhanced support for "vibe coding," alongside distilled versions, such as one based on Qwen3 8B, designed for more efficient yet powerful reasoning.
Tags
CentML Optimized
Chat
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-R1-0528",
"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-R1-0528",
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-R1-0528",
messages: [{ "role": "system", "content": "You are a helpful assistant." }],
stream: false,
});
console.log(completion.choices[0])
}
main()