From 836e3d29e178e8afe3fa39c5c52335eab6f93b80 Mon Sep 17 00:00:00 2001 From: Igor Ilic Date: Mon, 2 Dec 2024 16:24:12 +0100 Subject: [PATCH] chore: Update README.md Update README.md with database optional dependencies Chore COG-595 --- README.md | 36 ++++++++++++++++++++++++++++++++++++ 1 file changed, 36 insertions(+) diff --git a/README.md b/README.md index 1cec3f051..d0b7ba778 100644 --- a/README.md +++ b/README.md @@ -32,6 +32,24 @@ pip install cognee pip install 'cognee[postgres]' ``` +### With pip with Weaviate support + +```bash +pip install 'cognee[weaviate]' +``` + +### With pip with Qdrant support + +```bash +pip install 'cognee[qdrant]' +``` + +### With pip with Neo4j support + +```bash +pip install 'cognee[neo4j]' +``` + ### With poetry ```bash @@ -44,6 +62,24 @@ poetry add cognee poetry add cognee -E postgres ``` +### With poetry with Weaviate support + +```bash +poetry add cognee -E weaviate +``` + +### With poetry with Qdrant support + +```bash +poetry add cognee -E qdrant +``` + +### With poetry with Neo4j support + +```bash +poetry add cognee -E neo4j +``` + ## 💻 Basic Usage