Transparent agentic telemetry and instrumentation for content-addressable LLM interactions.
About
·
Download
·
Documentation
·
Contributing
tapes is an Agentic telemetry system for content-addressable LLM interactions.
It provides durable storage of agent sessions, plug-and-play OpenTelemetry instrumentation,
and deterministic replay of past agent messages.
Install tapes:
curl -fsSL https://download.tapes.dev/install | bashRun the tapes services with an embedding provider. Embeddings power tapes search;
choose either local Ollama or OpenAI.
For local embeddings, run Ollama and pull the default embeddinggemma model:
ollama pull embeddinggemma
ollama serveThen start Tapes:
tapes serveFor OpenAI embeddings, store an API key and switch the embedding provider:
tapes auth openai
tapes config set embedding.provider openai
tapes serveYou can also provide the key with OPENAI_API_KEY instead of tapes auth openai.
When OpenAI is selected without a key, Tapes fails at startup with an authentication
configuration error from the OpenAI embedder.
Start a chat session:
tapes chat --model gemma3Search conversation turns:
tapes search "What's the weather like in New York?"Checkout a previous conversation state for context check-pointing and retry:
tapes checkout abc123xyz987
tapes chat