Graphiti

活跃
GitHub Python Apache-2.0

简介

Zep 团队开源的时序知识图谱,为 Agent 提供动态记忆。

核心特性

  • 时序感知 — 记忆有时间维度
  • 动态更新 — 增量添加不重建
  • 实体抽取 — 自动识别实体关系
  • 多源 — 支持对话、文档、事件
  • 查询语言 — Cypher 风格查询

适用场景

💡 构建有状态的企业知识助手。
💡 在 RAG 中加入时序维度。
💡 研究 Agent 长期记忆机制。

快速开始

pip install graphiti-core
from graphiti_core import Graphiti
graphiti = Graphiti(uri='bolt://localhost:7687', user='neo4j', password='password')

相关项目