• Skip to primary navigation
  • Skip to main content
  • Skip to primary sidebar
  • Skip to footer
Sq Magazine LogoSQ Magazine

Smarter Insights for a Fast-Moving Digital World

  • Latest News
  • Statistics
  • About
  • Contact
Subscribe
Home » Glossary » M

What Is Mixture of Experts (MoE)? Sparse Models Explained

Published on: August 24, 2026
Barry Elad
Written By
Barry Elad
Barry Elad
Founder & Senior Journalist • 717 Articles
Barry Elad is a seasoned journalist and analyst specializing in finance, technology, AI, and founder of SQ Magazine. He explores the world o...
LATEST POSTS:
Google Launches Gemini Omni 1.1 Flash With 4K Video Upscaling
Adobe Photoshop Adds AI Editor With Rival Models
Nvidia Strikes $12.9 Billion Hugging Face Deal, Report Says
Robert A. Lee
Reviewed By
Robert A. Lee
Robert A. Lee
Senior Editor • 438 Articles
Robert A. Lee is a journalist at SQ Magazine who unpacks the fast-moving worlds of gaming and internet trends. He tracks everything from maj...
LATEST POSTS:
Meta to Pay $18 Billion in Landmark Teen Safety Deal
WhatsApp Hits 1 Billion Passkey Users, Adds 2FA Passwords
How to Repair a Damaged Email Sender Reputation (2026 Guide)
What Is Mixture of Experts (MoE)

A mixture of experts (MoE) model is a sparse network whose feedforward block picks from distinct groups of parameters, the experts. At every layer, for every token, a router network chooses a small number of those groups to process the token, according to Mistral AI.

The name misleads. An expert here is a block of weights inside a neural network, separate from any human specialist and from the ensemble methods that older statistical literature labels the same way. The design goes back to a Sparsely-Gated Mixture-of-Experts layer consisting of up to thousands of feed-forward sub-networks. A trainable gating network determines a sparse combination of those experts to use for each example.

Key Takeaways

  • In Mixtral, the feedforward block picks from a set of 8 distinct groups of parameters, and a router network chooses two of those groups to process each token at every layer.
  • Mixtral has 46.7 billion total parameters but only uses 12.9 billion parameters per token. It processes input and generates output at the same speed and for the same cost as a 12.9 billion parameter model.
  • Llama 4 Maverick contains 17 billion active parameters, 128 experts, and 400 billion total parameters, according to Meta AI.
  • DeepSeek-V3 carries 671 billion total parameters with 37 billion activated for each token, per DeepSeek-AI.
  • MoE layers in Meta’s Llama 4 design use 128 routed experts and a shared expert. Each token is sent to the shared expert and also to one of the 128 routed experts.
  • All parameters are stored in memory, while only a subset of the total parameters are activated while serving these models. That improves inference efficiency by lowering model serving costs and latency.

How Does a Mixture of Experts Model Work?

Two moving parts carry the design: a set of expert sub-networks, and a router that picks between them. The technique increases the number of parameters of a model while controlling cost and latency, per Mistral AI. The model only uses a fraction of the total set of parameters per token. Everything else in the stack stays as it is across large language model architectures.

1. The feedforward block splits into experts

Each layer is composed of 8 feedforward blocks, the experts, according to Mixtral’s technical report. The attention machinery is untouched. Only the dense feedforward slab is cut into parallel copies, each holding its own weights.

A warehouse makes the shape concrete. The full catalog stays on the shelves, and a picker walks to only a few bins to fill any single order. Shelf space is the memory bill; walking distance is the compute bill.

2. The router scores every token

A trainable gating network determines a sparse combination of experts to use for each example, which is the mechanism the sparsely-gated layer introduced. Routing is learned during training rather than configured by hand. Each token sees two experts, and the selected experts can be different at each timestep.

Newsletter
Don’t chase tech news. We track it for you.

One weekly briefing with the launches, AI developments, and breaches that matter. No filler.

3. Only the selected experts run

Llama 4 alternates dense and mixture-of-experts layers for inference efficiency, per Meta AI. Its MoE layers use 128 routed experts plus a shared expert. The shared expert runs on everything. The routed pool is where the sparsity lives, since a token touches one member of it and skips the rest.

4. The outputs combine and pass on

A router network chooses two of the expert groups to process the token and combines their output additively. The merged vector then moves to the next layer, where the routing decision is made again from scratch.

A triage desk is the closer analogy. The desk reads each case and forwards it to two specialists rather than to every clinician in the building. The building still has to be staffed and lit whether or not a given specialist sees anyone that day.

ComponentWhat it doesExample from a shipped model
ExpertA feedforward sub-network holding its own block of parametersMixtral splits each feedforward block into 8 experts
Router (gating network)Scores every token and selects which experts runMixtral’s router picks 2 experts per token per layer
Shared expertRuns on every token regardless of the routing decisionLlama 4 sends each token to a shared expert
Routed expertsThe pool the router selects fromLlama 4 MoE layers hold 128 routed experts
Combination stepMerges the selected experts’ outputsMixtral combines the two outputs additively

Sources: Mistral AI, Meta AI

Those two moving parts produce a number that model tables almost always report wrong.

Active Parameters vs Total Parameters in MoE Models

Mixtral has 46.7 billion total parameters but only uses 12.9 billion parameters per token, according to Mistral AI. The technical report states the same split with rounded figures. Each token has access to 47 billion parameters but only uses 13 billion active parameters during inference.

Llama 4 Maverick contains 17 billion active parameters, 128 experts, and 400 billion total parameters, per Meta AI. Llama 4 Scout has 17 billion active parameters, 16 experts, and 109 billion total parameters. DeepSeek-V3 carries 671 billion total parameters with 37 billion activated for each token.

Every one of those announcements publishes an active figure and a total figure, and none of them divides one by the other. The quotient is what tells a reader how much of the model actually runs.

Mixtral activates 27.6% of its parameter count on any given token. Llama 4 Scout drops to 15.6%. DeepSeek-V3 runs at 5.5%. Llama 4 Maverick sits at 4.3%.

The ordering runs opposite to intuition. The bigger the headline parameter count, the smaller the share doing work on any single token. A specification cell reading 400 billion parameters describes storage rather than per-token work. A side-by-side model specification tracker needs both figures in the same row.

ModelActive parameters per token (billions)Total parameters (billions)Active share
Mixtral12.946.727.6%
Llama 4 Scout1710915.6%
DeepSeek-V3376715.5%
Llama 4 Maverick174004.3%

Sources: Mistral AI, Meta AI, DeepSeek-AI

All parameters are stored in memory, while only a subset of the total parameters are activated while serving these models. So the total count still sets the memory requirement even when it stops setting the compute requirement. The comparison only pays off once it is set against the architecture that MoE replaced.

Mixture of Experts vs Dense Models

In deep learning, models reuse the same parameters for all inputs. Mixture of experts instead selects different parameters for each incoming example. The result is a sparsely-activated model with outrageous numbers of parameters but a constant computational cost. That single difference reshapes the cost curve.

MoE architectures are more compute efficient for training and inference, according to Meta AI. Given a fixed training FLOPs budget, they deliver higher quality compared to a dense model. Quality at a fixed budget is a different axis from factual reliability, which LLM hallucination rate data measures on its own terms.

The cost lands elsewhere, since widespread adoption of MoE has been hindered by complexity, communication costs, and training instability.

DimensionDense modelMoE model
Parameters used per inputEvery parameter, on every inputOnly the experts the router selects
Parameter count reachableBounded by the compute budgetOutrageous numbers at constant computational cost
Memory while servingMatches the parameter countMatches the total count, not the active count
Training profileEstablished and stableComplexity, communication costs and training instability
Quality per fixed training FLOPs budgetLowerHigher, per Meta AI

Sources: Meta AI, Switch Transformers research

Are MoE models cheaper to run?

Sparse activation improves inference efficiency by lowering model serving costs and latency, while all parameters remain stored in memory, per Meta AI. The memory bill and the compute bill move separately here. Cheaper per token does not translate into cheaper to host, because the weights still have to sit somewhere.

Why Does Mixture of Experts Matter?

Conditional computation means parts of the network are active on a per-example basis. It has been proposed in theory as a way of dramatically increasing model capacity without a proportional increase in computation. The sparsely-gated layer achieved greater than 1000x improvements in model capacity, with only minor losses in computational efficiency on modern GPU clusters. It used an MoE of up to 137 billion parameters applied convolutionally between stacked LSTM layers.

The Switch Transformer simplified the MoE routing algorithm and obtained up to 7x increases in pre-training speed with the same computational resources. It then pre-trained up to trillion-parameter models and achieved a 4x speedup over the T5-XXL model. Speed at a fixed budget is what moved the idea out of the research literature.

The largest GLaM model has 1.2 trillion parameters, approximately 7x larger than GPT-3. It consumes only 1/3 of the energy used to train GPT-3 and requires half of the computation flops for inference. Those savings land on hardware budgets, which track AI chip shipment data more closely than they track any single architecture choice.

Our AI model coverage keeps surfacing the same lag. Capability rankings move every few release cycles, while the public shorthand for model size stays frozen at whichever figure an announcement led with. Model size stopped being a single number, so every capability comparison now needs two.

Pros, Cons, and Risks of Mixture of Experts

A design that changes what a parameter count means also changes what can go wrong.

Advantages

  • Model capacity increases without a proportional increase in computation.
  • Parameter counts rise to outrageous numbers while the computational cost stays constant.
  • Compute efficiency improves for training and inference. A fixed training FLOPs budget delivers higher quality than a dense model.
  • Activating only a subset of the total parameters lowers model serving costs and latency.

Trade-offs and Risks

  • Complexity, communication costs, and training instability have hindered widespread adoption.
  • All parameters are stored in memory while serving, even though only a subset is activated.
  • DeepSeek-V3 pioneers an auxiliary-loss-free strategy for load balancing.
  • Expert routing strategies that have cross-batch dependencies are vulnerable to attacks.

Cross-batch routing risk: Malicious queries can be sent to a model and can affect a model’s output on other benign queries if they are grouped in the same batch. Routing designs without cross-batch dependencies help reduce that exposure, and no routing choice removes it.

RiskWhat it looks likeMitigation direction
Training instabilityComplexity and communication costs during trainingSimplified routing algorithms
Memory footprintEvery parameter resident while servingCapacity planning against the total count
Expert load imbalanceTraffic concentrates on part of the expert poolExplicit load-balancing strategies
Cross-batch routingOne query influences another query’s output in the same batchRouting without cross-batch dependencies

Sources: Meta AI, DeepSeek-AI, Google DeepMind research

Routing is one of several ways an input can shift a model’s behavior. Training-time manipulation is a separate mechanism, tracked in training data poisoning research.

Real-World Applications of Mixture of Experts

Three shipped model families show the design at different scales, and each publishes its own figures.

Open-weight frontier models

Mixtral is a decoder-only sparse mixture-of-experts network whose feedforward block picks from a set of 8 distinct groups of parameters, per Mistral AI. It has 46.7 billion total parameters and only uses 12.9 billion per token. Open weights at that ratio put a frontier-scale model on hardware sized for a much smaller one.

Multimodal model families

Llama 4 models are the first Meta models that use a mixture-of-experts architecture, and they alternate dense and mixture-of-experts layers for inference efficiency. Llama 4 Scout supports a context length of 10 million tokens, according to Meta AI.

Very large open reasoning models

DeepSeek-V3 is a Mixture-of-Experts language model with 671 billion total parameters and 37 billion activated for each token. It was pre-trained on 14.8 trillion diverse and high-quality tokens and required only 2.788 million H800 GPU hours for its full training. The training-cost figure is the part that made the release notable.

Scenario: One token moves through an MoE layer

  • The token arrives at the layer as a vector carried forward from the attention block.
  • The router network chooses two of the expert groups.
  • Only those two experts run their feedforward computation; the remaining groups stay idle in memory.
  • Their outputs combine additively. The combined vector then passes to the next layer.
  • At the next timestep, the router can select different experts for the same sequence.

Every one of those deployments inherits the same open question about the router.

Is Mixture of Experts More Secure Than a Dense Model?

No, and the architecture adds a surface that a dense model does not have. Expert routing strategies that have cross-batch dependencies are vulnerable to attacks. Malicious queries can affect a model’s output on other benign queries if they are grouped in the same batch. That result comes from a proof-of-concept attack in a toy experimental setting.

The scoping matters. The work establishes a mechanism under laboratory conditions, and prevalence in deployed systems remains unmeasured.

All parameters are stored in memory while only a subset activates during serving. Sparse activation shrinks the compute per token and leaves the resident weight set where it was. Guardrail bypass is measured on a separate axis, in LLM jailbreak success rate data.

Conclusion

Mixtral holds 46.7 billion total parameters and only uses 12.9 billion per token, one instance of the total-versus-active split these architectures turn on. That share, 27.6%, is what a single parameter count hides. Llama 4 Maverick widens the same gap to 17 billion active against 400 billion total, according to Meta AI.

The practical reading for anyone comparing models is that one figure no longer describes a system. One number sets the memory bill, the other sets the compute bill, and on current releases the two differ by more than an order of magnitude. Any comparison that quotes only the larger of the two is describing storage.

Definition of AI Inference. Link to full glossary entry follows the description.AI Inference

AI inference is the execution phase where a trained AI model applies what it learned to new, unseen data and produces an output such as a prediction.

Read more

Definition of Context Window. Link to full glossary entry follows the description.Context Window

A context window is all the text an AI model can reference when generating a response, measured in tokens and shared with the model's own output.

Read more

Published on: August 24, 2026

Share ChatGPT Perplexity

Explore More Terms

Context Window

Context Window

A context window is all the text an AI model can reference when generating a response, measured in tokens and shared with the model's own output.

AI Inference

AI Inference

AI inference is the execution phase where a trained AI model applies what it learned to new, unseen data and produces an output such as a prediction.

AI Token

AI Token

An AI token is the small unit of text, often a subword, that a language model reads, generates, counts against its context window, and bills for.

AI Hallucination

AI Hallucination

An AI hallucination is output a generative model states with confidence but that is factually wrong, unsupported, or contradicts its own prompt.

Primary Sidebar

Connect With Us

facebook x linkedin google-news telegram pinterest whatsapp email
google-preferred-source-badge Add as a preferred source on Google

You Should Also Read

What Is a Context Window? How AI Models Handle Long Inputs
What Is AI Inference? How a Trained Model Produces Output
What Is a Token in AI? How Models Count Text and Cost

Table of Contents

  • Key Takeaways
  • How Does a Mixture of Experts Model Work?
  • Active Parameters vs Total Parameters in MoE Models
  • Mixture of Experts vs Dense Models
  • Why Does Mixture of Experts Matter?
  • Pros, Cons, and Risks of Mixture of Experts
  • Real-World Applications of Mixture of Experts
  • Is Mixture of Experts More Secure Than a Dense Model?
  • Conclusion
Connect on Telegram
Google Gemini Omni 1 1 Flash Quick 4k Upscaling
Artificial Intelligence

Google Launches Gemini Omni 1.1 Flash With 4K Video Upscaling

By Barry Elad August 27, 2026
Adobe Photoshop Adds Ai Assisted Editor
Artificial Intelligence

Adobe Photoshop Adds AI Editor With Rival Models

By Barry Elad August 27, 2026
Citrix NetScaler Bug CVE- -8452 Exploited in the Wild
Cybersecurity

Citrix NetScaler Bug CVE-2026-8452 Exploited in the Wild

By Sofia Ramirez August 27, 2026
Nvidia Strikes 12 9 Billion Hugging Face Deal Report Says
Artificial Intelligence

Nvidia Strikes $12.9 Billion Hugging Face Deal, Report Says

By Barry Elad August 27, 2026
Apple Confirms September 9 iPhone Event Under CEO Ternus
Technology

Apple Confirms September 9 iPhone Event Under CEO Ternus

By Sofia Ramirez August 26, 2026
Meta to Pay 18 Billion in Landmark Teen Safety Deal
Internet

Meta to Pay $18 Billion in Landmark Teen Safety Deal

By Robert A. Lee August 26, 2026
Boston Scientific Cyberattack Disrupts Global Order Shipping
Cybersecurity

Boston Scientific Confirms Cyberattack Behind Shipping Disruption

By Sofia Ramirez August 26, 2026
Critical Gitea Rce Actively Exploited Featured 3
Cybersecurity

Gitea Critical RCE Flaw Under Active Attack, CISA Warns

By Sofia Ramirez August 26, 2026

Footer

SQ Magazine Logo

Smarter Insights for a Fast-Moving Digital World

Connect With Us

Follow Us on Google News

Editorial & Trust

  • About
  • Publishing Principles
  • Fact-Check Policy
  • Corrections Policy
  • Ethics Policy
  • Disclaimer

Worth Checking

  • Social Media Attention Span Stats
  • Gen Z Social Media Statistics
  • TikTok vs. Instagram Statistics
  • LLM Hallucination Statistics
  • Spotify User Statistics
  • Apple Customer Loyalty Statistics
  • Data Breach Tracker
  • Patch Tuesday Dashboard
  • AI Model Tracker
  • AI Funding Tracker
Contact Us
13570 Grove Dr #189,
Maple Grove, MN 55311,
United States
10 a.m. to 6 p.m. | Every day

Copyright © 2022–2026 SQ Magazine. All Rights Reserved. Powered by the Neural Stack.

  • Privacy Policy
  • Terms
  • Accessibility Statement
Company
  • About Us
  • Our Team
  • Our Mission
  • Core Values
Discover
  • Brand Assets
    Brand Assets
  • Stats Methodology
    Stats Research Process
  • Glossary
    Glossary
Categories
  • Internet
  • Technology
  • Artificial Intelligence
  • Gaming
  • Cybersecurity
Internet
WhatsApp Business Statistics
WhatsApp Business Statistics 2026: Real Market Insights
Udemy Statistics
Udemy Statistics 2026: Revenue and Learner Data
Coursera Statistics
Coursera Statistics 2026: Learners, Revenue and Growth Data
Reddit vs X Statistics
Reddit vs X Statistics 2026: Users and Revenue
Apple Music Subscriber Statistics
Apple Music Subscriber Statistics 2026: Real User Insights
How Many Times Per Day Does The Average Person Check Social Media Statistics
How Many Times Per Day Does the Average Person Check Social Media Statistics 2026: Latest Insights
Technology
How Many iPhones Has Apple Sold
How Many iPhones Has Apple Sold in 2026? Units Sold by Year
How Many Employees Does Amazon Have
How Many Employees Does Amazon Have 2026: Workforce Growth
Netflix vs. Hulu Statistics
Netflix vs Hulu Statistics 2026: Viewer Growth Data
TripAdvisor Statistics
TripAdvisor Statistics 2026: Revenue, Reviews, Viator and TheFork Data
Search Engine Statistics
Search Engine Statistics 2026: Market Share, Volume & AI Shift
NVIDIA Employee Count Statistics
NVIDIA Employee Count Statistics 2026: Headcount, R&D, and Revenue
Artificial Intelligence
AI Music Statistics
AI Music Statistics 2026: Generation, Adoption and Industry Impact
AI Coding Statistics
AI Coding Statistics 2026: Adoption, Productivity and Market Data
How Much Content on Social Media Is AI Generated Statistics
How Much Content on Social Media Is AI Generated Statistics 2026: Hidden Truths
ChatGPT vs DeepSeek Statistics
ChatGPT vs DeepSeek Statistics 2026: Users, Benchmarks & Pricing
ChatGPT vs Claude vs Gemini vs Perplexity Statistics
ChatGPT vs Claude vs Gemini vs Perplexity Statistics 2026: Users, Revenue & Market Share
How Many People Work At Midjourney
How Many People Work At Midjourney 2026: Lean Team, Big Revenue
Gaming
Gaming Statistics
Gaming Statistics 2026: Market Size, Players, Revenue, and Platforms
Roblox vs Minecraft Statistics
Roblox vs Minecraft Statistics 2026: Players, Revenue, Creators
Online Gambling Regulations Statistics
Online Gambling Regulations Statistics 2026: Global Compliance and Enforcement Data
Fantasy Sports Statistics
Fantasy Sports Statistics 2026: Users, Revenue & Trends
Apex Legends Statistics
Apex Legends Statistics 2026: Players, Revenue, and Esports
Fortnite Statistics
Fortnite Statistics 2026: Players, Revenue, Esports, and Engagement
Cybersecurity
Signal Statistics
Signal Statistics 2026: Users, Finances and Encryption Adoption
Password Statistics
Password Statistics 2026: Credential Theft, MFA, and the Passkey Tipping Point
Identity Theft Statistics
Identity Theft Statistics 2026: Key Fraud Data and Trends
CVE Statistics
CVE Statistics 2026: Severity Distribution and Top Affected Vendors
Dark Web AI Tool Marketplace Statistics
Dark Web AI Tool Marketplace Statistics 2026: Explosive Market Growth
API Security Breach Statistics
API Security Breach Statistics 2026: Hidden Threats
Categories
  • Cybersecurity
  • Artificial Intelligence
  • Internet
  • Technology
  • Gaming
Cybersecurity
Citrix NetScaler Bug CVE- -8452 Exploited in the Wild
Citrix NetScaler Bug CVE-2026-8452 Exploited in the Wild
Boston Scientific Cyberattack Disrupts Global Order Shipping
Boston Scientific Confirms Cyberattack Behind Shipping Disruption
Critical Gitea Rce Actively Exploited Featured 3
Gitea Critical RCE Flaw Under Active Attack, CISA Warns
ReliaQuest Says Device Trust Held Against Phishing Attack
ReliaQuest Says Device Trust Held Against Phishing Attack
Mandiant Avdh Unearths 100 Critical Code Flaws
Mandiant AVDH Unearths 100+ Critical Code Flaws
Azure Data Breach Fortune 500 Companies
Massive Azure Breach Hits McDonald’s, Vodafone, TCS and More
Artificial Intelligence
Google Gemini Omni 1 1 Flash Quick 4k Upscaling
Google Launches Gemini Omni 1.1 Flash With 4K Video Upscaling
Adobe Photoshop Adds Ai Assisted Editor
Adobe Photoshop Adds AI Editor With Rival Models
Nvidia Strikes 12 9 Billion Hugging Face Deal Report Says
Nvidia Strikes $12.9 Billion Hugging Face Deal, Report Says
Anthropic Identifies Cause of Claude AI Model Errors
Claude is Down : Anthropic Scrambles to Fix The Global Outage
Chatgpt Update Brings Apple Messages To Mac
New ChatGPT Update Brings Apple Messages to Mac
Ramp Launches Router Com To Cut Ai Bills
Ramp Launches Router.com to Cut AI Bills by 40%
Internet
Meta to Pay 18 Billion in Landmark Teen Safety Deal
Meta to Pay $18 Billion in Landmark Teen Safety Deal
Whatsapp Brings Passkeys 2fa
WhatsApp Hits 1 Billion Passkey Users, Adds 2FA Passwords
Apple Eu App Store Fee Reduction
Apple Sets New EU App Store Fees, Effective October 1
Github Outage Aug 2026
GitHub Down: Outage Hits Thousands of Users Worldwide
Russia S Fsb Charges Telegram Founder Durov With Terrorism
Russia’s FSB Charges Telegram Founder Durov With Terrorism
Aws Cloudfront Outage Triggers Global 5xx Errors
AWS CloudFront Outage Triggers Global 5xx Errors
Technology
Apple Confirms September 9 iPhone Event Under CEO Ternus
Apple Confirms September 9 iPhone Event Under CEO Ternus
Apple Mac Studio M5 Chip
New Mac Studio M5 Ultra Brings Massive On-Device AI Power
Walmart Finally Adds Apple Pay Ending Decade-Long Holdout
Walmart Adds Apple Pay and Google Pay Starting August 24
Meta Launches Pocket Ai Game Maker
Meta Launches Pocket AI Game Maker Nationwide in the US
Lexa Free On Fire Tv
Amazon Makes Alexa+ Free on Fire TV, Drops $19.99 Fee
Google Pixel 11 Lands At 899
Google Pixel 11 Lands at $899 With Faster Tensor G6 Chip
Gaming
Gta Vi Official Cover Art
GTA 6 Pre-Orders Start June 25, New Cover Art Unveiled
Epic Games Teases Unreal Engine 6 For Rocket League
Epic Games Teases Unreal Engine 6 for Rocket League
Stardew Valley Launched For Nintendo Switch 2 Edition
Stardew Valley Switch 2 Edition Arrives with Online Co-op
Hogwarts Legacy Game Crosses 40m Downloads
Hogwarts Legacy Crosses 40M Sales, Beating Industry Giants
Pubg Black Budget Closed Alpha Launched
PUBG: Black Budget Launches Closed Alpha Test With a Bold PvPvE Twist
Counter Strike 2 Skin Market Crashes After Valve Update
Counter-Strike 2’s $5.9 Billion Skin Economy Just Got Shattered
Newsletter

Too much tech noise?

We respect your time. One high-signal briefing a week: tech, AI, and security. Nothing else.

Newsletter

The SQ Briefing

We track tech, AI, and security 24/7. You get a 5-minute weekly summary.