Model

DeepSeek V4 Flash 0731

Available through the AssetMeld OpenAI-compatible API.

Model details

Model ID
deepseek-v4-flash
Context window
1.0M tokens
Audit
Audit report

Quickstart

Try DeepSeek V4 Flash 0731 now

Use the model ID below with your existing OpenAI-compatible client.

Use this model →
from openai import OpenAI

client = OpenAI(
    base_url="https://api.assetmeld.com/v1",
    api_key="YOUR_API_KEY",
)

response = client.chat.completions.create(
    model="deepseek-v4-flash",
    messages=[
        {"role": "user", "content": "Hello"}
    ],
)

print(response.choices[0].message.content)
Compare other models →