For AI agents: a documentation index is available at the root level at /llms.txt and /llms-full.txt. Append /llms.txt to any URL for a page-level index, or .md for the markdown version of any page.
PlaygroundDiscordStatusDashboardSign Up >
DocumentationSDK ReferenceGraphiti
DocumentationSDK ReferenceGraphiti
  • Getting Started
    • Coding with LLMs
    • Key Concepts
    • Quickstart
    • Building an Agent Walkthrough
    • Memory
    • Projects
    • Users
    • Sessions
    • Groups
  • Working with the Graph
    • Understanding the Graph
    • Utilizing Facts and Summaries
    • Customizing Graph Structure
    • Adding Data to the Graph
    • Reading Data from the Graph
    • Searching the Graph
    • Deleting Data from the Graph
    • Debugging
  • Cookbook
    • Check Data Ingestion Status
    • Customize Your Memory Context String
    • Add User Specific Business Data to User Graphs
    • Share Memory Across Users Using Group Graphs
    • Get Most Relevant Facts for an Arbitrary Query
    • Find Facts Relevant to a Specific Node
  • Best Practices
    • Performance Best Practices
    • Adding JSON Best Practices
  • Ecosystem
    • LangGraph
    • Autogen
  • Migrations
    • February 2026 Deprecation Wave
    • Migrate from Mem0
  • FAQ
    • Frequently Asked Questions
  • Legal
    • Privacy Policy
    • Terms of Service
    • Website Terms of Use
LogoLogo
PlaygroundDiscordStatusDashboardSign Up >
On this page
  • Working with the Graph
Working with the Graph

Understanding the Graph

Was this page helpful?
Previous

Utilizing Facts and Summaries

Facts and summaries are extracted from the chat history as a conversation unfolds as well as from business data added to Zep.
Next
Built with

Zep’s temporal knowledge graph powers its context engineering capabilities, including agent memory and Graph RAG. Zep’s graph is built on Graphiti, Zep’s open-source temporal graph library, which is fully integrated into Zep. Developers do not need to interact directly with Graphiti or understand its underlying implementation.

Zep’s graph database stores data in three main types:

  1. Entity edges (edges): Represent relationships between nodes and include semantic facts representing the relationship between the edge’s nodes.
  2. Entity nodes (nodes): Represent entities extracted from episodes, containing summaries of relevant information.
  3. Episodic nodes (episodes): Represent raw data stored in Zep, either through chat history or the graph.add endpoint.

Working with the Graph

To learn more about interacting with Zep’s graph, refer to the following sections:

  • Adding Data to the Graph: Learn how to add new data to the graph.
  • Reading Data from the Graph: Discover how to retrieve information from the graph.
  • Searching the Graph: Explore techniques for efficiently searching the graph.

These guides will help you leverage the full power of Zep’s knowledge graph in your applications.