Perceptron Mk1

Perceptron chatreasoningvideovision

API ID: perceptron/perceptron-mk1-20260512

Input Price
$0.15
/1M tokens
Output Price
$1.50
/1M tokens

About Perceptron Mk1

Perceptron Mk1 is a budget-friendly general-purpose model from Perceptron with standard context (33k), suitable for conversations, content creation, and general AI tasks.

💰
Price Ranking
#906 lowest price among 1240 Chat models

Model Specifications

Context Length
33k
Max Output
8k
Release Date
2026-05-12
Capabilities
chat reasoning video vision
Input Modalities
textimagevideo
Output Modalities
text

Best For

  • Complex reasoning, math problems, multi-step logic
  • Image analysis, document understanding, visual Q&A
  • Conversations, content writing, general assistance

Consider Alternatives For

  • Simple Q&A (cheaper models available)

💰 Real-World Cost Examples

Estimated monthly costs for common use cases

Personal AI Assistant
$0.52
/month
50 conversations/day, ~500 tokens each
Customer Service Bot
$15.75
/month
1000 tickets/day, ~800 tokens each
Data Analysis Pipeline
$21.38
/month
500 analyses/day, ~2k tokens each

Similar Models from Other Providers

Cross-brand alternatives with similar capabilities

Alibaba Qwen Qwen2.5 Coder 32B Instruct
Input: $0.66
Output: $1.00
Context: 33k
Baidu ERNIE 4.5 VL 424B A47B
Input: $0.42
Output: $1.25
Context: 123k
Alibaba Qwen Qwen3 VL 30B A3B Thinking
Input: $0.13
Output: $1.56
Context: 262k
DeepSeek R1 Distill Llama 70B
Input: $0.80
Output: $0.80
Context: 8k

🚀 Quick Start

Get started with Perceptron Mk1 API

OpenAI-compatible SDK
from openai import OpenAI

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

response = client.chat.completions.create(
    model="perceptron/perceptron-mk1-20260512",
    messages=[
        {"role": "user", "content": "Hello!"}
    ]
)
print(response.choices[0].message.content)