← All models

Perceptron: Perceptron Mk1.5NEW

perceptron/perceptron-mk1.5
textVisionReasoningVideoAudio

Perceptron's embodied reasoning model for physical agents: text, image, video and audio input, answering with text plus optional structured annotations — points, boxes, polygons, tracks and clips (the annotation_format parameter). Graded reasoning (minimal…high), function tool calling and structured outputs via JSON Schema.

Price in / out
Context / Max output
37K / 8K
Released
Sep 25, 2026

Parameters

messagesrequired
reasoning_effortoff · minimal · low · medium · high
max_tokensoptional · alias max_completion_tokens
streamtrue · false
toolsfunction calling (OpenAI format)
tool_choiceauto · none · required
web_search · · ·
providerrouting: order · only · ignore · sort
stream_options{"include_usage": true}
image_urlimage (data: URL)
Fine-tuning · 5
temperature0–2
top_p0–1
top_koptional
frequency_penalty−2…2
presence_penalty−2…2

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="perceptron/perceptron-mk1.5",
    messages=[{"role": "user", "content": "Привет"}],
    reasoning_effort="minimal",  # off · minimal · low · medium · high
    temperature=0.7,
    max_tokens=1024,
    stream=False,
)
print(resp.choices[0].message.content)

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