docs: add FalkorDB support and update installation instructions (#677)
Enhance: Add FalkorDB installation instructions and correct dependency name in pyproject.toml
This commit is contained in:
parent
b2e77d1499
commit
8977138a43
2 changed files with 16 additions and 2 deletions
16
README.md
16
README.md
|
|
@ -137,7 +137,18 @@ or
|
||||||
uv add graphiti-core
|
uv add graphiti-core
|
||||||
```
|
```
|
||||||
|
|
||||||
You can also install optional LLM providers as extras:
|
### Installing with FalkorDB Support
|
||||||
|
|
||||||
|
If you plan to use FalkorDB as your graph database backend, install with the FalkorDB extra:
|
||||||
|
|
||||||
|
```bash
|
||||||
|
pip install graphiti-core[falkordb]
|
||||||
|
|
||||||
|
# or with uv
|
||||||
|
uv add graphiti-core[falkordb]
|
||||||
|
```
|
||||||
|
|
||||||
|
### You can also install optional LLM providers as extras:
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
# Install with Anthropic support
|
# Install with Anthropic support
|
||||||
|
|
@ -151,6 +162,9 @@ pip install graphiti-core[google-genai]
|
||||||
|
|
||||||
# Install with multiple providers
|
# Install with multiple providers
|
||||||
pip install graphiti-core[anthropic,groq,google-genai]
|
pip install graphiti-core[anthropic,groq,google-genai]
|
||||||
|
|
||||||
|
# Install with FalkorDB and LLM providers
|
||||||
|
pip install graphiti-core[falkordb,anthropic,google-genai]
|
||||||
```
|
```
|
||||||
|
|
||||||
## Quick Start
|
## Quick Start
|
||||||
|
|
|
||||||
|
|
@ -29,7 +29,7 @@ Repository = "https://github.com/getzep/graphiti"
|
||||||
anthropic = ["anthropic>=0.49.0"]
|
anthropic = ["anthropic>=0.49.0"]
|
||||||
groq = ["groq>=0.2.0"]
|
groq = ["groq>=0.2.0"]
|
||||||
google-genai = ["google-genai>=1.8.0"]
|
google-genai = ["google-genai>=1.8.0"]
|
||||||
falkord-db = ["falkordb>=1.1.2,<2.0.0"]
|
falkordb = ["falkordb>=1.1.2,<2.0.0"]
|
||||||
dev = [
|
dev = [
|
||||||
"pyright>=1.1.380",
|
"pyright>=1.1.380",
|
||||||
"groq>=0.2.0",
|
"groq>=0.2.0",
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue