Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
58 changes: 58 additions & 0 deletions public/images/docs/simulation/agent-development-loop.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
12 changes: 1 addition & 11 deletions src/pages/docs/simulation/index.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -21,17 +21,7 @@ Every run is inspectable. Each conversation comes back with:

Simulation is the rehearsal stage of the agent development lifecycle: every change to your agent passes through it before production, and production feeds the next rehearsal.

<Mermaid chart={`
%%{init: {"flowchart": {"curve": "linear"}}}%%
flowchart LR
B["<b>Build</b><br/>Develop your agent"] --> S["<b>Simulate</b><br/>Rehearse voice or chat conversations"]
S --> E["<b>Score</b><br/>Evals judge every conversation"]
E --> F["<b>Fix</b><br/>Update the prompt or config"]
F --> S
E --> D["<b>Deploy</b><br/>Ship to production"]
D --> O["<b>Observe</b><br/>Trace live traffic"]
O -->|"Replay"| S
`} />
<img src="/images/docs/simulation/agent-development-loop.svg" alt="The agent development loop: Build feeds Simulate; evals score every conversation; a failing score loops back through Fix into another simulation, a passing one deploys; Observe traces production, and replay turns real conversations into the next rehearsal." style={{ border: 'none', width: '100%', maxWidth: '620px', margin: '1.75rem auto', display: 'block' }} />

The loop closes on itself twice: a failing score sends you back to fix and re-simulate, and a production trace you [replay](/docs/simulation/concepts/replay) becomes a new test case.

Expand Down
Loading