From 72b3fbdb3aa6e3287472a9045b5e08807a308410 Mon Sep 17 00:00:00 2001 From: Lance Martin Date: Mon, 30 Sep 2024 12:22:04 -0700 Subject: [PATCH] Fix langgraph version --- README.md | 2 +- pyproject.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 2e62cfb..eebfdf5 100644 --- a/README.md +++ b/README.md @@ -32,7 +32,7 @@ This quick start will get your memory service deployed on [LangGraph Cloud](http This example defaults to using Pinecone for its memory database, and `nomic-ai/nomic-embed-text-v1.5` as the text encoder (hosted on Fireworks). -1. [Create an index](https://docs.pinecone.io/reference/api/control-plane/create_index) with a dimension size of `768`. Note down your Pinecone API key, index name, and namespac for the next step. +1. [Create an index](https://docs.pinecone.io/reference/api/control-plane/create_index) with a dimension size of `768`. Note down your Pinecone API key, index name, and namespace for the next step. 2. [Create an API Key](https://fireworks.ai/api-keys) to use for the LLM & embeddings models served on Fireworks. #### Deploy to LangGraph Cloud diff --git a/pyproject.toml b/pyproject.toml index 670363e..a4d52ee 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -7,7 +7,7 @@ readme = "README.md" [tool.poetry.dependencies] python = ">=3.9.0,<3.13" -langgraph = "^0.1.0" +langgraph = "^0.2.18" langchain-fireworks = "^0.1.3" # Feel free to swap out for postgres or your favorite database. langchain-pinecone = "^0.1.1"