A temporal graph building library
Project description
graphiti builds dynamic, temporally aware knowledge graphs that represent complex, evolving relationships between entities over time. graphiti ingests both unstructured and structured data and the resulting graph may be queried using a fusion of time, full-text, semantic, and graph algorithm approaches.
With graphiti, you can build LLM applications such as:
- Assistants that learn from user interactions, fusing personal knowledge with dynamic data from business systems like CRMs and billing platforms.
- Agents that autonomously execute complex tasks, reasoning with state changes from multiple dynamic sources.
graphiti supports a wide range of applications in sales, customer service, health, finance, and more, enabling long-term recall and state-based reasoning for both assistants and agents.
Why graphiti?
graphiti is designed for dynamic data and agentic use:
- Smart Graph Updates: Automatically evaluates new entities against the current graph, revising both to reflect the latest context.
- Rich Edge Semantics: Generates human-readable, semantic, and full-text searchable representations for edges during graph construction, enabling search and enhancing interpretability.
- Temporal Awareness: Extracts and updates time-based edge metadata from input data, enabling reasoning over changing relationships.
- Hybrid Search: Offers semantic, BM25, and graph-based search with the ability to fuse results.
- Fast: Search results in < 100ms, with latency primarily determined by the 3rd-party embedding API call.
- Schema Consistency: Maintains a coherent graph structure by reusing existing schema, preventing unnecessary proliferation of node and edge types.
graphiti and Zep Memory
graphiti powers the core of Zep's memory layer for LLM-powered Assistants and Agents.
We're excited to open-source graphiti, believing its potential reaches far beyond memory applications.
Installation
Requirements:
- Python 3.10 or higher
- Neo4j 5.21 or higher
- OpenAI API key (for LLM inference and embedding)
Optional:
- Anthropic or Groq API key (for alternative LLM providers)
[!TIP] The simplest way to install Neo4j is via Neo4j Desktop. It provides a user-friendly interface to manage Neo4j instances and databases.
pip install graphiti-core
or
poetry add graphiti-core
Quick Start
[!IMPORTANT] graphiti uses OpenAI for LLM inference and embedding. Ensure that an
OPENAI_API_KEY
is set in your environment. Support for Anthropic and Groq LLM inferences is available, too.
from graphiti_core import Graphiti
from graphiti_core.nodes import EpisodeType
from datetime import datetime
# Initialize Graphiti
graphiti = Graphiti("bolt://localhost:7687", "neo4j", "password")
# Add episodes
episodes = [
"Kamala Harris is the Attorney General of California. She was previously "
"the district attorney for San Francisco.",
"As AG, Harris was in office from January 3, 2011 – January 3, 2017",
]
for i, episode in enumerate(episodes):
await graphiti.add_episode(
name=f"Freakonomics Radio {i}",
episode_body=episode,
source=EpisodeType.text,
source_description="podcast",
reference_time=datetime.now()
)
# Search the graph
# Execute a hybrid search combining semantic similarity and BM25 retrieval
# Results are combined and reranked using Reciprocal Rank Fusion
results = await graphiti.search('Who was the California Attorney General?')
[
EntityEdge(
│ uuid='3133258f738e487383f07b04e15d4ac0',
│ source_node_uuid='2a85789b318d4e418050506879906e62',
│ target_node_uuid='baf7781f445945989d6e4f927f881556',
│ created_at=datetime.datetime(2024, 8, 26, 13, 13, 24, 861097),
│ name='HELD_POSITION',
# the fact reflects the updated state that Harris is
# no longer the AG of California
│ fact='Kamala Harris was the Attorney General of California',
│ fact_embedding=[
│ │ -0.009955154731869698,
│ ...
│ │ 0.00784289836883545
│ ],
│ episodes=['b43e98ad0a904088a76c67985caecc22'],
│ expired_at=datetime.datetime(2024, 8, 26, 20, 18, 1, 53812),
# These dates represent the date this edge was true.
│ valid_at=datetime.datetime(2011, 1, 3, 0, 0, tzinfo=<UTC>),
│ invalid_at=datetime.datetime(2017, 1, 3, 0, 0, tzinfo=<UTC>)
)
]
# Rerank search results based on graph distance
# Provide a node UUID to prioritize results closer to that node in the graph.
# Results are weighted by their proximity, with distant edges receiving lower scores.
await client.search('Who was the California Attorney General?', center_node_uuid)
# Close the connection
graphiti.close()
Documentation
Visit the Zep knowledge base for graphiti Guides and API documentation.
Status and Roadmap
graphiti is under active development. We aim to maintain API stability while working on:
- Implementing node and edge CRUD operations
- Improving performance and scalability
- Achieving good performance with different LLM and embedding models
- Creating a dedicated embedder interface
- Supporting custom graph schemas:
- Allow developers to provide their own defined node and edge classes when ingesting episodes
- Enable more flexible knowledge representation tailored to specific use cases
- Enhancing retrieval capabilities with more robust and configurable options
- Expanding test coverage to ensure reliability and catch edge cases
Contributing
We encourage and appreciate all forms of contributions, whether it's code, documentation, addressing GitHub Issues, or answering questions in the graphiti Discord channel. For detailed guidelines on code contributions, please refer to CONTRIBUTING.
Support
Join the Zep Discord server and make your way to the #graphiti channel!
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file graphiti_core-0.1.0.tar.gz
.
File metadata
- Download URL: graphiti_core-0.1.0.tar.gz
- Upload date:
- Size: 37.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/5.1.0 CPython/3.12.5
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 95bf415b7182822abdbba796f69d18b9721e31cbd92d099602dc58ebe6428037 |
|
MD5 | a21e78288b60ff92076169d94a565bce |
|
BLAKE2b-256 | 3353562ea3bb5b99a3e67b6d71226873e60be70b6af25a9326f69465f8aa9641 |
File details
Details for the file graphiti_core-0.1.0-py3-none-any.whl
.
File metadata
- Download URL: graphiti_core-0.1.0-py3-none-any.whl
- Upload date:
- Size: 55.1 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/5.1.0 CPython/3.12.5
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | ba0bbab804fce9b744f3c396a4925e63b13b66c39a78f320aaa575cfa5335dec |
|
MD5 | 87e235baea97ed6914c9bd3e4a5899e6 |
|
BLAKE2b-256 | 8c6ddd902b1953cf53916c93987596f848a343e5b9cfbcc1157d66fb938244d4 |