Neo4j RAG working in docker compose

This commit is contained in:
Cyber MacGeddon 2024-08-14 00:43:40 +01:00
parent 657b2801d3
commit 4d05e1e836
16 changed files with 138 additions and 386 deletions

View file

@ -4,7 +4,7 @@ import os
with open("README.md", "r") as fh:
long_description = fh.read()
version = "0.6.0"
version = "0.6.1"
setuptools.setup(
name="trustgraph",
@ -48,6 +48,7 @@ setuptools.setup(
"cohere",
"boto3",
"openai",
"neo4j",
],
scripts=[
"scripts/chunker-recursive",
@ -82,5 +83,7 @@ setuptools.setup(
"scripts/triples-dump-parquet",
"scripts/triples-query-cassandra",
"scripts/triples-write-cassandra",
"scripts/triples-query-neo4j",
"scripts/triples-write-neo4j",
]
)