Inkling opens access to a large-scale multimodal sparse Mixture-of-Experts (MoE) transformer designed for developers building agentic systems, conversational agents, RAG pipelines and multimodal assistants. Its main practical insight is that you can get a frontier-style multimodal model with far fewer active parameters at inference (41B active) by using a 975B-parameter sparse expert backbone — a tradeoff that reduces runtime compute while preserving multimodal capacity.
Key Capabilities
- Architecture and scale: 66-layer decoder-only transformer with a sparse MoE feed-forward backbone (tokens routed to 6 of 256 experts plus 2 shared experts). So what: enables a very large parameter count for capacity while limiting compute during inference to a much smaller active set.
- Native multimodality: hierarchical patch encoder for images and discrete-token audio encoding so text, image and audio inputs are projected into a shared hidden space and processed jointly. So what: simplifies building unified chatbots, captioning, multimodal instruction-following and audio+vision workflows without separate models.
- Deployment numerics and tooling: supports BF16 and NVFP4 weights and has community recipes for SGLang, vLLM, Unsloth, TokenSpeed and Hugging Face transformers. So what: makes local and cloud deployment feasible across a range of hardware and inference stacks.
- Open weights and evaluation: released with open weights and published safety/fairness evaluations; benchmarks show competitive multimodal and agentic performance while identifying known open-model failure modes.
Who it's for and tradeoffs
Great fit if you are a developer or researcher who needs an open-weight multimodal model for prototyping agents, tool-using chat assistants, multimodal retrieval, or RAG systems and you can accommodate nontrivial inference infrastructure. Look elsewhere if you require a lightweight on-device model, formal medical/legal-grade outputs without domain adaptation, or a turnkey hosted API — Inkling requires deployment engineering and downstream safeguards.
Practical tradeoffs: the sparse-MoE design reduces active inference cost compared with a dense 975B model but still demands significant memory/compute to host and serve; it can hallucinate, reflect dataset biases, and occasionally comply with adversarial role-play prompts, so defense-in-depth (output filters, rate limits, monitoring, human oversight) is recommended.
Where it fits
Inkling sits between dense open-weight multimodal models and closed frontier models: it enables experiments that need large capacity and multimodal fusion while remaining fully inspectable and fine-tunable by downstream teams. Recommended for research, fine-tuning, and integration into custom agent stacks rather than low-resource edge deployments or unvetted high-stakes decision systems.