Zep use cases
Common applications for Zep's context engineering platform.
| Use case | Purpose | Implementation |
|---|---|---|
| Dynamic Graph RAG | Provide your agent with up-to-date knowledge of an object/system | Add/stream all relevant data to a Graph (docs), chunking first if needed (docs), and retrieve from the graph by constructing a custom context block (docs) |
| Agent memory | Provide your agent with up-to-date knowledge of a user | Add/stream user messages and user business data to a User Graph (docs), and retrieve user memory as the context block returned from thread.get_user_context (docs), and provide this context block to your agent before responding |
| Voice agents | Provide up-to-date knowledge with extremely low latency to a voice agent | Similar to other implementations, except incorporating latency optimizations (docs) |