DeepSeek

DeepSeek V3.2 API

CN DeepSeek | veröffentlicht 2025-09
In Spielwiese testen → API-Schlüssel erhalten

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.

CodeToolsJSON

Preise (offiziell, pro 1M Tokens)

Eingabe
$0.29/M
Ausgabe
$0.43/M

Spezifikationen

Kontextfenster128K Tokens Max. Ausgabe8.192K Tokens EingabemodalitätenText StreamingJa APIOpenAI-kompatibel

So verwenden Sie DeepSeek V3.2

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!"}]}'

Ähnliche Modelle

Andere Modelle zum Überlegen.