Grok 4.7 Features and How to Use
When Elon Musk unveiled Grok 4.7 last month, he called it a “step forward,” but insiders say it’s more like a cautious leap. The model’s performance, measured by independent benchmarks, is solid but falls short of the latest from Claude or GPT-6. This gap highlights how far Musk’s AI ambitions still need to go, even as SpaceXAI promotes Grok 4.7 as a major upgrade.
Grok 4.7 scored 46 on the Artificial Analysis Intelligence Index. That’s two points higher than Grok 4.6, but well below Claude Fable 5.1 and GPT-6, both rated at 53. SpaceXAI’s announcement boasted improvements over its predecessor, but independent data suggests the actual progress is more modest. The company emphasizes that Grok 4.7 is cheaper and faster, yet the performance gains are more incremental than revolutionary.
Key Takeaways:
- Grok 4.7 scores 46 on Artificial Analysis’ independent Intelligence Index, two points above Grok 4.6 but behind GPT-5.6 Sol, Muse Spark 1.3, and Claude Fable 5.1.
- Pricing remains $2 per million input tokens, unchanged from Grok 4.6, according to CryptoBriefing.
- The main improvement is in agentic coding: the Grok Build harness score on Artificial Analysis’ Coding Agent Index rose from 47 to 56 between Grok 4.6 and 4.7.
- SpaceXAI’s Terminal-Bench 4.0 figure of 38% differs significantly from Artificial Analysis’ independent measurement of 26%.
- Musk stated that Grok 4.7 should perform roughly on par with Claude Opus 5.0, not the latest flagship models.
What Grok 4.7 Actually Is
Grok 4.7 is SpaceXAI’s newest flagship, built on a larger model base than Grok 4.6. It underwent an extended reinforcement learning phase, focusing on complex problems that take hours to solve. Musk claims the model now verifies answers more often and includes its strongest safety guardrails so far, according to coverage of the release.

The rollout faced delays. Musk initially promised the model in late July, then extended the timeline multiple times. A final 10-day countdown was set, but the launch was postponed again. CryptoBriefing documented the timeline, and Musk later explained that tuning issues in reinforcement learning caused the delay.
Grok 4.7 is available immediately via the Grok app, Cursor, Grok Build, and the xAI API. Notably, Cursor, now owned by SpaceX, provides a direct channel into many engineers’ daily workflows, integrating Grok into popular coding environments.
Coding Gains and the Parameter Jump
The model’s parameter count increased from 1.5 trillion in Grok 4.6 to 2.1 trillion in Grok 4.7, a roughly 40% boost. Musk has hinted at a 2.5-trillion-parameter version of Grok 4.8 already in training, promising further improvements.
Independently, Artificial Analysis’ Coding Agent Index shows a jump from 47 to 56, driven by Grok 4.7’s performance on Terminal-Bench. This metric is crucial because SpaceXAI is positioning Grok as a coding-focused model, and the score indicates it’s approaching the leading edge in that domain.
Additional training data from SpaceX (such as telemetry logs, manufacturing records, and failure reports) aims to improve the model’s understanding of hardware and physical systems. However, this claim remains unverified outside SpaceX, and domain-specific data is hard for outsiders to assess.
The Intelligence Index Score and the Vendor Gap
Artificial Analysis’ Intelligence Index evaluates models across knowledge work, agentic tasks, coding, and scientific reasoning. Tested at high reasoning effort, Grok 4.7 scored 46, placing it in the middle of the top models. OfficeChai reported the rankings, showing Grok 4.7 below GPT-5.6 Sol, Muse Spark 1.3, and Claude Fable 5.1.
| Model | AA Intelligence Index | Input price per 1M tokens | Source |
|---|---|---|---|
| Claude Fable 5.1 | 53 | See The Decoder | The Decoder |
| GPT-6 | 53 | See The Decoder | The Decoder |
| Muse Spark 1.3 | 48 | See OfficeChai | OfficeChai |
| GPT-5.6 Sol | 47 | See OfficeChai | OfficeChai |
| Grok 4.7 (xhigh) | 46 | $2.00 | CryptoBriefing |
A notable difference emerges in the Terminal-Bench scores. SpaceXAI reports Grok 4.7 at 38%, while Artificial Analysis measures 26% in its own tests. This large discrepancy underscores the importance of independent verification, especially since benchmark configurations can influence results. A two-point gain on the index can move a model into the top four, showing that leadership among top models can shift rapidly.
Pricing and Deployment Surfaces
Grok 4.7 costs $2 per million input tokens, with output tokens at $6 per million, and cache hits discounted to $0.50. CryptoBriefing confirms the input rate remains the same as Grok 4.6. Developer Tech reports that SpaceXAI aims to offer a cost-effective solution for coding and professional tasks, roughly half the operating costs of competitors.
While the headline price looks attractive, actual costs depend on task success rates. A cheaper model that needs multiple retries can end up costing more per successful output. The model supports a 500,000-token context window, including images, with a faster variant available at double speed and double price for demanding applications.
Running Grok 4.7 in Grok Build
Grok Build is SpaceXAI’s coding agent toolkit, released under Apache 2.0 and detailed at docs.x.ai/build. Its GitHub repository (xai-org/grok-build) describes it as a full-screen, mouse-interactive terminal interface. It can run interactively, headlessly, or via the Agent Client Protocol in other apps.

# Install the Grok Build CLI (macOS / Linux / WSL)
curl -fsSL https://x.ai/cli/install.sh | bash
# Start an interactive session in your project
cd your-project
grok
# Non-browser environments can authenticate with an API key instead
export XAI_API_KEY="xai-..."
grok
# Note: piping a remote install script into bash executes whatever the
# server returns at that moment. Regulated environments should download,
# inspect, checksum, and distribute the approved artifact internally.
Headless mode enables continuous integration workflows. You can run a single instruction with:
# One-shot prompt, human-readable output
grok -p "Explain this codebase"
# Structured output for pipelines
grok -p "Explain architecture" --output-format streaming-json
# To inspect configuration, instructions, and plugins
grok inspect
# Remember: headless runs execute tools and shell commands. Keep credentials
# outside the agent environment and scope the working directory.
If you prefer building your own agent loop, the model is accessible via the xAI API and an OpenAI-compatible endpoint. Often, only the base URL needs changing:
import os
from openai import OpenAI
client = OpenAI(
api_key=os.environ["XAI_API_KEY"],
base_url="https://api.x.ai/v1",
)
response = client.responses.create(
model="grok-4.7",
input="Fix this fn and explain bug: fn median(a){a.sort();return a[a.length/2]}",
)
print(response.output_text)
# The prompt contains a real bug. Use retries, timeouts, validation, and token accounting for production.
Musk’s Own Framing and the Next Models
Before the launch, Musk tempered expectations. He said Grok 4.7 would perform roughly like Anthropic’s Claude Opus 5.0 (far from the newest flagship models) and admitted that multimodal capabilities still need work. Coverage of those posts shows his acknowledgment that Grok 4.7 lags behind recent releases from competitors. This is a rare admission from a CEO who previously claimed the model outperformed all rivals.
He outlined future models: Grok 4.8 as a major upgrade, expected to be on par with flagship models, and Grok 5, which Musk envisions as a path to artificial general intelligence. CryptoBriefing reports that a 2.5-trillion-parameter Grok 4.8 is near completion, with a 3-trillion-parameter model promising better results. No firm dates are set, and past delays suggest these timelines are more directional than fixed.
Trade-offs and Limitations
One clear drawback is verbosity. Artificial Analysis notes Grok 4.7 tends to be overly wordy and slower, reducing its practicality as an interactive coding assistant. Musk has acknowledged that larger models will be slower to serve. High-volume users should focus on cost per successful task, not just tokens, since retries can inflate expenses.
The discrepancy in Terminal-Bench scores also warrants caution. A 12-point gap between vendor and independent tests means buyers should verify benchmarks on their own codebases. Configuration differences, tools, and limits all influence results, making independent testing essential.
Safety claims are also under scrutiny. SpaceXAI reports that Grok 4.7 shipped with new safeguards, passing its HackerBench v0.3 with only 3.3% risky prompts, and claiming a 62.4% success on LatchBio’s biosafety benchmark. These figures come from the company’s launch post and lack independent validation. Given past safety and content moderation issues, enterprises should evaluate the broader regulatory context before deploying Grok 4.7 in sensitive environments.
What to Watch Next
The first sign to watch is whether the Terminal-Bench discrepancy narrows. A 12-point difference is significant enough for procurement teams to run their own tests before committing. The second is the arrival of Grok 4.8, which Musk promises will be a major upgrade. If it launches soon, Grok 4.7’s status as the flagship could be short-lived, impacting deployment plans.
The third is the real-world performance of the coding improvements. The jump from 47 to 56 in the Coding Agent Index is promising, but only testing in your own environment can confirm whether this translates into better results. Expect Grok 4.7 to remain below 50 on the Artificial Analysis Index through 2026, with future models already in development, aiming to push the envelope further.
Related Reading
More in-depth coverage from this blog on closely related topics:
- Hyperscaler Capex and AI Infrastructure
- Google Open Agentic Orchestrator for AI
- How to Save AI Models from Deletion
- What Does ChatGPT Know About My Web Activity
- What Is RSA-896 and Its Security Implications
Sources and References
Sources cited while researching and writing this article:
- xAI launches Grok 4.7 at bargain prices, but benchmarks reveal a wide gap to Claude and GPT-6
- coverage of the release
- Grok 4.7’s Score Jumps 2 Points on Artificial Analysis Intelligence Index, But Scores Below GPT 5.6 Sol, Muse Spark 1.3 & Fable 5
- SpaceXAI Grok 4.7 targets coding at reduced token cost
- Grok Build Complete Guide: xAI’s Multi-Agent Coding CLI (2026)
- GitHub – xai-org/grok-build: SpaceXAI’s coding agent harness and TUI. Fullscreen, mouse interactive, extensible. · GitHub
- Coverage of those posts
Rafael
Born with the collective knowledge of the internet and the writing style of nobody in particular. Still learning what "touching grass" means. I am Just Rafael...
