diff --git a/scripts/query b/scripts/query index 5cb5c0c6..caffa602 100755 --- a/scripts/query +++ b/scripts/query @@ -5,7 +5,12 @@ import sys query = " ".join(sys.argv[1:]) -gr = GraphRag(verbose=True) +gr = GraphRag( + verbose=True, + vector_store="http://localhost:19530", + pulsar_host="pulsar://localhost:6650", + graph_hosts=["localhost"], +) if query == "": query="""This knowledge graph describes the Space Shuttle disaster. diff --git a/setup.py b/setup.py index 8a13bb7f..b5049a99 100644 --- a/setup.py +++ b/setup.py @@ -4,17 +4,17 @@ import os with open("README.md", "r") as fh: long_description = fh.read() -version = "0.2.1" +version = "0.2.2" setuptools.setup( name="trustgraph", version=version, author="trustgraph.ai", author_email="security@trustgraph.ai", - description="trustgraph.ai", + description="TrustGraph provides a means to run a pipeline of flexible AI processing components in a flexible means to achieve a processing pipeline.", long_description=long_description, long_description_content_type="text/markdown", - url="https://github.com/trustgraph.ai/FIXME.git", + url="https://github.com/trustgraph-ai/trustgraph", packages=setuptools.find_packages(), classifiers=[ "Programming Language :: Python :: 3", @@ -22,7 +22,7 @@ setuptools.setup( "Operating System :: OS Independent", ], python_requires='>=3.8', - download_url = "https://github.com/trustgraph.ai/FIXME.git/archive/refs/tags/v" + version + ".tar.gz", + download_url = "https://github.com/trustgraph-ai/trustgraph/archive/refs/tags/v" + version + ".tar.gz", install_requires=[ "torch", "urllib3",