From 77406dfae93975ea1065178832c74e5186b95c68 Mon Sep 17 00:00:00 2001 From: Daniel Chalef <131175+danielchalef@users.noreply.github.com> Date: Tue, 8 Apr 2025 21:20:09 -0700 Subject: [PATCH] docs: add installation instructions for Graphiti using poetry and uv (#340) docs: enhance README with installation instructions for Google Gemini support --- README.md | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/README.md b/README.md index abe5cf58..19e93ecc 100644 --- a/README.md +++ b/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