DeepSeek V3.2 ist ein stabiles, ausgewogenes Modell für allgemeine Chats, Textentwürfe und Code-Vervollständigung. Es bietet eine starke Befehlsbefolgung und breite Sprachabdeckung zu einem niedrigen Preis, was es zu einer zuverlässigen Standardwahl für Produktionsworkloads macht, die nicht die neuesten Reasoning-Fähigkeiten erfordern.
Direkter OpenAI-Ersatz. Ändern Sie nur base_url und Modell.
# 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!"}]}'
Andere Modelle zum Überlegen.
DeepSeek’s flagship reasoning model.
Fast and ultra-cheap, for high-volume tasks.
Deep reasoning model for hard problems.
General-purpose chat model.