Skip to content

Commit 3643a3a

Browse files
Updated langchain neo4j package and other langchain packages (#1040)
1 parent 0fbaefa commit 3643a3a

File tree

2 files changed

+21
-20
lines changed

2 files changed

+21
-20
lines changed

backend/requirements.txt

Lines changed: 19 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -1,33 +1,33 @@
11
asyncio==3.4.3
2-
boto3==1.35.90
3-
botocore==1.35.90
2+
boto3==1.36.2
3+
botocore==1.36.2
44
certifi==2024.8.30
55
fastapi==0.115.6
66
fastapi-health==0.4.0
7-
google-api-core==2.23.0
8-
google-auth==2.36.0
7+
google-api-core==2.24.0
8+
google-auth==2.37.0
99
google_auth_oauthlib==1.2.1
1010
google-cloud-core==2.4.1
1111
json-repair==0.30.2
1212
pip-install==1.3.5
13-
langchain==0.3.13
14-
langchain-aws==0.2.10
15-
langchain-anthropic==0.3.0
16-
langchain-fireworks==0.2.5
17-
langchain-community==0.3.13
18-
langchain-core==0.3.28
13+
langchain==0.3.15
14+
langchain-aws==0.2.11
15+
langchain-anthropic==0.3.3
16+
langchain-fireworks==0.2.6
17+
langchain-community==0.3.15
18+
langchain-core==0.3.31
1919
langchain-experimental==0.3.4
20-
langchain-google-vertexai==2.0.7
21-
langchain-groq==0.2.1
22-
langchain-openai==0.2.14
23-
langchain-text-splitters==0.3.4
20+
langchain-google-vertexai==2.0.11
21+
langchain-groq==0.2.3
22+
langchain-openai==0.3.1
23+
langchain-text-splitters==0.3.5
2424
langchain-huggingface==0.1.2
2525
langdetect==1.0.9
26-
langsmith==0.2.4
27-
langserve==0.3.0
26+
langsmith==0.2.11
27+
langserve==0.3.1
2828
neo4j-rust-ext
2929
nltk==3.9.1
30-
openai==1.58.1
30+
openai==1.59.9
3131
opencv-python==4.10.0.84
3232
psutil==6.1.0
3333
pydantic==2.9.2
@@ -56,7 +56,7 @@ google-cloud-logging==3.11.3
5656
pypandoc==1.13
5757
graphdatascience==1.12
5858
Secweb==1.11.0
59-
ragas==0.2.6
59+
ragas==0.2.11
6060
rouge_score==0.1.2
61-
langchain-neo4j==0.2.0
61+
langchain-neo4j==0.3.0
6262

backend/src/make_relationships.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -161,7 +161,8 @@ def create_chunk_vector_index(graph):
161161
graph=graph,
162162
node_label="Chunk",
163163
embedding_node_property="embedding",
164-
index_name="vector"
164+
index_name="vector",
165+
embedding_dimension=EMBEDDING_DIMENSION
165166
)
166167
vector_store.create_new_index()
167168
logging.info(f"Index created successfully. Time taken: {time.time() - start_time:.2f} seconds")

0 commit comments

Comments
 (0)