everos demo is an interactive TUI that lets new users feel the memory
lifecycle — type a memory, ask for it back, watch EverOS recall it — before they
configure their own API keys.
everos demoThis opens a full-screen terminal UI with an input box. Type something EverOS should remember, then ask a question that recalls it. No API key or server setup is needed for the default demo.
Each round runs the memory lifecycle and visualizes its four stages:
- Ingest receives what you want EverOS to remember.
- Extract identifies the useful memory inside the conversation.
- Index prepares that memory for retrieval.
- Recall finds it again when you ask a related question.
The same particle sphere flows continuously across all four stages. At the end, the particles burst across the memory field and fade away. A small core of yellow and white particles keeps moving at the center, then expands smoothly as the next ingest cycle begins.
If the demo service is temporarily unavailable or the trial limit is reached, the UI explains what happened and points you toward running with your own key. It never fabricates a memory result.
Get a key from https://everos.evermind.ai/api-keys, then:
export EVEROS_CLOUD_API_KEY=<your-key>
everos demo --live--live bypasses the relay and runs the same flow directly against the platform
with your own key.
For non-interactive shells or a copyable preview (no input box, no network):
everos demo --plainFor the looping showroom view used by README media:
everos demo --cinematicThe CLI command adapter stays under src/everos/entrypoints/cli/commands/demo.py
because the public command is still everos demo.
The TUI implementation lives under src/everos/entrypoints/tui/demo/:
app.pyrenders the Textual app and drives the interactive rounds.cloud.pyruns the demo memory requests (add -> flush -> search).data.pyholds the static showcase story for--plain/--cinematic.widgets/sphere.pybuilds the memory sphere frames.readme_media.pyrenders README media.
To regenerate README media locally:
uv run python -m everos.entrypoints.tui.demo.readme_media --out-dir /tmp/everos-demo-media