> ## Documentation Index
> Fetch the complete documentation index at: https://www.stratus.run/docs/llms.txt
> Use this file to discover all available pages before exploring further.

# What is Stratus?

<Tip>
  Stratus X1 is the first predictive action model purpose-built for AI agents — turning unreliable, expensive agents into systems that plan before they act and succeed instead of guess.
</Tip>

Stratus X1 is a **predictive action model** that sits between your LLM and the environment. It understands where an agent is, simulates what happens next, and sequences actions toward a goal — before a single real action executes.

## The Problem with Current Agents

<Info>
  LLM-based agents achieve only **10–20% success rates** on real-world benchmarks like WebArena. Human performance on the same tasks: **78%**. The gap is structural, not a prompting problem.
</Info>

Current agents fail for four compounding reasons:

<CardGroup cols={2}>
  <Card title="No State Understanding" icon="eye">
    Agents can't represent where they are in a task. Every step starts from scratch with raw, noisy context.
  </Card>

  <Card title="No Consequence Prediction" icon="hourglass">
    Without a world model, agents can't foresee what an action will do before committing to it.
  </Card>

  <Card title="No Transition Reasoning" icon="sitemap">
    Multi-step planning is impossible when there's no mechanism for reasoning over state sequences.
  </Card>

  <Card title="Token-Level Reasoning" icon="layer-group">
    Processing raw tokens at 15,000+ per task is slow, expensive, and fundamentally noisy.
  </Card>
</CardGroup>

The result: low success, high cost, high latency, and brittle plans with no recovery path.

## The Stratus Solution

Stratus doesn't replace your LLM. It makes your LLM dramatically more effective by handling the parts LLMs are fundamentally bad at — state representation, consequence modeling, and action sequencing.

<Steps>
  <Step title="Compress the Environment" icon="brain">
    Stratus encodes any observation — a webpage, a UI state, a tool response — into a rich semantic representation. The noise disappears. The meaning stays.
  </Step>

  <Step title="Simulate Before Acting" icon="wand-magic-sparkles">
    The world model predicts what the environment looks like after each candidate action, in representation space, before anything executes. Your agent sees the future before committing.
  </Step>

  <Step title="Plan with Confidence" icon="sitemap">
    The planning layer sequences actions toward the goal using the world model's predictions. It returns a ranked plan with a confidence score at each step, so your LLM reasons over structure — not noise.
  </Step>
</Steps>

## Three Components, One Coherent System

<CardGroup cols={3}>
  <Card title="State Encoder" icon="brain" color="#22d3ee">
    Compresses any environment description into a rich representation. The richer your state, the sharper the plan.
  </Card>

  <Card title="World Model" icon="wand-magic-sparkles" color="#c084fc">
    Simulates what the environment looks like after each action — entirely in representation space, before anything executes.
  </Card>

  <Card title="Planning Layer" icon="sitemap" color="#34d399">
    Sequences actions toward the goal using the world model's predictions. Returns a ranked plan with confidence at each step.
  </Card>
</CardGroup>

## Without Stratus vs. With Stratus

<CardGroup cols={2}>
  <Card title="Without Stratus" icon="fire" color="#f87171">
    Raw observations flood the LLM with 15,000+ tokens of noisy context. The model guesses at each step, with no ability to foresee consequences or recover from mistakes. Success rates hover at 10–20%. Every failure is expensive.
  </Card>

  <Card title="With Stratus" icon="trophy" color="#34d399">
    Stratus extracts meaning from the environment, simulates candidate actions, and hands the LLM a structured plan. Token count drops by over 60%. Success rates double. Failures are predictable and recoverable.
  </Card>
</CardGroup>

<Tip>
  **The measured difference:** 68% fewer tokens. 2–3x faster. 2x+ higher task success rate. And failure modes you can actually reason about.
</Tip>

## Why This Is Different

Stratus operates in **representation space** — not token space. This is a fundamental architectural distinction from every other approach:

<CardGroup cols={3}>
  <Card title="vs. RAG" icon="magnifying-glass" color="#94a3b8">
    RAG retrieves documents. Stratus learns state transitions. Retrieval doesn't tell you what happens next — a world model does.
  </Card>

  <Card title="vs. Prompting" icon="lightbulb" color="#94a3b8">
    Better prompts reorder text. Stratus predicts outcomes in embedding space. No prompt can teach an LLM to simulate consequences.
  </Card>

  <Card title="vs. Fine-tuning" icon="cube" color="#94a3b8">
    Fine-tuning adjusts token distributions. Stratus models state — what exists, what changes, what's next. These are categorically different problems.
  </Card>
</CardGroup>

## Performance

<Tip>
  Stratus delivers measurable results from day one — not theoretical improvements on held-out benchmarks.
</Tip>

<CardGroup cols={2}>
  <Card title="Token Reduction" icon="gauge-high" color="#22d3ee">
    Over **20x reduction** in tokens consumed per task. What took 15,000 tokens now takes under 750.
  </Card>

  <Card title="Hallucination Detection" icon="shield" color="#c084fc">
    Better than **75% detection rate** on hallucinated actions and fabricated state — caught before they execute.
  </Card>

  <Card title="Prediction Latency" icon="stopwatch" color="#34d399">
    **Under 10ms** per prediction. Stratus adds no meaningful latency to your agent loop.
  </Card>

  <Card title="Throughput" icon="bolt" color="#f59e0b">
    **1,000+ predictions per second** — scales with your workload, not against it.
  </Card>
</CardGroup>

## Where Stratus Excels

<CardGroup cols={2}>
  <Card title="Web Navigation" icon="arrow-right" color="#22d3ee">
    Booking flows, form completion, data extraction — tasks where multi-step state tracking is everything.
  </Card>

  <Card title="Multi-hop Reasoning" icon="circle-nodes" color="#c084fc">
    Research tasks that require chaining searches, synthesizing results, and maintaining goal context across many steps.
  </Card>

  <Card title="Task Automation" icon="rocket" color="#34d399">
    Workflow automation, software testing, data entry — high-volume tasks where reliability directly translates to cost.
  </Card>

  <Card title="Structured Environments" icon="cubes" color="#f59e0b">
    Any environment with predictable state transitions — APIs, UIs, robotic action spaces — where consequence modeling compounds.
  </Card>
</CardGroup>

## Model Tiers

| Model   | Best For                                          | Prediction Latency |
| ------- | ------------------------------------------------- | ------------------ |
| `small` | Highest throughput, latency-sensitive loops       | Under 10ms         |
| `base`  | Balanced performance — recommended starting point | Under 25ms         |
| `large` | Extended context tasks                            | Under 50ms         |
| `xl`    | Maximum context and precision                     | Under 100ms        |

## What Comes Next

<Steps>
  <Step title="Phase 1 — Now" icon="star">
    Text-based meaning model for software agents. Production-ready, OpenAI API-compatible, integrates with any agent framework in minutes.
  </Step>

  <Step title="Phase 2 — Year 2" icon="infinity">
    Multimodal world model: text, vision, and telemetry. Extends Stratus into robotics and physical systems.
  </Step>

  <Step title="Phase 3 — Year 3–5" icon="chart-line">
    Full world-model layer for multi-agent systems. Stratus becomes the meaning layer for all autonomous infrastructure.
  </Step>
</Steps>

<Info>
  Ready to see it in action? The [Quickstart](/docs/quickstart) gets you running in under five minutes. Or go deeper with the [API Reference](/docs/api-reference/chat-completions).
</Info>
