Introducing Vera 1.6 - Our latest agentic modelFind out more
Mar 2, 2026·Research·Release

Introducing Vera 1.6

A unified multimodal model built for frontier agentic performance at scale.

Technical Paper
Vera 1.6

We introduce Vera 1.6, a multimodal language model developed by Cortex Research and purpose-built for agentic applications. Vera 1.6 is a hybrid model in which efficient linear attention layers alternate with periodic full attention layers within a Sparse Mixture-of-Experts (SMoE) feed-forward structure, yielding favourable inference efficiency without sacrificing model capacity. The model is trained on a 150B-token synthetic dataset assembled with the NVIDIA NeMo Data Designer framework and further aligned via Reinforcement Learning. Vera 1.6 demonstrates strong performance across instruction following, graduate-level reasoning, multilingual understanding, agentic tool use, and multimodal comprehension. A 1M-token context window, native vision and video processing, and support for more than 201 languages make it well suited as the backbone for production-grade agentic AI systems.


Introduction

Recent advances in large language models have demonstrated remarkable capabilities across reasoning, code generation, and multimodal understanding. Deploying such models in production agentic systems — where a model must autonomously execute multi-step tasks, interact with external tools, navigate web interfaces, and sustain coherence across extremely long contexts — raises architectural and training challenges that general-purpose designs are not optimally equipped to address.

Vera 1.6 is Cortex Research's second-generation multimodal model in the Vera series, designed from the outset for agentic workloads. The model is a hybrid in which linear recurrent attention layers alternate with periodic full quadratic attention layers, coupled throughout with Sparse Mixture-of-Experts (SMoE) feed-forward blocks. Linear attention operates in O(L) time with respect to sequence length L, making long-context inference tractable, while interleaved full attention layers preserve global context integration. SMoE routing further decouples model capacity from per-token compute cost, as only a small subset of experts participates in each forward pass.


Model Architecture

Vera 1.6 is a Causal Language Model augmented with a Vision Encoder, forming a unified Vision-Language backbone. The core language model adopts a hierarchical hybrid design comprising 40 layers organised into 10 macro-blocks. Each macro-block contains four sub-blocks that interleave efficient linear and full quadratic attention with sparse feed-forward routing, in a 3:1 ratio of linear-to-quadratic attention — reducing per-token FLOPs for the majority of layers while periodic full attention layers maintain global context integration across the 1M-token window.

Sub-blockRepetitions
Linear Attention → MoE
Full Attention → MoE

Linear Attention

The primary attention mechanism is a linear recurrent formulation that maintains a fixed-size recurrent state rather than an expanding KV cache, achieving O(L) inference complexity with respect to sequence length L, making long-context inference tractable. An asymmetric head configuration — more value heads than query/key heads — increases representational capacity in the value projection while keeping recurrent state updates computationally lean.

ParameterValue
Linear Attn. Heads (V)32
Linear Attn. Heads (QK)16
Head Dimension128

Full Attention

One full quadratic attention sub-block per macro-block employs Grouped-Query Attention (GQA) with a 16:2 query-to-KV head ratio, reducing KV-cache memory by 8× relative to standard multi-head attention while retaining model quality. Rotary Position Embeddings (RoPE) are applied with a compressed head dimension of 64, supporting long-range dependency modelling across extended sequences. This configuration enables single-node deployment practical for enterprise customers.

ParameterValue
Query Heads16
Key / Value Heads2 (GQA)
Head Dimension256
RoPE Dimension64

Sparse Mixture-of-Experts

Every attention sub-block is followed by a Sparse Mixture-of-Experts (SMoE) feed-forward block. A learned router selects a small number of task-specialised experts per token while one shared expert remains always active, providing a stable general-purpose computation path. The capacity multiplier — the ratio of total to simultaneously active experts — reaches approximately 28×, substantially expanding effective model capacity without a proportional increase in per-token compute cost.

ParameterValue
Total Experts256
Activated / Token8 Routed + 1 Shared
Expert Interm. Dim.512
Routing StrategyTop-K + shared expert

Vision Encoder

Vera 1.6 incorporates a Vision Encoder that projects image and video feature maps into the language model embedding space, forming a unified Vision-Language model without separate specialist modules. The encoder handles still images, multi-page documents, and video sequences, with representations aligned to the language backbone through a learned projection layer.

PropertyValue
Model TypeCausal LM + Vision Encoder
ArchitectureHybrid: Linear Attention + SMoE
Hidden Dim.2,048
Num. Layers40
Token Vocab248,320 (padded)
Context Window1,000,000 tokens
Languages150+
ModalitiesText, Image
TrainingCausal LM + RL (agentic)
Dataset150B token synthetic corpus
Data ToolNVIDIA NeMo Data Designer
HardwareDGX B200 (8× B200, 1,440 GB)

Training Methodology

Base Model

Vera 1.6 is initialised from a base model with broad multilingual competence, strong mathematical reasoning, and code comprehension. This starting point provides a well-conditioned foundation for the domain-specific alignment stages that follow.

Agentic Supervised Fine-tuning

The supervised fine-tuning stage draws on a 150B-token synthetic dataset assembled using the NVIDIA NeMo Data Designer framework, constructed to span the full breadth of skills required for agentic deployment:

  • Multi-step task planning and execution
  • API and tool invocation with complex function schemas
  • Web browsing and information retrieval in agentic settings
  • Terminal and shell command execution sequences
  • Long-context document processing and synthesis
  • Multimodal instruction following with interleaved vision inputs
  • Cross-lingual generalisation across 201+ languages

Reinforcement Learning Alignment

Following SFT, a Reinforcement Learning stage aligns model behaviour with agentic task objectives. Reward signals are derived from task success metrics across code execution outcomes, tool-call accuracy, instruction adherence, and multimodal comprehension quality. This stage yields measurable gains in self-correction, long-horizon planning, and reliable external tool invocation within agentic pipelines.

Training Infrastructure

All training was conducted on a single NVIDIA DGX B200 node.

ComponentSpecification
GPU8× NVIDIA B200 (Blackwell)
GPU Memory1,440 GB total
CPU2× Intel Xeon Platinum 8570
System Memory2 TB DDR5
Storage8× 3.84 TB U.2 NVMe
OSDGX OS
InterconnectNVLink (GPU-to-GPU)

Benchmark Evaluation

Vera 1.6 was evaluated across twelve diverse benchmarks spanning instruction following, scientific reasoning, mathematics, multilingual understanding, agentic tool use, and multimodal comprehension.

Vera 1.6 benchmark results across all twelve evaluations
BenchmarkScoreCategory
HMMT Feb 202592.0%Mathematics
OmniDocBench v1.589.3%Document Understanding
Video-MME87.3%Video Reasoning
MMMLU86.2%Multilingual
GPQA Diamond85.9%Graduate Science
IFBench76.5%Instruction Following
MMMU-Pro75.1%Visual Reasoning
SWE-bench Verified72.4%Agentic Coding
BFCL V469.1%Tool Use
ERQA64.7%Embodied Reasoning
BrowseComp61.0%Agentic Search
Terminal-Bench 241.6%Terminal Coding

Vera 1.6 achieves particularly strong performance on mathematical reasoning (HMMT Feb 2025: 92.0%), document understanding (OmniDocBench v1.5: 89.3%), and video comprehension (Video-MME: 87.3%). A MMMLU score of 86.2% confirms broad multilingual capability across supported languages. Graduate-level scientific reasoning at 85.9% (GPQA Diamond) reflects the contribution of the RL alignment stage to complex multi-step inference.

Agentic benchmarks exhibit expected task-dependent variance. SWE-bench Verified (72.4%) and BFCL V4 (69.1%) reflect strong capability in code-based and tool-use agentic tasks. Terminal-Bench 2 (41.6%) and BrowseComp (61.0%) identify active development areas in low-level terminal execution and autonomous web navigation; both are prioritised in the subsequent release cycle.


Discussion

Architectural Trade-offs

The hybrid model design — linear attention alternating with full attention within a sparse MoE feed-forward structure — represents a deliberate engineering trade-off targeting production agentic deployment. The 3:1 linear-to-full ratio substantially reduces per-token FLOPs across the majority of layers. GQA (16Q/2KV) in the full attention sub-blocks cuts KV-cache memory by 8× relative to standard multi-head attention, enabling single-node deployment at scales practical for enterprise inference. Within the SMoE layers, the shared expert guarantees a consistent base-level computation path for all inputs, while the learned router assigns specialised experts per token — providing fine-grained, input-conditioned computation without proportionally increasing inference cost.

Limitations

Terminal-Bench 2 performance (41.6%) reveals that low-level shell execution remains challenging, likely owing to the compounding sensitivity of sequential commands to earlier errors and relatively limited coverage of terminal-execution trajectories in the training distribution. BrowseComp (61.0%) similarly reflects the difficulty of sustained autonomous web navigation over long horizons. Both areas are being addressed through targeted synthetic data generation and refined RL reward shaping.

Future Work

Planned work includes: expanded terminal and shell execution data to improve robustness on sequential command tasks; broader tool-use coverage across novel API schemas; enhanced video understanding for extended and streaming inputs; additional modalities beyond image and video; and further RL alignment targeting complex multi-agent coordination and collaborative agentic scenarios.


Conclusion

We have presented Vera 1.6, a multimodal hybrid model combining linear and full attention within a Sparse Mixture-of-Experts feed-forward structure, purpose-built for agentic applications. The model achieves competitive results across mathematical reasoning, document understanding, multilingual knowledge, and graduate-level scientific question answering, while maintaining efficient per-token inference through sparse expert routing.

A 1M-token context window and support for more than 201 languages make Vera 1.6 a capable backbone for production-grade agentic AI systems. This work reflects Cortex Research's commitment to architectures that balance frontier task performance with practical deployment efficiency.