Tech Trends

A curated log of what is actually shipping across the parts of the field I work in — frontier models, inference efficiency, agents, multimodal, and embodied AI. Every entry links to a primary source or a substantive write-up.

On accuracy. This is a hand-maintained snapshot, last reviewed 2 August 2026. Entries marked forecast are analyst projections or stated expectations rather than shipped results — I keep them separate deliberately, because the two get conflated constantly in trend coverage.

Frontier & Open-Weight Models Inference Efficiency & Architecture Agentic AI & Interoperability Vision-Language & Multimodal World Models & Embodied AI

Frontier & Open-Weight Models

Jul 2026

Kimi K3 — open weights at frontier scale

Moonshot AI released the weights and technical report for Kimi K3: a 2.8T-parameter mixture-of-experts model with native visual understanding and a 1M-token context window. The notable part is architectural rather than dimensional — Kimi Delta Attention with attention residuals, and a LatentMoE design activating 16 of 896 experts, reported at roughly 2.5× the scaling efficiency of K2. Moonshot also opened parts of the surrounding stack: attention kernels, an MoE communication library, and infrastructure for running agent environments at scale.

Sources: VentureBeat · HuggingFace model overview

Apr–Jun 2026

DeepSeek V4 — efficiency as the headline feature

DeepSeek shipped V4 in two sizes under MIT licence: V4-Pro at 1.6T total parameters with 49B activated, and V4-Flash at 284B with 13B activated. The architecture interleaves Compressed Sparse Attention with Heavily Compressed Attention; at 1M-token context, V4-Pro is reported to need about 27% of the per-token inference FLOPs and 10% of the KV cache of V3.2. That framing — shipping a release whose headline number is cost rather than capability — is itself the trend.

Sources: Architecture write-up · DeepSeek-V4 paper · Weights

Inference Efficiency & Architecture

2026

The design objective shifted from scale to efficiency

The clearest through-line of the year is that architecture work is now aimed at inference cost rather than parameter count, with hybrid attention and compression schemes cutting serving memory by close to an order of magnitude. Multi-head latent attention has emerged as the dominant approach at scale, and long-context efficiency has become the priority as models are increasingly deployed inside agent harnesses that hold ever-larger contexts.

Sources: LLM architecture review 2026 · Inference optimization guide

2026

Hybrid transformer / state-space stacks

Rather than choosing between attention and state-space models, recent designs alternate them — NVIDIA's Nemotron 3 interleaves standard attention layers with Mamba-2 SSM layers to hold long contexts more cheaply. The pattern concedes that neither primitive is right for every layer, which is a meaningfully different stance from the pure-transformer consensus of the preceding years.

Source: LLM architecture review 2026

2026

KV cache compression as an active research front

With cache capacity setting the real ceiling on serving concurrency, a cluster of 2026 work attacks it directly: quantizing the cache (TurboQuant), evicting low-value keys, and fusing block-level with token-level sparse attention. Separately, treating inference cost as a first-class term inside the scaling objective — rather than optimising training loss and paying serving cost afterwards — is now an explicit research direction.

Sources: Inference optimization research guide · Scaling Laws Meet Model Architecture

Agentic AI & Interoperability

2026

Two protocols settled the interoperability question

The field converged on a two-protocol split rather than a single winner: MCP for how an agent reaches tools and data, and A2A for how agents discover and delegate to each other across vendor boundaries. A2A's Agent Cards — cryptographically signed capability descriptions — give discovery a trust story, which is the piece that makes cross-organisation agent communication plausible rather than merely possible.

Sources: Agentic AI trends 2026 · Breakthroughs shaping agentic AI

Jan–Feb 2026

Agent governance arrived before most deployments did

Singapore's IMDA published a Model AI Governance Framework for Agentic AI in January 2026 — the first comprehensive governance framework aimed specifically at autonomous agents, requiring each agent to carry a verifiable digital identity and an audit trail. NIST's Center for AI Standards and Innovation followed with an AI Agent Standards Initiative in February. Identity and traceability are becoming compliance requirements rather than engineering preferences.

Source: Agentic AI trends 2026

2026

Framework consolidation around graph-structured agents

LangGraph has become the common choice for production agent systems, with Google's ADK established as the code-first alternative covering tools, sessions, memory, evaluation, and deployment. The shared direction is explicit state machines over implicit prompt chains — agents defined as inspectable graphs you can resume and audit, rather than loops whose behaviour is only observable in the transcript.

Sources: Agentic frameworks 2026 · JetBrains framework survey

2026 forecast

Projected enterprise adoption

Gartner projects that 40% of enterprise applications will embed AI agents by the end of 2026, up from under 5% in 2025, with the agentic market growing from roughly $7.8B to over $52B by 2030. Worth treating as a directional signal rather than a measurement — adoption forecasts in this field have a poor track record — but the direction is consistent with where tooling and governance effort is going.

Source: Agentic AI trends 2026

Vision-Language & Multimodal

2026

DeepSeek-OCR: text as an image compression channel

DeepSeek-OCR introduces "contexts optical compression" — rendering text as images to compress context, reporting up to 20× compression while holding roughly 97% OCR accuracy at ratios below 10×. The interesting implication runs past OCR: if visual tokens can carry text more densely than text tokens, the boundary between the vision encoder and the context window becomes a design choice rather than a given.

Source: Open-source VLM guide 2026

Apr 2026

Capable VLMs on a single consumer GPU

Google's Gemma 4 landed in April 2026 with competitive vision-language capability under a permissive licence and a footprint that fits a single RTX 4090. Alongside Alibaba's Qwen3-VL, the sub-35B tier now covers document understanding, visual question answering, and OCR locally — which changes the calculus for anything with data-residency constraints.

Sources: Top VLMs 2026 · Local VLMs 2026

CVPR 2026

VLM-3R: spatial grounding from monocular video

VLM-3R augments a vision-language model with instruction-aligned 3D reconstruction, giving spatial understanding from ordinary single-camera video without depth sensors. It sits on the line I find most interesting in multimodal work — moving from models that describe a scene to models that hold a geometric representation of it.

Source: VLM-3R (CVPR 2026)

World Models & Embodied AI

May–Jun 2026

Learned simulators moved from evaluation into the training loop

The 2026 surveys mark a shift in world-model research: models that were used to validate or rank candidate policies are now being used for reinforcement learning, post-training, and co-evolving optimisation, with world models increasingly integrated into policy generation itself rather than sitting beside it. How to evaluate a world model for decision-making — as opposed to for visual fidelity — has become its own open question.

Sources: World Model for Robot Learning: A Survey · Evaluating world models for embodied decision-making

2026 forecast

Continual learning and memory as the stated next frontier

The direction repeatedly named by lab leadership — Demis Hassabis among them — is that the next substantial gains come from targeted algorithmic work on continual learning, memory architectures, world models, and planning, rather than from scale alone. Persistent-memory agents and omni-models spanning text, vision, action, and memory are described as beginning to ship. Recorded here as a stated expectation, not a result.

Source: 2026 world models and continual learning

Last reviewed 2 August 2026. Corrections welcome — dkiran238@gmail.com. For the engineering side of building on top of all this, see Articles.