DeepSeek v3.2 is the latest production release in the DeepSeek V3 family: a large, reasoning-first open-weight language model family designed for long-context understanding, robust agent/tool use, advanced reasoning, coding and math. The release bundles multiple variants (production V3.2 and a high-performance V3.2-Speciale). The project emphasizes cost-efficient long-context inference through a new sparse attention mechanism called DeepSeek Sparse Attention (DSA) and agents / “thinking” workflows (“Thinking in Tool-Use”).
V3.2-Exp.)v3.2, v3.2-Exp (experimental, DSA debut), v3.2-Speciale (reasoning-first, API-only short term).High-compute V3.2-Speciale reaches parity or exceeds contemporary high-end models on several reasoning/math/coding benchmarks, and achieves top-level marks on selected elite math problem sets. The preprint highlights parity with models such as GPT-5 / Kimi K2 on selected reasoning benchmarks, specific improvements versus earlier DeepSeek R1/V3 baselines:
V3.2-Speciale is promoted for advanced math reasoning and extensive code debugging tasks per vendor benchmarks.| Input Tokens | $0.22 |
|---|---|
| Output Tokens | $0.35 |
deepseek-v3.2” endpoint to send the API request and set the request body. The request method and request body are obtained from our website API doc. Our website also provides Apifox test for your convenience.| Comet Price (USD / M Tokens) | Official Price (USD / M Tokens) |
|---|---|
Input:$0.22/M Output:$0.35/M | Input:$0.27/M Output:$0.43/M |
from openai import OpenAI
import os
# Get your CometAPI key from https://api.cometapi.com/console/token, and paste it here
COMETAPI_KEY = os.environ.get("COMETAPI_KEY") or "<YOUR_COMETAPI_KEY>"
BASE_URL = "https://api.cometapi.com/v1"
client = OpenAI(base_url=BASE_URL, api_key=COMETAPI_KEY)
completion = client.chat.completions.create(
model="deepseek-v3.2-exp",
messages=[
{"role": "system", "content": "You are a helpful assistant."},
{"role": "user", "content": "Hello!"},
],
)
print(completion.choices[0].message.content)| deepseek-v3.2 | |
|---|---|
| DeepSeek-V3.2-Exp-nothinking | |
| DeepSeek-V3.2-Exp-thinking |