Add neo4j vector memory template (#12993)

This commit is contained in:
Tomaz Bratanic
2023-11-07 22:00:49 +01:00
committed by GitHub
parent 5ac2fc5bb2
commit 13bd83bd61
10 changed files with 2136 additions and 0 deletions

View File

@@ -0,0 +1,28 @@
[tool.poetry]
name = "neo4j-vector-memory"
version = "0.1.0"
description = ""
authors = [
"Tomaz Bratanic <tomaz.bratanic@neo4j.com>",
]
readme = "README.md"
[tool.poetry.dependencies]
python = ">=3.8.1,<4.0"
langchain = ">=0.0.325"
tiktoken = "^0.5.1"
openai = "^0.28.1"
neo4j = "^5.14.0"
[tool.poetry.group.dev.dependencies]
langchain-cli = ">=0.0.15"
[tool.langserve]
export_module = "neo4j_vector_memory"
export_attr = "chain"
[build-system]
requires = [
"poetry-core",
]
build-backend = "poetry.core.masonry.api"