2023-11-07 21:00:49 +00:00
|
|
|
[tool.poetry]
|
|
|
|
name = "neo4j-vector-memory"
|
|
|
|
version = "0.1.0"
|
2023-11-22 06:41:12 +00:00
|
|
|
description = "Store conversational flows in a Neo4j graph database"
|
2023-11-07 21:00:49 +00:00
|
|
|
authors = [
|
|
|
|
"Tomaz Bratanic <tomaz.bratanic@neo4j.com>",
|
|
|
|
]
|
|
|
|
readme = "README.md"
|
|
|
|
|
|
|
|
[tool.poetry.dependencies]
|
|
|
|
python = ">=3.8.1,<4.0"
|
2024-01-07 02:31:46 +00:00
|
|
|
langchain = "^0.1"
|
2023-11-07 21:00:49 +00:00
|
|
|
tiktoken = "^0.5.1"
|
2023-11-17 01:10:08 +00:00
|
|
|
openai = "<2"
|
2023-11-07 21:00:49 +00:00
|
|
|
neo4j = "^5.14.0"
|
|
|
|
|
|
|
|
[tool.poetry.group.dev.dependencies]
|
|
|
|
langchain-cli = ">=0.0.15"
|
|
|
|
|
|
|
|
[tool.langserve]
|
|
|
|
export_module = "neo4j_vector_memory"
|
|
|
|
export_attr = "chain"
|
|
|
|
|
2023-11-22 06:41:12 +00:00
|
|
|
[tool.templates-hub]
|
|
|
|
use-case = "rag"
|
|
|
|
author = "Neo4j"
|
|
|
|
integrations = ["Neo4j", "OpenAI"]
|
|
|
|
tags = ["graph-database", "conversation"]
|
|
|
|
|
2023-11-07 21:00:49 +00:00
|
|
|
[build-system]
|
|
|
|
requires = [
|
|
|
|
"poetry-core",
|
|
|
|
]
|
|
|
|
build-backend = "poetry.core.masonry.api"
|