DeepSeek V3.2
ChatDeepSeek-V3.2
DeepSeek V3.2 on FlexAI: DeepSeek LLM, MIT license, served via the OpenAI-compatible Token Factory at the live market-tracked rate.
Recommended for
Context
160K tokens
API endpoint
/v1/chat/completions
Compatibility
OpenAI
Parameters
685B MoE (37B active)
License
MIT
Hardware
16× H100
Quantization
FP8
Estimate your monthly cost
M tokens
M tokens
10M × $0.225/M input$2.25
2M × $0.225/M output$0.45
Estimated monthly cost$2.7
Estimate only, at the current market-tracked rate. Usage-based; no minimums.
Get an API keyQuick Start
DeepSeek-V3.2
from openai import OpenAI
client = OpenAI(
base_url="https://tokens.flex.ai/v1",
api_key="your-api-key",
)
response = client.chat.completions.create(
model="DeepSeek-V3.2",
messages=[
{"role": "user", "content": "Hello!"}
],
)
print(response.choices[0].message.content)