Cognee Community Graph Adapter - ArcadeDB
ArcadeDB graph database adapter for the Cognee framework.
ArcadeDB is an open-source (Apache 2.0) multi-model database supporting graph, document, key-value, full-text search, and vector embeddings. It implements the Neo4j Bolt wire protocol, so this adapter uses the standard neo4j Python async driver.
Installation
pip install cognee-community-graph-adapter-arcadedb
Prerequisites
ArcadeDB running with the Bolt protocol enabled (default port 7687):
docker run -d --name arcadedb -p 2480:2480 -p 7687:7687 \
-e JAVA_OPTS="-Darcadedb.server.rootPassword=arcadedb -Darcadedb.server.defaultDatabases=cognee[root]{} -Darcadedb.server.plugins=Bolt:com.arcadedb.bolt.BoltProtocolPlugin" \
arcadedata/arcadedb:latest
Usage
import cognee
from cognee_community_graph_adapter_arcadedb import register
# Register the adapter
cognee.config.set_graph_database_provider("arcadedb")
register()
# Configure connection
cognee.config.set_graph_db_config(
{
"graph_database_url": "bolt://localhost:7687",
"graph_database_username": "root",
"graph_database_password": "arcadedb",
}
)
# Use cognee as usual
await cognee.add(["Your text data here"], "dataset_name")
await cognee.cognify(["dataset_name"])
results = await cognee.search(
query_type=cognee.SearchType.GRAPH_COMPLETION,
query_text="your query",
)
Why ArcadeDB?
- Multi-model: Graph + Document + Key-Value + Full-text Search + Vector Embeddings in one engine
- Bolt compatible: Standard
neo4jPython driver connects directly — no custom driver needed - OpenCypher: 97.8% TCK compliance — standard Cypher queries work out of the box
- Apache 2.0: Truly open source, no BSL, no usage limits, self-hostable
- Embeddable: Can run embedded in Java applications for zero-latency access
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_arcadedb-0.2.0.tar.gz.
File metadata
- Download URL: cognee_community_graph_adapter_arcadedb-0.2.0.tar.gz
- Upload date:
- Size: 350.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via:
poetry/2.4.1 CPython/3.10.18 Darwin/24.1.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
211d92712304870dccb5e3330abc454ecd29e944b8ac2bdc06a3b44f366214e2
|
|
| MD5 |
cb58663be3251df1b5705f86683bb0c1
|
|
| BLAKE2b-256 |
ba1eb083e4bd7402b2113ef07eb20db339ec77d1f2873d016076b0fd0eae2eaf
|
File details
Details for the file cognee_community_graph_adapter_arcadedb-0.2.0-py3-none-any.whl.
File metadata
- Download URL: cognee_community_graph_adapter_arcadedb-0.2.0-py3-none-any.whl
- Upload date:
- Size: 8.5 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via:
poetry/2.4.1 CPython/3.10.18 Darwin/24.1.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
9bd3a3fcbebbd36f201ee71be7a4f7fbca82fa905dc50feb471a090f60af20ec
|
|
| MD5 |
e68a9919e1fd4c2aa7e79470520859a1
|
|
| BLAKE2b-256 |
88c0c9cc64228fbff72a14e27a1dd398495f56828c80683f89e9cfcf2dfafdf4
|