Run It & Go Further
See durable sessions in action, recap the building blocks, and get pointers to Eve's advanced features.
What it is#
An Eve session isn't one request and one response. It streams progress, calls tools, can pause for a human answer, then resume — and it survives restarts via the open-source Workflow SDK.
Why you'd care#
You get production-shaped behavior (crash-safe, resumable, stateful across turns) without wiring it yourself.
Before#
Stateless chat that forgets everything between calls.
After#
Run your agent and watch a multi-turn conversation keep context, call tools mid-flight, and pick back up after a pause. That durability is built in.
Do it yourself#
- Run
eve devand have a multi-turn conversation that uses your weather tool. - Notice the agent remembers earlier turns and resumes smoothly.
- Review your full
agent/folder — that tree is the agent.
Recap#
You built a Personal Research Assistant from an empty folder:
instructions.md— who it isagent.ts— which modeltools/— what it can doskills/— on-demand expertisechannels/— where it's reachable
Go further#
This series covered the core path. Eve also ships: connections/ (MCP/OpenAPI tools), sandbox/ (isolated compute), subagents/ (delegation), schedules/ (recurring work), hooks, human-in-the-loop, evaluations, and one-command deploy to Vercel. Start with the Eve docs.