Back to Eliza

Agent Console Example

packages/examples/agent-console/README.md

2.0.31.0 KB
Original Source

Agent Console Example

Live observability dashboard for an elizaOS AgentRuntime. It streams model calls, prompts, action events, evaluator events, token usage, and trajectory state over server-sent events while you chat with the agent.

Run

bash
cd packages/examples/agent-console

# Set one provider key. Cerebras, Groq, OpenRouter, and OpenAI are checked in
# that order.
export OPENAI_API_KEY="..."

bun run start

Then open the URL printed by the server.

Provider Environment

ProviderRequired variableOptional model override
CerebrasCEREBRAS_API_KEYAGENT_MODEL
GroqGROQ_API_KEYAGENT_MODEL
OpenRouterOPENROUTER_API_KEYAGENT_MODEL
OpenAIOPENAI_API_KEYAGENT_MODEL

The example disables OpenAI embeddings because several OpenAI-compatible providers used here do not expose an embeddings endpoint.

Validate

bash
bun run typecheck

The example has no external service test because it requires a live model provider key and an interactive browser session.