DeepSeek V3.2 là mô hình ổn định, cân bằng cho trò chuyện tổng quát, soạn thảo và hoàn thiện mã. Cung cấp khả năng làm theo hướng dẫn mạnh mẽ và phủ rộng ngôn ngữ ở mức giá thấp, là lựa chọn mặc định đáng tin cậy cho các tác vụ sản xuất không yêu cầu khả năng suy luận mới nhất.
Thay thế trực tiếp OpenAI. Chỉ thay đổi base_url và model.
# Python - pip install openai from openai import OpenAI client = OpenAI( base_url="https://meshtok.com/v1", api_key="sk-your-MeshTok-key", ) resp = client.chat.completions.create( model="deepseek/deepseek-v3.2", messages=[{"role":"user","content":"Hello!"}], ) print(resp.choices[0].message.content)
# cURL curl https://meshtok.com/v1/chat/completions \ -H "Authorization: Bearer sk-your-MeshTok-key" \ -H "Content-Type: application/json" \ -d '{"model":"deepseek/deepseek-v3.2","messages":[{"role":"user","content":"Hello!"}]}'
Các mô hình khác bạn có thể cân nhắc.
DeepSeek’s flagship reasoning model.
Fast and ultra-cheap, for high-volume tasks.
Deep reasoning model for hard problems.
General-purpose chat model.