All models

DeepSeek: DeepSeek V4.1 FlashNEW

deepseek/deepseek-v4.1-flash
textVisionReasoning

DeepSeek V4.1 Flash is a sparse mixture-of-experts model from DeepSeek, and the cost-efficient tier of the V4.1 family. DeepSeek reports that it exceeds V4 Pro on performance, speed, and task completion time, so it sits ahead of the previous flagship rather than beneath it. It is suited for coding, reasoning, and agentic workflows, and is particularly strong at long-horizon tasks that must run to completion across many steps.

Price in / out
Cache, read / write
Context / Max output
1.05M / 384K
Released
Sep 10, 2026

Additional rates

During some UTC hours the upstream charges 2× more — per-route rates are in the table below.

Parameters

messagesrequired
reasoning_effortoff · low · high · max
max_tokensoptional · alias max_completion_tokens
streamtrue · false
toolsfunction calling (OpenAI format)
tool_choiceauto · none · required
response_formatjson_object · json_schema
web_search · · ·
providerrouting: order · only · ignore · sort
stream_options{"include_usage": true}
image_urlimage (data: URL)
Fine-tuning · 11
temperature0–2
stopoptional
seedoptional
top_p0–1
top_koptional
min_p0–1
frequency_penalty−2…2
presence_penalty−2…2
repetition_penalty0–2
logprobstrue · false
top_logprobs0–20

How to use via API

from openai import OpenAI

client = OpenAI(base_url="https://api.mixen.ai/v1", api_key="mxn-...")
resp = client.chat.completions.create(
    model="deepseek/deepseek-v4.1-flash",
    messages=[{"role": "user", "content": "Привет"}],
    reasoning_effort="low",  # off · low · high · max
    temperature=0.7,
    max_tokens=1024,
    stream=False,
)
print(resp.choices[0].message.content)

# Стриминг: stream=True — ответ приходит чанками
for chunk in client.chat.completions.create(
    model="deepseek/deepseek-v4.1-flash",
    messages=[{"role": "user", "content": "Привет"}],
    stream=True,
):
    print(chunk.choices[0].delta.content or "", end="", flush=True)
API docsTry in the bot