Quick answer: Motif 3 Beta is a 314B-parameter sparse Mixture-of-Experts reasoning model built entirely in-house by Motif Technologies, with ~13B parameters active per token, a 256K-token context window, and a score of 44 on the Artificial Analysis Intelligence Index. Weights are freely downloadable from Hugging Face for non-commercial use; API access is $0.00/MTok during the beta period.
Where Motif 3 Beta leads
Where it lags
Best for: Research and experimentation on long-context reasoning tasks, non-commercial fine-tuning, and evaluation of fully in-house MoE architectures.
Motif 3 Beta is the first publicly released checkpoint from Motif Technologies' Motif-3 model series, dropped onto Hugging Face in July 2026 as an intermediate preview ahead of the full stable release. The model is noteworthy for being a ground-up proprietary design: Motif Technologies has not re-parameterised or distilled any existing open-source architecture. Instead, it introduces several novel components — Grouped Differential Latent Attention (GDLA), Grouped PolyNorm activation applied per expert, and a customised multi-head compression module (mHC) — all developed internally.
Under the hood, Motif 3 uses a sparse MoE decoder stack with 53 layers, 384 routed experts per layer (top-8 selected per token) and a single shared expert, giving a total parameter count of ~314B with only ~13B active per forward pass. The hidden size is 4096 and the vocabulary spans 220,160 tokens, reflecting multilingual training. Weights are stored in bfloat16. The architecture was designed natively for 256K context (262,144 tokens) without additional tricks such as YaRN or ALiBi, making the full context window reliably usable at inference time.
On the Artificial Analysis Intelligence Index v4.1, Motif 3 Beta scores 44, placing it at #35 out of 579 evaluated models and well above the median for free-tier ($0.00/MTok) models. Artificial Analysis classifies it as a reasoning model: it uses extended thinking or chain-of-thought reasoning internally before generating a final answer. The model is multilingual with particular emphasis on English and Korean.
| Field | Value |
|---|---|
| Organization | Motif Technologies |
| Total parameters | ~314B |
| Active parameters | ~13B per token |
| Architecture | Sparse MoE — GDLA + Grouped PolyNorm + modified mHC |
| Layers | 53 |
| Routed experts | 384 (top-8 activated per token) |
| Shared experts | 1 |
| Hidden size | 4096 |
| Vocabulary | 220,160 tokens |
| Context window | 262,144 tokens (256K) |
| Max output | Not disclosed |
| Numerics | BF16 |
| Reasoning | Yes (chain-of-thought) |
| Input modalities | Text |
| Output modalities | Text |
| License | Open, non-commercial only (written permission required for commercial use) |
| Release date | July 20, 2026 (beta checkpoint; stable release forthcoming) |
| HuggingFace | Motif-Technologies/Motif-3-Beta |
| Input (per 1M tokens) | Output (per 1M tokens) | |
|---|---|---|
| Motif Technologies (Beta) | $0.00 | $0.00 |
Motif 3 Beta is currently available at no cost via the Motif model hub. Weights are also freely downloadable from Hugging Face for self-hosting. Commercial use requires a separate written agreement with Motif Technologies.
Motif 3 Beta has a 256K-token context window (262,144 tokens) — roughly ≈ 393 A4 pages of 12pt Arial text in a single request. The long context is native to the base architecture rather than a post-training extension, supporting whole-codebase analysis, multi-document reasoning, and long-conversation tracking without retrieval workarounds.
| Benchmark | Score | Source | Date |
|---|---|---|---|
| Artificial Analysis Intelligence Index (AAII) | 44 / 100 | Artificial Analysis model page | 2026-07 |
The AAII is a composite index by Artificial Analysis incorporating GDPval-AA v2, τ³-Banking, Terminal-Bench v2.1, SciCode, Humanity's Last Exam, GPQA Diamond, CritPt, AA-Omniscience, and AA-LCR. Scores above are reported by third parties and shown for context; they are not Benchgen measurements. Methodology details at artificialanalysis.ai/methodology.
| Model | Context | Parameters (total/active) | AAII | License | Price (in/out per 1M) |
|---|---|---|---|---|---|
| Motif 3 Beta | 256K | 314B / 13B | 44 | Non-commercial | $0.00 / $0.00 |
| Inkling | 1M | 975B / 41B | — | Apache 2.0 | Free (open weights) |
| Kimi K3 | 1M | 2.8T / — | — | Apache 2.0 (Jul 27) | $3.00 / $15.00 |
| DeepSeek V4 Pro | 163K | — | — | MIT | $0.00 / $0.00 |
| Qwen3-235B-A22B | 236K | 235B / 22B | — | Apache 2.0 | Free (open weights) |
Motif 3 Beta fills a distinct niche: a high-parameter MoE model with a novel, fully proprietary architecture, free-to-use API access, and a long-context window — at the cost of a non-commercial license and beta-level stability. Compared to Apache-2.0 alternatives like Inkling or Qwen3-235B, it is more restricted commercially but provides comparable active-parameter efficiency with a unique architectural lineage.
An AAII score of 44 establishes Motif 3 Beta as a capable reasoning model in the mid-tier of the frontier — meaningfully above average but trailing the top proprietary models (Claude Fable 5, GPT-5.6 Sol, Kimi K3) that score in the 60–80+ range. The AAII incorporates agentic task categories including GDPval-AA v2 (knowledge work), τ³-Banking (financial SaaS workflows), and Terminal-Bench v2.1 (agentic coding/terminal use), which makes it a useful proxy for real agent deployments.
What AAII does not capture is task-specific reliability across repeated runs. For builders evaluating Motif 3 Beta for production agent use, the priority is measuring how reliably it completes the specific domain workflows that matter — tool calling accuracy, long-horizon plan coherence, and error recovery — rather than treating the composite index as a go/no-go signal. Motif's 256K context and reasoning-model design make it a strong candidate for document-heavy agentic workflows; the beta label means regressions between checkpoints should be tracked before committing to a production dependency.
from transformers import AutoModelForCausalLM, AutoTokenizer
import torch
model_id = "Motif-Technologies/Motif-3-Beta"
tokenizer = AutoTokenizer.from_pretrained(model_id, trust_remote_code=True)
model = AutoModelForCausalLM.from_pretrained(
model_id,
trust_remote_code=True,
torch_dtype=torch.bfloat16,
device_map="auto",
)
messages = [{"role": "user", "content": "Summarise the key clauses in this contract..."}]
inputs = tokenizer.apply_chat_template(
messages, add_generation_prompt=True, return_tensors="pt"
).to(model.device)
outputs = model.generate(inputs, max_new_tokens=512)
print(tokenizer.decode(outputs[0][inputs.shape[-1]:], skip_special_tokens=True))The model ships with custom modeling code — trust_remote_code=True is required. A dedicated vLLM serving guide is planned by Motif Technologies for the stable release.
Specs and scores sourced from Motif Technologies' Hugging Face model card and Artificial Analysis. Last updated 2026-07-21.
This model isn’t on any benchmark leaderboard yet.