TurboPuffer graph adapter for cognee (graph emulated on TurboPuffer namespaces + attributes)
Project description
cognee-community-graph-adapter-turbopuffer
A community graph database adapter for cognee backed by TurboPuffer.
TurboPuffer is a vector/document store with no native graph traversal or query language, so this adapter emulates a graph on two TurboPuffer namespaces per dataset — exactly as the core Postgres graph adapter emulates one on relational tables. All traversal is done client-side with single-hop edge queries.
Storage model
Per dataset, namespace-prefixed by database_name:
{database_name}_graph_node— one doc per node:id,name,type(the DataPoint class name),belongs_to_set(string[]), and a non-filterablepropertiesJSON blob holding all remaining fields (so largetextis kept in full).{database_name}_graph_edge— one doc per edge: a deterministicuuid5id (TurboPuffer caps ids at 64 bytes),source_id,target_id,relationship_name, denormalized endpoint identity (source_name/source_type/target_name/target_type), and the full edgepropertiesJSON blob.
Install
uv pip install -e cognee-community/packages/graph/turbopuffer
# or, from the package directory:
uv pip install -e .
Configure & use
import cognee
from cognee_community_graph_adapter_turbopuffer import register
register() # registers the "turbopuffer" graph provider + dataset handler
cognee.config.set_graph_database_provider("turbopuffer")
# Environment:
# TURBOPUFFER_API_KEY (required)
# TURBOPUFFER_REGION (required by the SDK; e.g. gcp-us-central1)
await cognee.add("Alice followed the White Rabbit.")
await cognee.cognify()
results = await cognee.search("Who does Alice meet?")
For multi-tenant backend access control, also select the graph dataset handler:
GRAPH_DATABASE_PROVIDER=turbopuffer
GRAPH_DATASET_DATABASE_HANDLER=turbopuffer_graph
(The handler is registered under turbopuffer_graph so it does not collide with
the TurboPuffer vector adapter's turbopuffer handler.)
Supported vs. not (v1)
Supported: CRUD, single-hop reads (get_neighbors, get_connections,
get_edges), get_neighborhood(depth=1), get_graph_data,
get_filtered_graph_data, get_nodeset_subgraph (OR + client-side AND),
get_graph_metrics (counts + mean degree), get_triplets_batch (offset
pagination via deterministic cursor scan), remove_belongs_to_set_tags,
delete_graph, per-dataset isolation.
Not in v1: multi-hop BFS (get_neighborhood(depth>=2)) and raw Cypher
(query) raise NotImplementedError. Connectivity-dependent metrics
(connected components, diameter, clustering) return the -1 sentinel, matching
the Postgres adapter.
Examples & tests
# build the Alice graph and query it
GRAPH_DATABASE_PROVIDER=turbopuffer python examples/example.py
python examples/inspect_graph.py --raw # inspect node/edge namespaces
python examples/export_graph.py # dump nodes.json / edges.json
# tests (see tests/README.md for tiers)
./run_tests.sh integration # live per-method + isolation
./run_tests.sh e2e # full add->cognify->search on Alice
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
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file cognee_community_graph_adapter_turbopuffer-0.1.0.tar.gz.
File metadata
- Download URL: cognee_community_graph_adapter_turbopuffer-0.1.0.tar.gz
- Upload date:
- Size: 27.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/2.1.2 CPython/3.13.5 Darwin/23.6.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
64b5dbd4d951afa2f912d4342cc8db33de909b59f364c32be85925018949b829
|
|
| MD5 |
1f4ba34469b23d85eaa631569e52700b
|
|
| BLAKE2b-256 |
ddfac8b08c3e1b5d2a65edf14ae6d228199ec757d8a0adb9c6c68b7afcda11fd
|
File details
Details for the file cognee_community_graph_adapter_turbopuffer-0.1.0-py3-none-any.whl.
File metadata
- Download URL: cognee_community_graph_adapter_turbopuffer-0.1.0-py3-none-any.whl
- Upload date:
- Size: 15.2 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/2.1.2 CPython/3.13.5 Darwin/23.6.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
bb48afc8e3e6eaa2f009ae4e9047a3fc82c77897333f453afd24f55e5b2674fc
|
|
| MD5 |
d931d03f18225a7eb38ff4da643ee875
|
|
| BLAKE2b-256 |
86bd79797e69842beaeaa0733ccaa9bd5fb33faed4dccdbc6c702e2005d9b90a
|