docs: add installation instructions for Graphiti using poetry and uv (#340)
docs: enhance README with installation instructions for Google Gemini support
This commit is contained in:
parent
0f6ac57dab
commit
77406dfae9
1 changed files with 10 additions and 0 deletions
10
README.md
10
README.md
|
|
@ -231,6 +231,16 @@ Make sure to replace the placeholder values with your actual Azure OpenAI creden
|
|||
|
||||
Graphiti supports Google's Gemini models for both LLM inference and embeddings. To use Gemini, you'll need to configure both the LLM client and embedder with your Google API key.
|
||||
|
||||
Install Graphiti:
|
||||
|
||||
```bash
|
||||
poetry add "graphiti-core[google-genai]"
|
||||
|
||||
# or
|
||||
|
||||
uv add "graphiti-core[google-genai]"
|
||||
```
|
||||
|
||||
```python
|
||||
from graphiti_core import Graphiti
|
||||
from graphiti_core.llm_client.gemini_client import GeminiClient, LLMConfig
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue