Grok 4 Fast Non-Reasoning is the speed-optimized, non-reasoning variant of xAI's Grok 4 Fast. It delivers fast inference without chain-of-thought overhead, tailored for high-throughput applications within a context window of 2M tokens.
import { streamText } from 'ai'
const result = streamText({ model: 'xai/grok-4-fast-non-reasoning', prompt: 'Why is the sky blue?'})What To Consider When Choosing a Provider
- Configuration: This variant produces direct answers without chain-of-thought output. If you need to inspect the model's reasoning process or require multi-step analytical depth, use the reasoning variant instead.
- Configuration: Without reasoning overhead, Grok 4 Fast Non-Reasoning delivers higher tokens-per-second throughput. This is ideal for streaming applications and high-volume pipelines.
- Zero Data Retention: AI Gateway does not currently support Zero Data Retention for this model. See the documentation for models that support ZDR.
- Authentication: AI Gateway authenticates requests using an API key or OIDC token. You do not need to manage provider credentials directly.
When to Use Grok 4 Fast Non-Reasoning
Best For
- High-throughput production APIs: Direct answers at low latency serve end users best
- Chat and conversational interfaces: Users expect fast, natural responses without verbose reasoning
- Text generation and content creation: Drafting, editing, and rephrasing tasks where throughput matters more than deep reasoning
- Classification and routing pipelines: That categorize inputs quickly before downstream processing
- Tool-calling agentic workflows: The model needs to decide and act quickly rather than deliberate
Consider Alternatives When
- Complex analytical tasks: Requiring multi-step reasoning. Use the Grok 4 Fast Reasoning variant or the full Grok 4
- Competition-level math or science: Chain-of-thought produces measurably better accuracy
- Tasks where showing reasoning builds trust: Such as medical or legal analysis. The reasoning variant exposes its thinking
- Maximum cost efficiency on simple tasks: Grok 3 Mini Fast offers even lower per-token costs
Conclusion
Grok 4 Fast Non-Reasoning strips away reasoning overhead to deliver the Grok 4 foundation at maximum speed. Use it for production workloads that need direct answers without chain-of-thought latency or token cost. Pair it with the reasoning variant for a two-tier architecture that matches model capability to task complexity.
Frequently Asked Questions
What does 'non-reasoning' mean for Grok 4 Fast Non-Reasoning?
The model produces direct answers without generating chain-of-thought reasoning traces. This reduces latency and output token consumption compared to the reasoning variant.
How does Grok 4 Fast Non-Reasoning differ from Grok 4 Fast Reasoning?
Both share the same Grok 4 Fast foundation. The reasoning variant generates chain-of-thought traces for analytical tasks, while Grok 4 Fast Non-Reasoning produces direct responses optimized for speed.
What is the context window?
2M tokens.
What does Grok 4 Fast Non-Reasoning cost?
Rates are listed on this page. They reflect the providers routing through AI Gateway and shift when providers update their pricing.
How do I authenticate with Grok 4 Fast Non-Reasoning through Vercel AI Gateway?
Use your Vercel AI Gateway API key with
xai/grok-4-fast-non-reasoningas the model identifier. No separate xAI account is required for gateway-managed access.Can Grok 4 Fast Non-Reasoning call tools and functions?
Yes. Grok 4 Fast Non-Reasoning supports tool calling and function invocation, making it suitable for agentic workflows that need fast decision-making.
Does Vercel AI Gateway support Zero Data Retention for Grok 4 Fast Non-Reasoning?
Zero Data Retention is not currently available for this model. ZDR on AI Gateway applies to direct gateway requests; BYOK flows aren't covered. See https://vercel.com/docs/ai-gateway/capabilities/zdr for details.