Should You Use Stratus?
| Use Stratus | Use LLM directly | |
|---|---|---|
| Steps | 3+ sequential actions | Single-step |
| Environment | Predictable state transitions | Chaotic / stochastic |
| Goal | Clear, definable end state | Open-ended generation |
| Recovery | Needs error handling & replanning | Fire-and-forget |
Use Cases
Web Navigation — Booking & Forms
Web Navigation — Booking & Forms
Web Navigation — Data Extraction
Web Navigation — Data Extraction
Multi-Hop Reasoning — Research Tasks
Multi-Hop Reasoning — Research Tasks
Task: “What MCU movies were released in 2019 and who directed them?”Rather than issuing searches reactively, Stratus pre-plans the query chain: find MCU 2019 titles → extract names → look up each director. Intermediate results are tracked, so a failed sub-query triggers targeted recovery rather than a full restart.
| HotpotQA Score | |
|---|---|
| Traditional agent | ~18% |
| Stratus agent | ~42% |
Multi-Hop Reasoning — Knowledge Graph Construction
Multi-Hop Reasoning — Knowledge Graph Construction
Task: Build a knowledge graph of relationships from a research paper.Stratus plans extraction order (authors → institutions → citations → concepts), predicts entity boundaries, and maintains graph state across extractions — preventing duplicate nodes and missed edges.
Task Automation — Workflow Orchestration
Task Automation — Workflow Orchestration
Task: Process new customer signup: Create account → Send welcome email → Add to CRM → Notify team.Stratus predicts the API response state at each step before calling it. If
createUser fails, the downstream steps are skipped before any erroneous calls are made — not after.Task Automation — Testing & QA
Task Automation — Testing & QA
Task: Test checkout flow end-to-end across multiple scenarios.Stratus plans test case sequences, predicts expected states at each step, and flags mismatches between predicted and actual state — catching state-dependent bugs that static test scripts miss.
| Result | |
|---|---|
| Execution speed | 3× faster |
| Coverage | Follows all branching paths |
| Bug detection | Catches state-dependent regressions |
Software Development — Code Navigation & Debugging
Software Development — Code Navigation & Debugging
When NOT to Use Stratus
Single-step tasks
Simple classification, formatting, or one-shot generation. The world model adds overhead with no benefit.
Open-ended generation
Creative writing, brainstorming, summarization. No clear goal state means prediction has nothing to anchor to.
Highly stochastic environments
Unpredictable or chaotic systems where state transitions can’t be modeled.
Sub-100ms latency requirements
The X1 planning layer adds latency. If real-time reaction is the constraint, use the LLM directly.
Next Steps
Quickstart
Make your first X1 call in under 60 seconds.
Architecture
How the X1 world model actually works.
API Reference
Full endpoint docs and parameters.

