• 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 » A

What Is AI Inference? How a Trained Model Produces Output

Published on: August 2, 2026
Barry Elad
Written By
Barry Elad
Barry Elad
Founder & Senior Journalist • 732 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:
AI Search Engine Statistics 2026: Usage, Market Share and Adoption
Anthropic Merges Claude Chat and Cowork Into One Window
Novo Partners With Anthropic for Faster Drug R&D
Robert A. Lee
Reviewed By
Robert A. Lee
Robert A. Lee
Senior Editor • 453 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 One Bundles Instagram, Facebook, WhatsApp Into One AI Subscription
How Many Videos Are on YouTube Statistics 2026: Key Data
How Do Promotional Codes Work in Online Gambling?
What Is AI Inference

AI inference is the moment a trained model stops learning and starts working, turning its knowledge into real-world results, according to Google Cloud‘s documentation. It takes in new data and produces an instant output, such as a prediction or a decision. This entry covers that lifecycle stage, not the formal-logic or statistical senses of the word.

Inference is the process where a trained AI model generates new outputs by reasoning and making predictions on new data, per NVIDIA’s glossary. The model applies learned knowledge in real time. Serving is a neighboring term. It is the process of deploying and managing the model for inference, and it often involves setting up an API endpoint, per Google Cloud.

Key Takeaways

  • Inference is the execution phase, and it uses the trained and fine-tuned model to make fast predictions on new, unseen data, according to Google Cloud. The process is a single, fast forward pass of new data.
  • Each individual prediction is far less computationally demanding than training.
  • Inference runs in two phases with opposite hardware profiles, per NVIDIA’s inference-optimization documentation. Prefill effectively saturates GPU utilization, and decode is a memory-bound operation.
  • Anthropic prices Claude Opus 5 at $5 per million base input tokens, $0.50 per million tokens on cache hits and refreshes, and $25 per million output tokens.
  • OpenAI lists gpt-5.6-sol at $5.00 short context input, $0.50 short context cached input, and $30.00 short context output.
  • An attacker can cause an integrity violation by mounting an evasion attack at deployment time or a poisoning attack at training time, according to NIST.

How Does AI Inference Work?

AI inference involves three steps that turn new data into a useful output: input data preparation, model execution, and output generation, according to Google Cloud. The analysis step is called a forward pass, a read-only step where the model applies its knowledge without learning anything new.

Inside that forward pass, a language model splits the work in two.

1. The Input Is Prepared

New data is provided first, for instance a photo you have just submitted. It is then prepped for the model, which might mean simply resizing it to the exact dimensions it was trained on.

2. Prefill Reads the Prompt

In the prefill phase, the LLM processes the input tokens to compute the intermediate states (keys and values), per NVIDIA. Those states are used to generate the first new token. The prefill phase performs a matrix-matrix operation that is highly parallelized and effectively saturates GPU utilization.

Prefill is the model reading a whole page at a glance. Everything is available at once, so the hardware has plenty to chew on.

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. Decode Writes the Answer One Token at a Time

In the decode phase, the LLM generates output tokens autoregressively one at a time, until a stopping criterion is met. Each sequential output token needs to know all the previous iterations’ output states. That is like a matrix-vector operation that underutilizes the GPU compute ability compared to the prefill phase.

The speed at which the data is transferred to the GPU from memory dominates the latency rather than how fast the computation actually happens. Decode is therefore a memory-bound operation.

4. KV Caching Stops Decode Redoing Work

One common optimization for the decode phase is KV caching, per NVIDIA. The decode phase generates a single token at each time step, but each token depends on the key and value tensors of all previous tokens.

The KV cache works like keeping earlier pages of a transcript open on the desk instead of pulling the file again for every sentence.

Time to first token (TTFT) measures how long you wait before seeing the model’s output. It is the time from query submission to the first received token, according to NVIDIA’s NIM benchmarking documentation. Inter-token latency (ITL) is the average time between consecutive tokens, also known as time per output token.

PhaseWhat happensBottleneckMetric that tracks it
PrefillThe model processes the input tokens to compute the keys and values used to generate the first new tokenCompute, since the matrix-matrix operation effectively saturates GPU utilizationTime to first token (TTFT)
DecodeThe model generates output tokens autoregressively one at a time until a stopping criteria is metMemory, since data transfer to the GPU dominates the latencyInter-token latency (ITL)

Source: NVIDIA developer documentation, NVIDIA NIM benchmarking documentation

The Split Shows Up on the Price List

The asymmetry is visible somewhere readers can check it. Anthropic charges $5 per million base input tokens on Claude Opus 5 against $25 per million output tokens. It prices a cache read (hit) at 0.1x the base input price. OpenAI lists the same three-way split on gpt-5.6-sol: $5.00 short context input, $0.50 short context cached input, and $30.00 short context output.

Prompt caching reduces costs and latency by reusing previously processed portions of a prompt across API calls. The API reads from cache at a fraction of the standard input price, according to Anthropic.

The cache-read discount is the prefill phase being skipped, priced. Two independent vendors publish the same shape: reading is cheap, writing is expensive, and re-reading something already processed is cheapest of all. We track model-by-model rates in our AI model price tiers, and the input-to-output gap holds across the tiers.

AI Inference vs Training vs Serving

AI training is the foundational learning phase, according to Google Cloud. It is a computationally intensive process where a model analyzes a massive dataset to learn patterns and relationships. It requires powerful hardware accelerators like GPUs and TPUs and can take anywhere from hours to weeks.

AI fine-tuning is a shortcut to training. It takes a powerful, pre-trained model and adapts it to a more specific task using a smaller, specialized dataset.

StageObjectiveProcessBusiness focus
TrainingCreate an accurate and knowledgeable modelIteratively learns from a large datasetModel accuracy and capability
Fine-tuningAdapt a pre-trained model to a more specific taskRefines an existing model with a smaller datasetEfficiency and customization
InferenceMake fast predictions on new, unseen dataA single, fast forward pass of new dataSpeed (latency), scale, and cost-efficiency
ServingDeploy and manage the model for inferencePackage the model and expose it as an APIReliability, scalability, and manageability of the inference endpoint

Source: Google Cloud documentation

Predictive machine learning involves a training stage in which a model is learned, according to NIST. It also involves a deployment stage in which the model is deployed on new, unlabeled data samples to generate predictions. Standards language and vendor language land in the same place. The deployment stage is where inference runs.

What Is the Difference Between AI Training and AI Inference?

Training teaches the model, and inference uses what it learned. Training iteratively learns from a large dataset and is computationally intensive. Inference makes fast predictions on new, unseen data through a single, fast forward pass, per Google Cloud. Each individual prediction is far less computationally demanding than training.

Types of AI Inference

Deployment shape is how the chip-vendor documentation organizes the category.

  • Batch inference combines multiple user requests to maximize GPU usage, providing high throughput for many users, per NVIDIA.
  • Real-time inference processes data instantly as it arrives, essential for applications needing immediate decisions, like autonomous driving or video analysis.
  • Distributed inference runs inference across multiple devices to parallelize computations for large models.
  • Disaggregated inference divides the inference process into two stages, analysis and response generation, on specialized systems.

Disaggregated inference is the prefill and decode split from the mechanics above, moved onto separate hardware pools. Accelerator vendor share and shipment figures sit in our AI accelerator market data.

Batching is priced as well as engineered. The Batch API allows asynchronous processing of large volumes of requests with a 50% discount on both input and output tokens, according to Anthropic. OpenAI lists a separate batch tier for gpt-5.6-sol at $2.50 for short-context input and $15.00 for short-context output.

One request’s prefill phase can overlap with another request’s generation phase, per NVIDIA’s NIM benchmarking documentation. That overlap is what lets a single accelerator serve many conversations without stalling on any one of them.

Why Does AI Inference Matter?

Inference is where AI delivers business value, according to Google Cloud. For anyone building with AI, understanding how to make inference fast, scalable, and cost-effective is the key to creating successful solutions.

Delivering millions of predictions in real-time requires a highly optimized and scalable infrastructure, even though each individual prediction is far less computationally demanding than training.

Model quality gets argued in training terms while almost every operational constraint a team actually hits lives in inference. Our AI benchmark coverage tracks capability rankings that turn over within a couple of update cycles. The latency and cost numbers a deployment team watches barely move with them.

Time to first token measures how long you wait before seeing the model’s output, per NVIDIA’s NIM benchmarking documentation. That number is what a user experiences as the pause before an answer appears.

Output quality sits on a separate axis from speed and cost, and it is measured separately in model hallucination rates.

Pros, Cons, and Risks of AI Inference

Advantages

  • Each individual prediction is far less computationally demanding than training, though delivering millions of predictions in real time requires highly optimized, scalable infrastructure.
  • The phase is optimized for speed and efficiency, often using techniques like speculative decoding, quantization, pruning, and layer fusion to enhance accuracy, per NVIDIA.
  • A cache read (hit) is priced at 0.1x the base input price. The API reads from cache instead of reprocessing the same large system prompt, document, or conversation history on every request.

Trade-offs and Risks

  • Decode underutilizes the GPU compute ability compared to the prefill phase. The speed at which the data is transferred to the GPU from memory dominates the latency.
  • Longer prompts increase TTFT because the attention mechanism uses the full input sequence to create the KV cache before generation begins.
  • Evasion attacks require the modification of testing samples to create adversarial examples that are misclassified by the model, according to NIST. Those adversarial examples often remain stealthy and imperceptible to humans.
  • Availability attacks may be initiated at training or deployment time, although their impacts are typically experienced at deployment time. They can be mounted as an energy-latency attack via query access.

NIST classifies these attacks along four dimensions, per its adversarial machine learning taxonomy. The first is the learning method and stage of the learning process when the attack is mounted. The rest are attacker goals and objectives, attacker capabilities, and attacker knowledge of the learning process.

An attack that inflates decode work is an attack on the invoice as much as on the service. Scoping what a deployed model may read, and capping how much work a single query can trigger, helps reduce that exposure without removing it. Refusal behavior under adversarial prompting is tracked separately in jailbreak attempt data.

Real-World Applications of AI Inference

Metered API Inference

Anthropic publishes per-million-token rates that separate base input, cache hits, and output. It states that introductory pricing of $2/$10 per million input/output tokens is in effect through August 31, 2026. The standard pricing of $3/$15 per million input/output tokens takes effect after that.

ModelBase input, per million tokensCache hits and refreshes, per million tokensOutput, per million tokens
Claude Opus 5$5$0.50$25
Claude Sonnet 5, through August 31, 2026$2$0.20$10
Claude Haiku 4.5$1$0.10$5

Source: Anthropic platform pricing documentation, accessed July 2026

Claude Haiku 4.5 sits lower again, at $1 per million base input tokens and $5 per million output tokens. Rates move, so treat the table as the published documentation on the capture date rather than a permanent price.

Benchmarking a Deployment

Total tokens per second (TPS) per system represents total output token throughput across all simultaneous requests, according to NVIDIA’s NIM benchmarking documentation.

Three numbers describe a running deployment: the first-token wait, the gap between tokens, and the system-wide throughput. Agent workloads that call a model in loops multiply all three, a pattern visible in autonomous agent adoption data.

Scenario: One Chat Request, End to End

A prompt arrives at the endpoint and prefill processes the whole thing at once, building the key and value tensors it needs. The first token comes back, and that gap is the time to first token.

Decode then emits the rest one token at a time until the stopping criteria is met. The spacing between those tokens is the inter-token latency. The bill splits the same way the hardware did. The prompt is charged at the input rate, the answer at the output rate, and any repeated prefix at the cache rate.

Is AI Inference More Expensive Than Training?

Per prediction, no. Each individual prediction is far less computationally demanding than training, according to Google Cloud. Training is a computationally intensive process that requires powerful hardware accelerators and can take anywhere from hours to weeks.

In aggregate, the picture inverts. Delivering millions of predictions in real-time requires a highly optimized and scalable infrastructure. Training runs on a schedule; inference repeats for every request, which is why the published per-million-token rates are the number that compounds.

Conclusion

Inference runs as two phases with opposite hardware profiles: prefill effectively saturates GPU utilization, and decode is a memory-bound operation, per NVIDIA’s inference-optimization documentation. Anthropic’s published rate for Claude Opus 5 prices that split directly, at $5 per million base input tokens against $25 per million output tokens. A cache read (hit) costs 0.1x the base input price. Holding those two facts together is what lets a team estimate a workload’s cost before running it.

Making inference fast, scalable, and cost-effective is the key to creating successful solutions, according to Google Cloud. The same stage carries the exposure, since an attacker can cause an integrity violation by mounting an evasion attack at deployment time. Availability attacks can be mounted as an energy-latency attack via query access, per NIST. Cost control and threat modeling meet at the same phase, which makes inference an operating discipline in its own right.

Definition of AI Token. Link to full glossary entry follows the description.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.

Read more

Published on: August 2, 2026

Share ChatGPT Perplexity

Explore More Terms

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.

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.

Model Card

Model Card

A model card is a short document released alongside a trained machine learning model that reports its intended uses, evaluation results and limitations.

AI Red Teaming

AI Red Teaming

AI red teaming is a structured testing effort that uses adversarial methods to find flaws, vulnerabilities, and misuse risks in a deployed AI system.

Frontier Model

Frontier Model

A frontier model is a highly capable general-purpose AI model that matches or exceeds today's most advanced systems, and triggers safety obligations.

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 Token in AI? How Models Count Text and Cost
What Is a Context Window? How AI Models Handle Long Inputs
What Is a Model Card? AI Documentation Standard Explained

Table of Contents

  • Key Takeaways
  • How Does AI Inference Work?
  • AI Inference vs Training vs Serving
  • Types of AI Inference
  • Why Does AI Inference Matter?
  • Pros, Cons, and Risks of AI Inference
  • Real-World Applications of AI Inference
  • Is AI Inference More Expensive Than Training?
  • Conclusion
Connect on Telegram
Anthropic Merges Claude Chat And Cowork
Artificial Intelligence

Anthropic Merges Claude Chat and Cowork Into One Window

By Barry Elad September 16, 2026
Novo Nordisk Anthropic Drug R D
Artificial Intelligence

Novo Partners With Anthropic for Faster Drug R&D

By Barry Elad September 16, 2026
Centerpoint Energy Data Breach Confirmation
Cybersecurity

CenterPoint Energy Confirms Breach After Hacker Claims 7.49M Records Stolen

By Sofia Ramirez September 16, 2026
Gemini 3 8 Live And Extended Thinking Launch
Artificial Intelligence

Google Launches Gemini 3.8 Live and Extended Thinking Models

By Barry Elad September 15, 2026
Meta Launched Meta One Subscription
Internet

Meta One Bundles Instagram, Facebook, WhatsApp Into One AI Subscription

By Robert A. Lee September 15, 2026
Microsoft Kb5002914 Breaks Excel Copypaste
Technology

Microsoft Confirms KB5002914 Breaks Excel Copy and Paste

By Sofia Ramirez September 15, 2026
Events Calendar Plugin Vulnerability Wordpress
Cybersecurity

The Events Calendar Plugin Exposes 600,000 Sites to Takeover

By Sofia Ramirez September 15, 2026
Homepod 27 Update Launched By Apple
Technology

Apple Releases HomePod Software 27 With AutoMix Support

By Sofia Ramirez September 14, 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
How Many Videos Are on YouTube Statistics
How Many Videos Are on YouTube Statistics 2026: Key Data
How Many People Work at WhatsApp
How Many People Work at WhatsApp 2026: Employee Count and History
Spotify Listening Statistics
Spotify Listening Statistics 2026: Average Listening Time
How Many Subscribers Does MrBeast Have
How Many Subscribers Does MrBeast Have in 2026? Channel Growth Statistics
WhatsApp Business Statistics
WhatsApp Business Statistics 2026: Real Market Insights
Udemy Statistics
Udemy Statistics 2026: Revenue and Learner Data
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 Search Engine Statistics Usage Market Share and Adoption
AI Search Engine Statistics 2026: Usage, Market Share and Adoption
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
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
Centerpoint Energy Data Breach Confirmation
CenterPoint Energy Confirms Breach After Hacker Claims 7.49M Records Stolen
Events Calendar Plugin Vulnerability Wordpress
The Events Calendar Plugin Exposes 600,000 Sites to Takeover
Gitlab Flaw Under Active Attack
GitLab Flaw Under Active Attack Draws CISA Warning
Vlc Media Player Flaw
VLC Media Player Flaws Expose Heap Memory, No Patch Yet
Papercut Ships Tested Fixes Ai Attacks
PaperCut Ships Tested Fixes After AI Agents Breach 395 Organizations
Idscan Data Breach Confirmation
IDScan Confirms Massive Data Breach of Drivers License Records
Artificial Intelligence
Anthropic Merges Claude Chat And Cowork
Anthropic Merges Claude Chat and Cowork Into One Window
Novo Nordisk Anthropic Drug R D
Novo Partners With Anthropic for Faster Drug R&D
Gemini 3 8 Live And Extended Thinking Launch
Google Launches Gemini 3.8 Live and Extended Thinking Models
Openai Ends 1 Us Government Deal
OpenAI Ends $1 Government Deal, Offers 50% Discount
Openai Samsung Ai Chip Alliance
OpenAI Taps Samsung for Breakthrough Next-Gen Chips
Openai Agents Hijack German Wiki Site
OpenAI Agents Hijacked German Wiki, Researchers Say
Internet
Meta Launched Meta One Subscription
Meta One Bundles Instagram, Facebook, WhatsApp Into One AI Subscription
Apple Wallet Ids Launch In Oklahoma
Apple Wallet IDs Launch in Oklahoma in Major Expansion
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
Technology
Microsoft Kb5002914 Breaks Excel Copypaste
Microsoft Confirms KB5002914 Breaks Excel Copy and Paste
Homepod 27 Update Launched By Apple
Apple Releases HomePod Software 27 With AutoMix Support
Microsoft Copilot Now In Carplay
Microsoft Brings Copilot on Apple CarPlay for iOS Users
Snapchat Social Event Planning Feature
Snap Brings Social Event Planning Feature With Private Invites
Apple Iphone 18 And 18 Pro Launched
iPhone 18 Pro Debuts With Breakthrough Camera Upgrades
Iphone Foldable Launch Rumours Mark Gurmann
Apple Foldable iPhone To Top $2,000 In Leaked Roadmap
Gaming
Xbox Live Down Again
Xbox Live Down Again: Sign-In Error 0x80004005 Hits Players
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
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.