diff --git a/Containerfile b/Containerfile index bfcbe5df..cc808838 100644 --- a/Containerfile +++ b/Containerfile @@ -28,18 +28,36 @@ RUN pip3 install anthropic boto3 cohere openai google-cloud-aiplatform ollama \ FROM ai AS build -env PACKAGE_VERSION=0.0.0 +COPY trustgraph-base/ /root/build/trustgraph-base/ +COPY README.md /root/build/trustgraph-base/ -COPY trustgraph-core/ /root/build/trustgraph-core/ -COPY README.md /root/build/trustgraph-core/ +COPY trustgraph-flow/ /root/build/trustgraph-flow/ +COPY README.md /root/build/trustgraph-flow/ + +COPY trustgraph-vertexai/ /root/build/trustgraph-vertexai/ +COPY README.md /root/build/trustgraph-vertexai/ + +COPY trustgraph-bedrock/ /root/build/trustgraph-bedrock/ +COPY README.md /root/build/trustgraph-bedrock/ + +COPY trustgraph-parquet/ /root/build/trustgraph-parquet/ +COPY README.md /root/build/trustgraph-parquet/ COPY trustgraph-embeddings-hf/ /root/build/trustgraph-embeddings-hf/ COPY README.md /root/build/trustgraph-embeddings-hf/ +COPY trustgraph-utils/ /root/build/trustgraph-utils/ +COPY README.md /root/build/trustgraph-utils/ + WORKDIR /root/build/ -RUN pip3 wheel -w /root/wheels/ --no-deps ./trustgraph-core/ +RUN pip3 wheel -w /root/wheels/ --no-deps ./trustgraph-base/ +RUN pip3 wheel -w /root/wheels/ --no-deps ./trustgraph-flow/ +RUN pip3 wheel -w /root/wheels/ --no-deps ./trustgraph-vertexai/ +RUN pip3 wheel -w /root/wheels/ --no-deps ./trustgraph-bedrock/ +RUN pip3 wheel -w /root/wheels/ --no-deps ./trustgraph-parquet/ RUN pip3 wheel -w /root/wheels/ --no-deps ./trustgraph-embeddings-hf/ +RUN pip3 wheel -w /root/wheels/ --no-deps ./trustgraph-utils/ RUN ls /root/wheels @@ -52,8 +70,13 @@ FROM ai COPY --from=build /root/wheels /root/wheels RUN \ - pip3 install /root/wheels/trustgraph_core-* && \ + pip3 install /root/wheels/trustgraph_base-* && \ + pip3 install /root/wheels/trustgraph_flow-* && \ + pip3 install /root/wheels/trustgraph_vertexai-* && \ + pip3 install /root/wheels/trustgraph_bedrock-* && \ + pip3 install /root/wheels/trustgraph_parquet-* && \ pip3 install /root/wheels/trustgraph_embeddings_hf-* && \ + pip3 install /root/wheels/trustgraph_utils-* && \ pip3 cache purge && \ rm -rf /root/wheels diff --git a/Makefile b/Makefile index 521aafd1..78c1cb45 100644 --- a/Makefile +++ b/Makefile @@ -1,20 +1,31 @@ # VERSION=$(shell git describe | sed 's/^v//') -VERSION=0.11.8 +VERSION=0.11.9 DOCKER=podman all: container pkgs: - pip3 wheel --no-deps --wheel-dir dist trustgraph-core/ + pip3 wheel --no-deps --wheel-dir dist trustgraph-base/ + pip3 wheel --no-deps --wheel-dir dist trustgraph-flow/ + pip3 wheel --no-deps --wheel-dir dist trustgraph-vertexai/ + pip3 wheel --no-deps --wheel-dir dist trustgraph-bedrock/ + pip3 wheel --no-deps --wheel-dir dist trustgraph-parquet/ pip3 wheel --no-deps --wheel-dir dist trustgraph-embeddings-hf/ + pip3 wheel --no-deps --wheel-dir dist trustgraph-utils/ CONTAINER=docker.io/trustgraph/trustgraph-flow update-package-versions: - echo __version__ = \"${VERSION}\" > trustgraph-core/trustgraph/core_version.py + mkdir -p trustgraph-utils/trustgraph + echo __version__ = \"${VERSION}\" > trustgraph-base/trustgraph/base_version.py + echo __version__ = \"${VERSION}\" > trustgraph-flow/trustgraph/flow_version.py + echo __version__ = \"${VERSION}\" > trustgraph-vertexai/trustgraph/vertexai_version.py + echo __version__ = \"${VERSION}\" > trustgraph-bedrock/trustgraph/bedrock_version.py + echo __version__ = \"${VERSION}\" > trustgraph-parquet/trustgraph/parquet_version.py echo __version__ = \"${VERSION}\" > trustgraph-embeddings-hf/trustgraph/embeddings_hf_version.py + echo __version__ = \"${VERSION}\" > trustgraph-utils/trustgraph/utils_version.py container: update-package-versions ${DOCKER} build -f Containerfile -t ${CONTAINER}:${VERSION} \ @@ -23,17 +34,6 @@ container: update-package-versions push: ${DOCKER} push ${CONTAINER}:${VERSION} -start: - ${DOCKER} run -i -t --name ${NAME} \ - -i -t \ - -p 8081:8081 \ - -v $$(pwd)/keys:/keys \ - -v $$(pwd)/configs:/configs \ - ${CONTAINER}:${VERSION} - -stop: - ${DOCKER} rm -f ${NAME} - clean: rm -rf wheels/ @@ -61,10 +61,8 @@ JSONNET_FLAGS=-J templates -J . # is going away in 0.11. update-templates: update-dcs -# update-minikubes JSON_TO_YAML=python3 -c 'import sys, yaml, json; j=json.loads(sys.stdin.read()); print(yaml.safe_dump(j))' -# JSON_TO_YAML=cat update-dcs: set-version for graph in ${GRAPHS}; do \ @@ -88,31 +86,7 @@ update-dcs: set-version done; \ done -update-minikubes: set-version - rm -rf deploy/minikube - mkdir -p deploy/minikube - for model in ${MODELS}; do \ - for graph in ${GRAPHS}; do \ - cm=$${graph},pulsar,${VECTORDB},embeddings-hf,graph-rag,grafana,trustgraph,$${model}; \ - input=templates/opts-to-minikube-k8s.jsonnet; \ - output=deploy/minikube/tg-launch-$${model}-$${graph}.yaml; \ - echo $${model} + $${graph} '->' $${output}; \ - jsonnet ${JSONNET_FLAGS} \ - --ext-str options=$${cm} $${input} | \ - ${JSON_TO_YAML} > $${output}; \ - done; \ - done - docker-hub-login: cat docker-token.txt | \ docker login -u trustgraph --password-stdin registry-1.docker.io -FORCE: - -IGNOREconfig.yaml: config.json FORCE - jsonnet -J . -J templates/ templates/config-to-gcp-k8s.jsonnet | \ - python3 -c 'import sys, yaml, json; j=json.loads(sys.stdin.read()); print(yaml.safe_dump(j))' > $@ - -config.yaml: config.json FORCE - jsonnet -J . -J templates/ templates/config-to-minikube-k8s.jsonnet | \ - python3 -c 'import sys, yaml, json; j=json.loads(sys.stdin.read()); print(yaml.safe_dump(j))' > $@ diff --git a/tg-launch-azure-cassandra.yaml b/tg-launch-azure-cassandra.yaml index 52d0c150..2afe9f59 100644 --- a/tg-launch-azure-cassandra.yaml +++ b/tg-launch-azure-cassandra.yaml @@ -33,7 +33,7 @@ services: reservations: cpus: '0.1' memory: 128M - image: docker.io/trustgraph/trustgraph-flow:0.11.8 + image: docker.io/trustgraph/trustgraph-flow:0.11.9 restart: on-failure:100 embeddings: command: @@ -50,7 +50,7 @@ services: reservations: cpus: '0.5' memory: 400M - image: docker.io/trustgraph/trustgraph-flow:0.11.8 + image: docker.io/trustgraph/trustgraph-flow:0.11.9 restart: on-failure:100 grafana: deploy: @@ -95,7 +95,7 @@ services: reservations: cpus: '0.1' memory: 128M - image: docker.io/trustgraph/trustgraph-flow:0.11.8 + image: docker.io/trustgraph/trustgraph-flow:0.11.9 restart: on-failure:100 init-pulsar: command: @@ -110,7 +110,7 @@ services: reservations: cpus: '0.1' memory: 128M - image: docker.io/trustgraph/trustgraph-flow:0.11.8 + image: docker.io/trustgraph/trustgraph-flow:0.11.9 restart: on-failure:100 kg-extract-definitions: command: @@ -125,7 +125,7 @@ services: reservations: cpus: '0.1' memory: 128M - image: docker.io/trustgraph/trustgraph-flow:0.11.8 + image: docker.io/trustgraph/trustgraph-flow:0.11.9 restart: on-failure:100 kg-extract-relationships: command: @@ -140,7 +140,7 @@ services: reservations: cpus: '0.1' memory: 128M - image: docker.io/trustgraph/trustgraph-flow:0.11.8 + image: docker.io/trustgraph/trustgraph-flow:0.11.9 restart: on-failure:100 kg-extract-topics: command: @@ -155,7 +155,7 @@ services: reservations: cpus: '0.1' memory: 128M - image: docker.io/trustgraph/trustgraph-flow:0.11.8 + image: docker.io/trustgraph/trustgraph-flow:0.11.9 restart: on-failure:100 metering: command: @@ -170,7 +170,7 @@ services: reservations: cpus: '0.1' memory: 128M - image: docker.io/trustgraph/trustgraph-flow:0.11.8 + image: docker.io/trustgraph/trustgraph-flow:0.11.9 restart: on-failure:100 metering-rag: command: @@ -187,7 +187,7 @@ services: reservations: cpus: '0.1' memory: 128M - image: docker.io/trustgraph/trustgraph-flow:0.11.8 + image: docker.io/trustgraph/trustgraph-flow:0.11.9 restart: on-failure:100 pdf-decoder: command: @@ -202,7 +202,7 @@ services: reservations: cpus: '0.1' memory: 128M - image: docker.io/trustgraph/trustgraph-flow:0.11.8 + image: docker.io/trustgraph/trustgraph-flow:0.11.9 restart: on-failure:100 prometheus: deploy: @@ -392,7 +392,7 @@ services: reservations: cpus: '0.1' memory: 128M - image: docker.io/trustgraph/trustgraph-flow:0.11.8 + image: docker.io/trustgraph/trustgraph-flow:0.11.9 restart: on-failure:100 prompt-rag: command: @@ -570,7 +570,7 @@ services: reservations: cpus: '0.1' memory: 128M - image: docker.io/trustgraph/trustgraph-flow:0.11.8 + image: docker.io/trustgraph/trustgraph-flow:0.11.9 restart: on-failure:100 pulsar: command: @@ -624,7 +624,7 @@ services: reservations: cpus: '0.1' memory: 128M - image: docker.io/trustgraph/trustgraph-flow:0.11.8 + image: docker.io/trustgraph/trustgraph-flow:0.11.9 restart: on-failure:100 query-graph-embeddings: command: @@ -641,7 +641,7 @@ services: reservations: cpus: '0.1' memory: 128M - image: docker.io/trustgraph/trustgraph-flow:0.11.8 + image: docker.io/trustgraph/trustgraph-flow:0.11.9 restart: on-failure:100 query-triples: command: @@ -658,7 +658,7 @@ services: reservations: cpus: '0.1' memory: 512M - image: docker.io/trustgraph/trustgraph-flow:0.11.8 + image: docker.io/trustgraph/trustgraph-flow:0.11.9 restart: on-failure:100 store-doc-embeddings: command: @@ -675,7 +675,7 @@ services: reservations: cpus: '0.1' memory: 128M - image: docker.io/trustgraph/trustgraph-flow:0.11.8 + image: docker.io/trustgraph/trustgraph-flow:0.11.9 restart: on-failure:100 store-graph-embeddings: command: @@ -692,7 +692,7 @@ services: reservations: cpus: '0.1' memory: 128M - image: docker.io/trustgraph/trustgraph-flow:0.11.8 + image: docker.io/trustgraph/trustgraph-flow:0.11.9 restart: on-failure:100 store-triples: command: @@ -709,7 +709,7 @@ services: reservations: cpus: '0.1' memory: 128M - image: docker.io/trustgraph/trustgraph-flow:0.11.8 + image: docker.io/trustgraph/trustgraph-flow:0.11.9 restart: on-failure:100 text-completion: command: @@ -732,7 +732,7 @@ services: reservations: cpus: '0.1' memory: 128M - image: docker.io/trustgraph/trustgraph-flow:0.11.8 + image: docker.io/trustgraph/trustgraph-flow:0.11.9 restart: on-failure:100 text-completion-rag: command: @@ -759,7 +759,7 @@ services: reservations: cpus: '0.1' memory: 128M - image: docker.io/trustgraph/trustgraph-flow:0.11.8 + image: docker.io/trustgraph/trustgraph-flow:0.11.9 restart: on-failure:100 vectorize: command: @@ -774,7 +774,7 @@ services: reservations: cpus: '0.5' memory: 512M - image: docker.io/trustgraph/trustgraph-flow:0.11.8 + image: docker.io/trustgraph/trustgraph-flow:0.11.9 restart: on-failure:100 volumes: cassandra: {} diff --git a/tg-launch-azure-neo4j.yaml b/tg-launch-azure-neo4j.yaml index 62fc30f6..4e784a80 100644 --- a/tg-launch-azure-neo4j.yaml +++ b/tg-launch-azure-neo4j.yaml @@ -16,7 +16,7 @@ services: reservations: cpus: '0.1' memory: 128M - image: docker.io/trustgraph/trustgraph-flow:0.11.8 + image: docker.io/trustgraph/trustgraph-flow:0.11.9 restart: on-failure:100 embeddings: command: @@ -33,7 +33,7 @@ services: reservations: cpus: '0.5' memory: 400M - image: docker.io/trustgraph/trustgraph-flow:0.11.8 + image: docker.io/trustgraph/trustgraph-flow:0.11.9 restart: on-failure:100 grafana: deploy: @@ -78,7 +78,7 @@ services: reservations: cpus: '0.1' memory: 128M - image: docker.io/trustgraph/trustgraph-flow:0.11.8 + image: docker.io/trustgraph/trustgraph-flow:0.11.9 restart: on-failure:100 init-pulsar: command: @@ -93,7 +93,7 @@ services: reservations: cpus: '0.1' memory: 128M - image: docker.io/trustgraph/trustgraph-flow:0.11.8 + image: docker.io/trustgraph/trustgraph-flow:0.11.9 restart: on-failure:100 kg-extract-definitions: command: @@ -108,7 +108,7 @@ services: reservations: cpus: '0.1' memory: 128M - image: docker.io/trustgraph/trustgraph-flow:0.11.8 + image: docker.io/trustgraph/trustgraph-flow:0.11.9 restart: on-failure:100 kg-extract-relationships: command: @@ -123,7 +123,7 @@ services: reservations: cpus: '0.1' memory: 128M - image: docker.io/trustgraph/trustgraph-flow:0.11.8 + image: docker.io/trustgraph/trustgraph-flow:0.11.9 restart: on-failure:100 kg-extract-topics: command: @@ -138,7 +138,7 @@ services: reservations: cpus: '0.1' memory: 128M - image: docker.io/trustgraph/trustgraph-flow:0.11.8 + image: docker.io/trustgraph/trustgraph-flow:0.11.9 restart: on-failure:100 metering: command: @@ -153,7 +153,7 @@ services: reservations: cpus: '0.1' memory: 128M - image: docker.io/trustgraph/trustgraph-flow:0.11.8 + image: docker.io/trustgraph/trustgraph-flow:0.11.9 restart: on-failure:100 metering-rag: command: @@ -170,7 +170,7 @@ services: reservations: cpus: '0.1' memory: 128M - image: docker.io/trustgraph/trustgraph-flow:0.11.8 + image: docker.io/trustgraph/trustgraph-flow:0.11.9 restart: on-failure:100 neo4j: deploy: @@ -203,7 +203,7 @@ services: reservations: cpus: '0.1' memory: 128M - image: docker.io/trustgraph/trustgraph-flow:0.11.8 + image: docker.io/trustgraph/trustgraph-flow:0.11.9 restart: on-failure:100 prometheus: deploy: @@ -393,7 +393,7 @@ services: reservations: cpus: '0.1' memory: 128M - image: docker.io/trustgraph/trustgraph-flow:0.11.8 + image: docker.io/trustgraph/trustgraph-flow:0.11.9 restart: on-failure:100 prompt-rag: command: @@ -571,7 +571,7 @@ services: reservations: cpus: '0.1' memory: 128M - image: docker.io/trustgraph/trustgraph-flow:0.11.8 + image: docker.io/trustgraph/trustgraph-flow:0.11.9 restart: on-failure:100 pulsar: command: @@ -625,7 +625,7 @@ services: reservations: cpus: '0.1' memory: 128M - image: docker.io/trustgraph/trustgraph-flow:0.11.8 + image: docker.io/trustgraph/trustgraph-flow:0.11.9 restart: on-failure:100 query-graph-embeddings: command: @@ -642,7 +642,7 @@ services: reservations: cpus: '0.1' memory: 128M - image: docker.io/trustgraph/trustgraph-flow:0.11.8 + image: docker.io/trustgraph/trustgraph-flow:0.11.9 restart: on-failure:100 query-triples: command: @@ -659,7 +659,7 @@ services: reservations: cpus: '0.1' memory: 128M - image: docker.io/trustgraph/trustgraph-flow:0.11.8 + image: docker.io/trustgraph/trustgraph-flow:0.11.9 restart: on-failure:100 store-doc-embeddings: command: @@ -676,7 +676,7 @@ services: reservations: cpus: '0.1' memory: 128M - image: docker.io/trustgraph/trustgraph-flow:0.11.8 + image: docker.io/trustgraph/trustgraph-flow:0.11.9 restart: on-failure:100 store-graph-embeddings: command: @@ -693,7 +693,7 @@ services: reservations: cpus: '0.1' memory: 128M - image: docker.io/trustgraph/trustgraph-flow:0.11.8 + image: docker.io/trustgraph/trustgraph-flow:0.11.9 restart: on-failure:100 store-triples: command: @@ -710,7 +710,7 @@ services: reservations: cpus: '0.1' memory: 128M - image: docker.io/trustgraph/trustgraph-flow:0.11.8 + image: docker.io/trustgraph/trustgraph-flow:0.11.9 restart: on-failure:100 text-completion: command: @@ -733,7 +733,7 @@ services: reservations: cpus: '0.1' memory: 128M - image: docker.io/trustgraph/trustgraph-flow:0.11.8 + image: docker.io/trustgraph/trustgraph-flow:0.11.9 restart: on-failure:100 text-completion-rag: command: @@ -760,7 +760,7 @@ services: reservations: cpus: '0.1' memory: 128M - image: docker.io/trustgraph/trustgraph-flow:0.11.8 + image: docker.io/trustgraph/trustgraph-flow:0.11.9 restart: on-failure:100 vectorize: command: @@ -775,7 +775,7 @@ services: reservations: cpus: '0.5' memory: 512M - image: docker.io/trustgraph/trustgraph-flow:0.11.8 + image: docker.io/trustgraph/trustgraph-flow:0.11.9 restart: on-failure:100 volumes: grafana-storage: {} diff --git a/tg-launch-bedrock-cassandra.yaml b/tg-launch-bedrock-cassandra.yaml index 79e0068a..0b525411 100644 --- a/tg-launch-bedrock-cassandra.yaml +++ b/tg-launch-bedrock-cassandra.yaml @@ -33,7 +33,7 @@ services: reservations: cpus: '0.1' memory: 128M - image: docker.io/trustgraph/trustgraph-flow:0.11.8 + image: docker.io/trustgraph/trustgraph-flow:0.11.9 restart: on-failure:100 embeddings: command: @@ -50,7 +50,7 @@ services: reservations: cpus: '0.5' memory: 400M - image: docker.io/trustgraph/trustgraph-flow:0.11.8 + image: docker.io/trustgraph/trustgraph-flow:0.11.9 restart: on-failure:100 grafana: deploy: @@ -95,7 +95,7 @@ services: reservations: cpus: '0.1' memory: 128M - image: docker.io/trustgraph/trustgraph-flow:0.11.8 + image: docker.io/trustgraph/trustgraph-flow:0.11.9 restart: on-failure:100 init-pulsar: command: @@ -110,7 +110,7 @@ services: reservations: cpus: '0.1' memory: 128M - image: docker.io/trustgraph/trustgraph-flow:0.11.8 + image: docker.io/trustgraph/trustgraph-flow:0.11.9 restart: on-failure:100 kg-extract-definitions: command: @@ -125,7 +125,7 @@ services: reservations: cpus: '0.1' memory: 128M - image: docker.io/trustgraph/trustgraph-flow:0.11.8 + image: docker.io/trustgraph/trustgraph-flow:0.11.9 restart: on-failure:100 kg-extract-relationships: command: @@ -140,7 +140,7 @@ services: reservations: cpus: '0.1' memory: 128M - image: docker.io/trustgraph/trustgraph-flow:0.11.8 + image: docker.io/trustgraph/trustgraph-flow:0.11.9 restart: on-failure:100 kg-extract-topics: command: @@ -155,7 +155,7 @@ services: reservations: cpus: '0.1' memory: 128M - image: docker.io/trustgraph/trustgraph-flow:0.11.8 + image: docker.io/trustgraph/trustgraph-flow:0.11.9 restart: on-failure:100 metering: command: @@ -170,7 +170,7 @@ services: reservations: cpus: '0.1' memory: 128M - image: docker.io/trustgraph/trustgraph-flow:0.11.8 + image: docker.io/trustgraph/trustgraph-flow:0.11.9 restart: on-failure:100 metering-rag: command: @@ -187,7 +187,7 @@ services: reservations: cpus: '0.1' memory: 128M - image: docker.io/trustgraph/trustgraph-flow:0.11.8 + image: docker.io/trustgraph/trustgraph-flow:0.11.9 restart: on-failure:100 pdf-decoder: command: @@ -202,7 +202,7 @@ services: reservations: cpus: '0.1' memory: 128M - image: docker.io/trustgraph/trustgraph-flow:0.11.8 + image: docker.io/trustgraph/trustgraph-flow:0.11.9 restart: on-failure:100 prometheus: deploy: @@ -392,7 +392,7 @@ services: reservations: cpus: '0.1' memory: 128M - image: docker.io/trustgraph/trustgraph-flow:0.11.8 + image: docker.io/trustgraph/trustgraph-flow:0.11.9 restart: on-failure:100 prompt-rag: command: @@ -570,7 +570,7 @@ services: reservations: cpus: '0.1' memory: 128M - image: docker.io/trustgraph/trustgraph-flow:0.11.8 + image: docker.io/trustgraph/trustgraph-flow:0.11.9 restart: on-failure:100 pulsar: command: @@ -624,7 +624,7 @@ services: reservations: cpus: '0.1' memory: 128M - image: docker.io/trustgraph/trustgraph-flow:0.11.8 + image: docker.io/trustgraph/trustgraph-flow:0.11.9 restart: on-failure:100 query-graph-embeddings: command: @@ -641,7 +641,7 @@ services: reservations: cpus: '0.1' memory: 128M - image: docker.io/trustgraph/trustgraph-flow:0.11.8 + image: docker.io/trustgraph/trustgraph-flow:0.11.9 restart: on-failure:100 query-triples: command: @@ -658,7 +658,7 @@ services: reservations: cpus: '0.1' memory: 512M - image: docker.io/trustgraph/trustgraph-flow:0.11.8 + image: docker.io/trustgraph/trustgraph-flow:0.11.9 restart: on-failure:100 store-doc-embeddings: command: @@ -675,7 +675,7 @@ services: reservations: cpus: '0.1' memory: 128M - image: docker.io/trustgraph/trustgraph-flow:0.11.8 + image: docker.io/trustgraph/trustgraph-flow:0.11.9 restart: on-failure:100 store-graph-embeddings: command: @@ -692,7 +692,7 @@ services: reservations: cpus: '0.1' memory: 128M - image: docker.io/trustgraph/trustgraph-flow:0.11.8 + image: docker.io/trustgraph/trustgraph-flow:0.11.9 restart: on-failure:100 store-triples: command: @@ -709,7 +709,7 @@ services: reservations: cpus: '0.1' memory: 128M - image: docker.io/trustgraph/trustgraph-flow:0.11.8 + image: docker.io/trustgraph/trustgraph-flow:0.11.9 restart: on-failure:100 text-completion: command: @@ -736,7 +736,7 @@ services: reservations: cpus: '0.1' memory: 128M - image: docker.io/trustgraph/trustgraph-flow:0.11.8 + image: docker.io/trustgraph/trustgraph-flow:0.11.9 restart: on-failure:100 text-completion-rag: command: @@ -767,7 +767,7 @@ services: reservations: cpus: '0.1' memory: 128M - image: docker.io/trustgraph/trustgraph-flow:0.11.8 + image: docker.io/trustgraph/trustgraph-flow:0.11.9 restart: on-failure:100 vectorize: command: @@ -782,7 +782,7 @@ services: reservations: cpus: '0.5' memory: 512M - image: docker.io/trustgraph/trustgraph-flow:0.11.8 + image: docker.io/trustgraph/trustgraph-flow:0.11.9 restart: on-failure:100 volumes: cassandra: {} diff --git a/tg-launch-bedrock-neo4j.yaml b/tg-launch-bedrock-neo4j.yaml index af53883b..822bc094 100644 --- a/tg-launch-bedrock-neo4j.yaml +++ b/tg-launch-bedrock-neo4j.yaml @@ -16,7 +16,7 @@ services: reservations: cpus: '0.1' memory: 128M - image: docker.io/trustgraph/trustgraph-flow:0.11.8 + image: docker.io/trustgraph/trustgraph-flow:0.11.9 restart: on-failure:100 embeddings: command: @@ -33,7 +33,7 @@ services: reservations: cpus: '0.5' memory: 400M - image: docker.io/trustgraph/trustgraph-flow:0.11.8 + image: docker.io/trustgraph/trustgraph-flow:0.11.9 restart: on-failure:100 grafana: deploy: @@ -78,7 +78,7 @@ services: reservations: cpus: '0.1' memory: 128M - image: docker.io/trustgraph/trustgraph-flow:0.11.8 + image: docker.io/trustgraph/trustgraph-flow:0.11.9 restart: on-failure:100 init-pulsar: command: @@ -93,7 +93,7 @@ services: reservations: cpus: '0.1' memory: 128M - image: docker.io/trustgraph/trustgraph-flow:0.11.8 + image: docker.io/trustgraph/trustgraph-flow:0.11.9 restart: on-failure:100 kg-extract-definitions: command: @@ -108,7 +108,7 @@ services: reservations: cpus: '0.1' memory: 128M - image: docker.io/trustgraph/trustgraph-flow:0.11.8 + image: docker.io/trustgraph/trustgraph-flow:0.11.9 restart: on-failure:100 kg-extract-relationships: command: @@ -123,7 +123,7 @@ services: reservations: cpus: '0.1' memory: 128M - image: docker.io/trustgraph/trustgraph-flow:0.11.8 + image: docker.io/trustgraph/trustgraph-flow:0.11.9 restart: on-failure:100 kg-extract-topics: command: @@ -138,7 +138,7 @@ services: reservations: cpus: '0.1' memory: 128M - image: docker.io/trustgraph/trustgraph-flow:0.11.8 + image: docker.io/trustgraph/trustgraph-flow:0.11.9 restart: on-failure:100 metering: command: @@ -153,7 +153,7 @@ services: reservations: cpus: '0.1' memory: 128M - image: docker.io/trustgraph/trustgraph-flow:0.11.8 + image: docker.io/trustgraph/trustgraph-flow:0.11.9 restart: on-failure:100 metering-rag: command: @@ -170,7 +170,7 @@ services: reservations: cpus: '0.1' memory: 128M - image: docker.io/trustgraph/trustgraph-flow:0.11.8 + image: docker.io/trustgraph/trustgraph-flow:0.11.9 restart: on-failure:100 neo4j: deploy: @@ -203,7 +203,7 @@ services: reservations: cpus: '0.1' memory: 128M - image: docker.io/trustgraph/trustgraph-flow:0.11.8 + image: docker.io/trustgraph/trustgraph-flow:0.11.9 restart: on-failure:100 prometheus: deploy: @@ -393,7 +393,7 @@ services: reservations: cpus: '0.1' memory: 128M - image: docker.io/trustgraph/trustgraph-flow:0.11.8 + image: docker.io/trustgraph/trustgraph-flow:0.11.9 restart: on-failure:100 prompt-rag: command: @@ -571,7 +571,7 @@ services: reservations: cpus: '0.1' memory: 128M - image: docker.io/trustgraph/trustgraph-flow:0.11.8 + image: docker.io/trustgraph/trustgraph-flow:0.11.9 restart: on-failure:100 pulsar: command: @@ -625,7 +625,7 @@ services: reservations: cpus: '0.1' memory: 128M - image: docker.io/trustgraph/trustgraph-flow:0.11.8 + image: docker.io/trustgraph/trustgraph-flow:0.11.9 restart: on-failure:100 query-graph-embeddings: command: @@ -642,7 +642,7 @@ services: reservations: cpus: '0.1' memory: 128M - image: docker.io/trustgraph/trustgraph-flow:0.11.8 + image: docker.io/trustgraph/trustgraph-flow:0.11.9 restart: on-failure:100 query-triples: command: @@ -659,7 +659,7 @@ services: reservations: cpus: '0.1' memory: 128M - image: docker.io/trustgraph/trustgraph-flow:0.11.8 + image: docker.io/trustgraph/trustgraph-flow:0.11.9 restart: on-failure:100 store-doc-embeddings: command: @@ -676,7 +676,7 @@ services: reservations: cpus: '0.1' memory: 128M - image: docker.io/trustgraph/trustgraph-flow:0.11.8 + image: docker.io/trustgraph/trustgraph-flow:0.11.9 restart: on-failure:100 store-graph-embeddings: command: @@ -693,7 +693,7 @@ services: reservations: cpus: '0.1' memory: 128M - image: docker.io/trustgraph/trustgraph-flow:0.11.8 + image: docker.io/trustgraph/trustgraph-flow:0.11.9 restart: on-failure:100 store-triples: command: @@ -710,7 +710,7 @@ services: reservations: cpus: '0.1' memory: 128M - image: docker.io/trustgraph/trustgraph-flow:0.11.8 + image: docker.io/trustgraph/trustgraph-flow:0.11.9 restart: on-failure:100 text-completion: command: @@ -737,7 +737,7 @@ services: reservations: cpus: '0.1' memory: 128M - image: docker.io/trustgraph/trustgraph-flow:0.11.8 + image: docker.io/trustgraph/trustgraph-flow:0.11.9 restart: on-failure:100 text-completion-rag: command: @@ -768,7 +768,7 @@ services: reservations: cpus: '0.1' memory: 128M - image: docker.io/trustgraph/trustgraph-flow:0.11.8 + image: docker.io/trustgraph/trustgraph-flow:0.11.9 restart: on-failure:100 vectorize: command: @@ -783,7 +783,7 @@ services: reservations: cpus: '0.5' memory: 512M - image: docker.io/trustgraph/trustgraph-flow:0.11.8 + image: docker.io/trustgraph/trustgraph-flow:0.11.9 restart: on-failure:100 volumes: grafana-storage: {} diff --git a/tg-launch-claude-cassandra.yaml b/tg-launch-claude-cassandra.yaml index 0148a1ae..94d184f8 100644 --- a/tg-launch-claude-cassandra.yaml +++ b/tg-launch-claude-cassandra.yaml @@ -33,7 +33,7 @@ services: reservations: cpus: '0.1' memory: 128M - image: docker.io/trustgraph/trustgraph-flow:0.11.8 + image: docker.io/trustgraph/trustgraph-flow:0.11.9 restart: on-failure:100 embeddings: command: @@ -50,7 +50,7 @@ services: reservations: cpus: '0.5' memory: 400M - image: docker.io/trustgraph/trustgraph-flow:0.11.8 + image: docker.io/trustgraph/trustgraph-flow:0.11.9 restart: on-failure:100 grafana: deploy: @@ -95,7 +95,7 @@ services: reservations: cpus: '0.1' memory: 128M - image: docker.io/trustgraph/trustgraph-flow:0.11.8 + image: docker.io/trustgraph/trustgraph-flow:0.11.9 restart: on-failure:100 init-pulsar: command: @@ -110,7 +110,7 @@ services: reservations: cpus: '0.1' memory: 128M - image: docker.io/trustgraph/trustgraph-flow:0.11.8 + image: docker.io/trustgraph/trustgraph-flow:0.11.9 restart: on-failure:100 kg-extract-definitions: command: @@ -125,7 +125,7 @@ services: reservations: cpus: '0.1' memory: 128M - image: docker.io/trustgraph/trustgraph-flow:0.11.8 + image: docker.io/trustgraph/trustgraph-flow:0.11.9 restart: on-failure:100 kg-extract-relationships: command: @@ -140,7 +140,7 @@ services: reservations: cpus: '0.1' memory: 128M - image: docker.io/trustgraph/trustgraph-flow:0.11.8 + image: docker.io/trustgraph/trustgraph-flow:0.11.9 restart: on-failure:100 kg-extract-topics: command: @@ -155,7 +155,7 @@ services: reservations: cpus: '0.1' memory: 128M - image: docker.io/trustgraph/trustgraph-flow:0.11.8 + image: docker.io/trustgraph/trustgraph-flow:0.11.9 restart: on-failure:100 metering: command: @@ -170,7 +170,7 @@ services: reservations: cpus: '0.1' memory: 128M - image: docker.io/trustgraph/trustgraph-flow:0.11.8 + image: docker.io/trustgraph/trustgraph-flow:0.11.9 restart: on-failure:100 metering-rag: command: @@ -187,7 +187,7 @@ services: reservations: cpus: '0.1' memory: 128M - image: docker.io/trustgraph/trustgraph-flow:0.11.8 + image: docker.io/trustgraph/trustgraph-flow:0.11.9 restart: on-failure:100 pdf-decoder: command: @@ -202,7 +202,7 @@ services: reservations: cpus: '0.1' memory: 128M - image: docker.io/trustgraph/trustgraph-flow:0.11.8 + image: docker.io/trustgraph/trustgraph-flow:0.11.9 restart: on-failure:100 prometheus: deploy: @@ -392,7 +392,7 @@ services: reservations: cpus: '0.1' memory: 128M - image: docker.io/trustgraph/trustgraph-flow:0.11.8 + image: docker.io/trustgraph/trustgraph-flow:0.11.9 restart: on-failure:100 prompt-rag: command: @@ -570,7 +570,7 @@ services: reservations: cpus: '0.1' memory: 128M - image: docker.io/trustgraph/trustgraph-flow:0.11.8 + image: docker.io/trustgraph/trustgraph-flow:0.11.9 restart: on-failure:100 pulsar: command: @@ -624,7 +624,7 @@ services: reservations: cpus: '0.1' memory: 128M - image: docker.io/trustgraph/trustgraph-flow:0.11.8 + image: docker.io/trustgraph/trustgraph-flow:0.11.9 restart: on-failure:100 query-graph-embeddings: command: @@ -641,7 +641,7 @@ services: reservations: cpus: '0.1' memory: 128M - image: docker.io/trustgraph/trustgraph-flow:0.11.8 + image: docker.io/trustgraph/trustgraph-flow:0.11.9 restart: on-failure:100 query-triples: command: @@ -658,7 +658,7 @@ services: reservations: cpus: '0.1' memory: 512M - image: docker.io/trustgraph/trustgraph-flow:0.11.8 + image: docker.io/trustgraph/trustgraph-flow:0.11.9 restart: on-failure:100 store-doc-embeddings: command: @@ -675,7 +675,7 @@ services: reservations: cpus: '0.1' memory: 128M - image: docker.io/trustgraph/trustgraph-flow:0.11.8 + image: docker.io/trustgraph/trustgraph-flow:0.11.9 restart: on-failure:100 store-graph-embeddings: command: @@ -692,7 +692,7 @@ services: reservations: cpus: '0.1' memory: 128M - image: docker.io/trustgraph/trustgraph-flow:0.11.8 + image: docker.io/trustgraph/trustgraph-flow:0.11.9 restart: on-failure:100 store-triples: command: @@ -709,7 +709,7 @@ services: reservations: cpus: '0.1' memory: 128M - image: docker.io/trustgraph/trustgraph-flow:0.11.8 + image: docker.io/trustgraph/trustgraph-flow:0.11.9 restart: on-failure:100 text-completion: command: @@ -730,7 +730,7 @@ services: reservations: cpus: '0.1' memory: 128M - image: docker.io/trustgraph/trustgraph-flow:0.11.8 + image: docker.io/trustgraph/trustgraph-flow:0.11.9 restart: on-failure:100 text-completion-rag: command: @@ -755,7 +755,7 @@ services: reservations: cpus: '0.1' memory: 128M - image: docker.io/trustgraph/trustgraph-flow:0.11.8 + image: docker.io/trustgraph/trustgraph-flow:0.11.9 restart: on-failure:100 vectorize: command: @@ -770,7 +770,7 @@ services: reservations: cpus: '0.5' memory: 512M - image: docker.io/trustgraph/trustgraph-flow:0.11.8 + image: docker.io/trustgraph/trustgraph-flow:0.11.9 restart: on-failure:100 volumes: cassandra: {} diff --git a/tg-launch-claude-neo4j.yaml b/tg-launch-claude-neo4j.yaml index 5dab1a0d..f100fb52 100644 --- a/tg-launch-claude-neo4j.yaml +++ b/tg-launch-claude-neo4j.yaml @@ -16,7 +16,7 @@ services: reservations: cpus: '0.1' memory: 128M - image: docker.io/trustgraph/trustgraph-flow:0.11.8 + image: docker.io/trustgraph/trustgraph-flow:0.11.9 restart: on-failure:100 embeddings: command: @@ -33,7 +33,7 @@ services: reservations: cpus: '0.5' memory: 400M - image: docker.io/trustgraph/trustgraph-flow:0.11.8 + image: docker.io/trustgraph/trustgraph-flow:0.11.9 restart: on-failure:100 grafana: deploy: @@ -78,7 +78,7 @@ services: reservations: cpus: '0.1' memory: 128M - image: docker.io/trustgraph/trustgraph-flow:0.11.8 + image: docker.io/trustgraph/trustgraph-flow:0.11.9 restart: on-failure:100 init-pulsar: command: @@ -93,7 +93,7 @@ services: reservations: cpus: '0.1' memory: 128M - image: docker.io/trustgraph/trustgraph-flow:0.11.8 + image: docker.io/trustgraph/trustgraph-flow:0.11.9 restart: on-failure:100 kg-extract-definitions: command: @@ -108,7 +108,7 @@ services: reservations: cpus: '0.1' memory: 128M - image: docker.io/trustgraph/trustgraph-flow:0.11.8 + image: docker.io/trustgraph/trustgraph-flow:0.11.9 restart: on-failure:100 kg-extract-relationships: command: @@ -123,7 +123,7 @@ services: reservations: cpus: '0.1' memory: 128M - image: docker.io/trustgraph/trustgraph-flow:0.11.8 + image: docker.io/trustgraph/trustgraph-flow:0.11.9 restart: on-failure:100 kg-extract-topics: command: @@ -138,7 +138,7 @@ services: reservations: cpus: '0.1' memory: 128M - image: docker.io/trustgraph/trustgraph-flow:0.11.8 + image: docker.io/trustgraph/trustgraph-flow:0.11.9 restart: on-failure:100 metering: command: @@ -153,7 +153,7 @@ services: reservations: cpus: '0.1' memory: 128M - image: docker.io/trustgraph/trustgraph-flow:0.11.8 + image: docker.io/trustgraph/trustgraph-flow:0.11.9 restart: on-failure:100 metering-rag: command: @@ -170,7 +170,7 @@ services: reservations: cpus: '0.1' memory: 128M - image: docker.io/trustgraph/trustgraph-flow:0.11.8 + image: docker.io/trustgraph/trustgraph-flow:0.11.9 restart: on-failure:100 neo4j: deploy: @@ -203,7 +203,7 @@ services: reservations: cpus: '0.1' memory: 128M - image: docker.io/trustgraph/trustgraph-flow:0.11.8 + image: docker.io/trustgraph/trustgraph-flow:0.11.9 restart: on-failure:100 prometheus: deploy: @@ -393,7 +393,7 @@ services: reservations: cpus: '0.1' memory: 128M - image: docker.io/trustgraph/trustgraph-flow:0.11.8 + image: docker.io/trustgraph/trustgraph-flow:0.11.9 restart: on-failure:100 prompt-rag: command: @@ -571,7 +571,7 @@ services: reservations: cpus: '0.1' memory: 128M - image: docker.io/trustgraph/trustgraph-flow:0.11.8 + image: docker.io/trustgraph/trustgraph-flow:0.11.9 restart: on-failure:100 pulsar: command: @@ -625,7 +625,7 @@ services: reservations: cpus: '0.1' memory: 128M - image: docker.io/trustgraph/trustgraph-flow:0.11.8 + image: docker.io/trustgraph/trustgraph-flow:0.11.9 restart: on-failure:100 query-graph-embeddings: command: @@ -642,7 +642,7 @@ services: reservations: cpus: '0.1' memory: 128M - image: docker.io/trustgraph/trustgraph-flow:0.11.8 + image: docker.io/trustgraph/trustgraph-flow:0.11.9 restart: on-failure:100 query-triples: command: @@ -659,7 +659,7 @@ services: reservations: cpus: '0.1' memory: 128M - image: docker.io/trustgraph/trustgraph-flow:0.11.8 + image: docker.io/trustgraph/trustgraph-flow:0.11.9 restart: on-failure:100 store-doc-embeddings: command: @@ -676,7 +676,7 @@ services: reservations: cpus: '0.1' memory: 128M - image: docker.io/trustgraph/trustgraph-flow:0.11.8 + image: docker.io/trustgraph/trustgraph-flow:0.11.9 restart: on-failure:100 store-graph-embeddings: command: @@ -693,7 +693,7 @@ services: reservations: cpus: '0.1' memory: 128M - image: docker.io/trustgraph/trustgraph-flow:0.11.8 + image: docker.io/trustgraph/trustgraph-flow:0.11.9 restart: on-failure:100 store-triples: command: @@ -710,7 +710,7 @@ services: reservations: cpus: '0.1' memory: 128M - image: docker.io/trustgraph/trustgraph-flow:0.11.8 + image: docker.io/trustgraph/trustgraph-flow:0.11.9 restart: on-failure:100 text-completion: command: @@ -731,7 +731,7 @@ services: reservations: cpus: '0.1' memory: 128M - image: docker.io/trustgraph/trustgraph-flow:0.11.8 + image: docker.io/trustgraph/trustgraph-flow:0.11.9 restart: on-failure:100 text-completion-rag: command: @@ -756,7 +756,7 @@ services: reservations: cpus: '0.1' memory: 128M - image: docker.io/trustgraph/trustgraph-flow:0.11.8 + image: docker.io/trustgraph/trustgraph-flow:0.11.9 restart: on-failure:100 vectorize: command: @@ -771,7 +771,7 @@ services: reservations: cpus: '0.5' memory: 512M - image: docker.io/trustgraph/trustgraph-flow:0.11.8 + image: docker.io/trustgraph/trustgraph-flow:0.11.9 restart: on-failure:100 volumes: grafana-storage: {} diff --git a/tg-launch-cohere-cassandra.yaml b/tg-launch-cohere-cassandra.yaml index 9985bb4b..b72567cd 100644 --- a/tg-launch-cohere-cassandra.yaml +++ b/tg-launch-cohere-cassandra.yaml @@ -33,7 +33,7 @@ services: reservations: cpus: '0.1' memory: 128M - image: docker.io/trustgraph/trustgraph-flow:0.11.8 + image: docker.io/trustgraph/trustgraph-flow:0.11.9 restart: on-failure:100 embeddings: command: @@ -50,7 +50,7 @@ services: reservations: cpus: '0.5' memory: 400M - image: docker.io/trustgraph/trustgraph-flow:0.11.8 + image: docker.io/trustgraph/trustgraph-flow:0.11.9 restart: on-failure:100 grafana: deploy: @@ -95,7 +95,7 @@ services: reservations: cpus: '0.1' memory: 128M - image: docker.io/trustgraph/trustgraph-flow:0.11.8 + image: docker.io/trustgraph/trustgraph-flow:0.11.9 restart: on-failure:100 init-pulsar: command: @@ -110,7 +110,7 @@ services: reservations: cpus: '0.1' memory: 128M - image: docker.io/trustgraph/trustgraph-flow:0.11.8 + image: docker.io/trustgraph/trustgraph-flow:0.11.9 restart: on-failure:100 kg-extract-definitions: command: @@ -125,7 +125,7 @@ services: reservations: cpus: '0.1' memory: 128M - image: docker.io/trustgraph/trustgraph-flow:0.11.8 + image: docker.io/trustgraph/trustgraph-flow:0.11.9 restart: on-failure:100 kg-extract-relationships: command: @@ -140,7 +140,7 @@ services: reservations: cpus: '0.1' memory: 128M - image: docker.io/trustgraph/trustgraph-flow:0.11.8 + image: docker.io/trustgraph/trustgraph-flow:0.11.9 restart: on-failure:100 kg-extract-topics: command: @@ -155,7 +155,7 @@ services: reservations: cpus: '0.1' memory: 128M - image: docker.io/trustgraph/trustgraph-flow:0.11.8 + image: docker.io/trustgraph/trustgraph-flow:0.11.9 restart: on-failure:100 metering: command: @@ -170,7 +170,7 @@ services: reservations: cpus: '0.1' memory: 128M - image: docker.io/trustgraph/trustgraph-flow:0.11.8 + image: docker.io/trustgraph/trustgraph-flow:0.11.9 restart: on-failure:100 metering-rag: command: @@ -187,7 +187,7 @@ services: reservations: cpus: '0.1' memory: 128M - image: docker.io/trustgraph/trustgraph-flow:0.11.8 + image: docker.io/trustgraph/trustgraph-flow:0.11.9 restart: on-failure:100 pdf-decoder: command: @@ -202,7 +202,7 @@ services: reservations: cpus: '0.1' memory: 128M - image: docker.io/trustgraph/trustgraph-flow:0.11.8 + image: docker.io/trustgraph/trustgraph-flow:0.11.9 restart: on-failure:100 prometheus: deploy: @@ -392,7 +392,7 @@ services: reservations: cpus: '0.1' memory: 128M - image: docker.io/trustgraph/trustgraph-flow:0.11.8 + image: docker.io/trustgraph/trustgraph-flow:0.11.9 restart: on-failure:100 prompt-rag: command: @@ -570,7 +570,7 @@ services: reservations: cpus: '0.1' memory: 128M - image: docker.io/trustgraph/trustgraph-flow:0.11.8 + image: docker.io/trustgraph/trustgraph-flow:0.11.9 restart: on-failure:100 pulsar: command: @@ -624,7 +624,7 @@ services: reservations: cpus: '0.1' memory: 128M - image: docker.io/trustgraph/trustgraph-flow:0.11.8 + image: docker.io/trustgraph/trustgraph-flow:0.11.9 restart: on-failure:100 query-graph-embeddings: command: @@ -641,7 +641,7 @@ services: reservations: cpus: '0.1' memory: 128M - image: docker.io/trustgraph/trustgraph-flow:0.11.8 + image: docker.io/trustgraph/trustgraph-flow:0.11.9 restart: on-failure:100 query-triples: command: @@ -658,7 +658,7 @@ services: reservations: cpus: '0.1' memory: 512M - image: docker.io/trustgraph/trustgraph-flow:0.11.8 + image: docker.io/trustgraph/trustgraph-flow:0.11.9 restart: on-failure:100 store-doc-embeddings: command: @@ -675,7 +675,7 @@ services: reservations: cpus: '0.1' memory: 128M - image: docker.io/trustgraph/trustgraph-flow:0.11.8 + image: docker.io/trustgraph/trustgraph-flow:0.11.9 restart: on-failure:100 store-graph-embeddings: command: @@ -692,7 +692,7 @@ services: reservations: cpus: '0.1' memory: 128M - image: docker.io/trustgraph/trustgraph-flow:0.11.8 + image: docker.io/trustgraph/trustgraph-flow:0.11.9 restart: on-failure:100 store-triples: command: @@ -709,7 +709,7 @@ services: reservations: cpus: '0.1' memory: 128M - image: docker.io/trustgraph/trustgraph-flow:0.11.8 + image: docker.io/trustgraph/trustgraph-flow:0.11.9 restart: on-failure:100 text-completion: command: @@ -728,7 +728,7 @@ services: reservations: cpus: '0.1' memory: 128M - image: docker.io/trustgraph/trustgraph-flow:0.11.8 + image: docker.io/trustgraph/trustgraph-flow:0.11.9 restart: on-failure:100 text-completion-rag: command: @@ -751,7 +751,7 @@ services: reservations: cpus: '0.1' memory: 128M - image: docker.io/trustgraph/trustgraph-flow:0.11.8 + image: docker.io/trustgraph/trustgraph-flow:0.11.9 restart: on-failure:100 vectorize: command: @@ -766,7 +766,7 @@ services: reservations: cpus: '0.5' memory: 512M - image: docker.io/trustgraph/trustgraph-flow:0.11.8 + image: docker.io/trustgraph/trustgraph-flow:0.11.9 restart: on-failure:100 volumes: cassandra: {} diff --git a/tg-launch-cohere-neo4j.yaml b/tg-launch-cohere-neo4j.yaml index 733e43f3..acc08817 100644 --- a/tg-launch-cohere-neo4j.yaml +++ b/tg-launch-cohere-neo4j.yaml @@ -16,7 +16,7 @@ services: reservations: cpus: '0.1' memory: 128M - image: docker.io/trustgraph/trustgraph-flow:0.11.8 + image: docker.io/trustgraph/trustgraph-flow:0.11.9 restart: on-failure:100 embeddings: command: @@ -33,7 +33,7 @@ services: reservations: cpus: '0.5' memory: 400M - image: docker.io/trustgraph/trustgraph-flow:0.11.8 + image: docker.io/trustgraph/trustgraph-flow:0.11.9 restart: on-failure:100 grafana: deploy: @@ -78,7 +78,7 @@ services: reservations: cpus: '0.1' memory: 128M - image: docker.io/trustgraph/trustgraph-flow:0.11.8 + image: docker.io/trustgraph/trustgraph-flow:0.11.9 restart: on-failure:100 init-pulsar: command: @@ -93,7 +93,7 @@ services: reservations: cpus: '0.1' memory: 128M - image: docker.io/trustgraph/trustgraph-flow:0.11.8 + image: docker.io/trustgraph/trustgraph-flow:0.11.9 restart: on-failure:100 kg-extract-definitions: command: @@ -108,7 +108,7 @@ services: reservations: cpus: '0.1' memory: 128M - image: docker.io/trustgraph/trustgraph-flow:0.11.8 + image: docker.io/trustgraph/trustgraph-flow:0.11.9 restart: on-failure:100 kg-extract-relationships: command: @@ -123,7 +123,7 @@ services: reservations: cpus: '0.1' memory: 128M - image: docker.io/trustgraph/trustgraph-flow:0.11.8 + image: docker.io/trustgraph/trustgraph-flow:0.11.9 restart: on-failure:100 kg-extract-topics: command: @@ -138,7 +138,7 @@ services: reservations: cpus: '0.1' memory: 128M - image: docker.io/trustgraph/trustgraph-flow:0.11.8 + image: docker.io/trustgraph/trustgraph-flow:0.11.9 restart: on-failure:100 metering: command: @@ -153,7 +153,7 @@ services: reservations: cpus: '0.1' memory: 128M - image: docker.io/trustgraph/trustgraph-flow:0.11.8 + image: docker.io/trustgraph/trustgraph-flow:0.11.9 restart: on-failure:100 metering-rag: command: @@ -170,7 +170,7 @@ services: reservations: cpus: '0.1' memory: 128M - image: docker.io/trustgraph/trustgraph-flow:0.11.8 + image: docker.io/trustgraph/trustgraph-flow:0.11.9 restart: on-failure:100 neo4j: deploy: @@ -203,7 +203,7 @@ services: reservations: cpus: '0.1' memory: 128M - image: docker.io/trustgraph/trustgraph-flow:0.11.8 + image: docker.io/trustgraph/trustgraph-flow:0.11.9 restart: on-failure:100 prometheus: deploy: @@ -393,7 +393,7 @@ services: reservations: cpus: '0.1' memory: 128M - image: docker.io/trustgraph/trustgraph-flow:0.11.8 + image: docker.io/trustgraph/trustgraph-flow:0.11.9 restart: on-failure:100 prompt-rag: command: @@ -571,7 +571,7 @@ services: reservations: cpus: '0.1' memory: 128M - image: docker.io/trustgraph/trustgraph-flow:0.11.8 + image: docker.io/trustgraph/trustgraph-flow:0.11.9 restart: on-failure:100 pulsar: command: @@ -625,7 +625,7 @@ services: reservations: cpus: '0.1' memory: 128M - image: docker.io/trustgraph/trustgraph-flow:0.11.8 + image: docker.io/trustgraph/trustgraph-flow:0.11.9 restart: on-failure:100 query-graph-embeddings: command: @@ -642,7 +642,7 @@ services: reservations: cpus: '0.1' memory: 128M - image: docker.io/trustgraph/trustgraph-flow:0.11.8 + image: docker.io/trustgraph/trustgraph-flow:0.11.9 restart: on-failure:100 query-triples: command: @@ -659,7 +659,7 @@ services: reservations: cpus: '0.1' memory: 128M - image: docker.io/trustgraph/trustgraph-flow:0.11.8 + image: docker.io/trustgraph/trustgraph-flow:0.11.9 restart: on-failure:100 store-doc-embeddings: command: @@ -676,7 +676,7 @@ services: reservations: cpus: '0.1' memory: 128M - image: docker.io/trustgraph/trustgraph-flow:0.11.8 + image: docker.io/trustgraph/trustgraph-flow:0.11.9 restart: on-failure:100 store-graph-embeddings: command: @@ -693,7 +693,7 @@ services: reservations: cpus: '0.1' memory: 128M - image: docker.io/trustgraph/trustgraph-flow:0.11.8 + image: docker.io/trustgraph/trustgraph-flow:0.11.9 restart: on-failure:100 store-triples: command: @@ -710,7 +710,7 @@ services: reservations: cpus: '0.1' memory: 128M - image: docker.io/trustgraph/trustgraph-flow:0.11.8 + image: docker.io/trustgraph/trustgraph-flow:0.11.9 restart: on-failure:100 text-completion: command: @@ -729,7 +729,7 @@ services: reservations: cpus: '0.1' memory: 128M - image: docker.io/trustgraph/trustgraph-flow:0.11.8 + image: docker.io/trustgraph/trustgraph-flow:0.11.9 restart: on-failure:100 text-completion-rag: command: @@ -752,7 +752,7 @@ services: reservations: cpus: '0.1' memory: 128M - image: docker.io/trustgraph/trustgraph-flow:0.11.8 + image: docker.io/trustgraph/trustgraph-flow:0.11.9 restart: on-failure:100 vectorize: command: @@ -767,7 +767,7 @@ services: reservations: cpus: '0.5' memory: 512M - image: docker.io/trustgraph/trustgraph-flow:0.11.8 + image: docker.io/trustgraph/trustgraph-flow:0.11.9 restart: on-failure:100 volumes: grafana-storage: {} diff --git a/tg-launch-llamafile-cassandra.yaml b/tg-launch-llamafile-cassandra.yaml index e1e41d00..6ef1a807 100644 --- a/tg-launch-llamafile-cassandra.yaml +++ b/tg-launch-llamafile-cassandra.yaml @@ -33,7 +33,7 @@ services: reservations: cpus: '0.1' memory: 128M - image: docker.io/trustgraph/trustgraph-flow:0.11.8 + image: docker.io/trustgraph/trustgraph-flow:0.11.9 restart: on-failure:100 embeddings: command: @@ -50,7 +50,7 @@ services: reservations: cpus: '0.5' memory: 400M - image: docker.io/trustgraph/trustgraph-flow:0.11.8 + image: docker.io/trustgraph/trustgraph-flow:0.11.9 restart: on-failure:100 grafana: deploy: @@ -95,7 +95,7 @@ services: reservations: cpus: '0.1' memory: 128M - image: docker.io/trustgraph/trustgraph-flow:0.11.8 + image: docker.io/trustgraph/trustgraph-flow:0.11.9 restart: on-failure:100 init-pulsar: command: @@ -110,7 +110,7 @@ services: reservations: cpus: '0.1' memory: 128M - image: docker.io/trustgraph/trustgraph-flow:0.11.8 + image: docker.io/trustgraph/trustgraph-flow:0.11.9 restart: on-failure:100 kg-extract-definitions: command: @@ -125,7 +125,7 @@ services: reservations: cpus: '0.1' memory: 128M - image: docker.io/trustgraph/trustgraph-flow:0.11.8 + image: docker.io/trustgraph/trustgraph-flow:0.11.9 restart: on-failure:100 kg-extract-relationships: command: @@ -140,7 +140,7 @@ services: reservations: cpus: '0.1' memory: 128M - image: docker.io/trustgraph/trustgraph-flow:0.11.8 + image: docker.io/trustgraph/trustgraph-flow:0.11.9 restart: on-failure:100 kg-extract-topics: command: @@ -155,7 +155,7 @@ services: reservations: cpus: '0.1' memory: 128M - image: docker.io/trustgraph/trustgraph-flow:0.11.8 + image: docker.io/trustgraph/trustgraph-flow:0.11.9 restart: on-failure:100 metering: command: @@ -170,7 +170,7 @@ services: reservations: cpus: '0.1' memory: 128M - image: docker.io/trustgraph/trustgraph-flow:0.11.8 + image: docker.io/trustgraph/trustgraph-flow:0.11.9 restart: on-failure:100 metering-rag: command: @@ -187,7 +187,7 @@ services: reservations: cpus: '0.1' memory: 128M - image: docker.io/trustgraph/trustgraph-flow:0.11.8 + image: docker.io/trustgraph/trustgraph-flow:0.11.9 restart: on-failure:100 pdf-decoder: command: @@ -202,7 +202,7 @@ services: reservations: cpus: '0.1' memory: 128M - image: docker.io/trustgraph/trustgraph-flow:0.11.8 + image: docker.io/trustgraph/trustgraph-flow:0.11.9 restart: on-failure:100 prometheus: deploy: @@ -237,7 +237,7 @@ services: reservations: cpus: '0.1' memory: 128M - image: docker.io/trustgraph/trustgraph-flow:0.11.8 + image: docker.io/trustgraph/trustgraph-flow:0.11.9 restart: on-failure:100 prompt-rag: command: @@ -260,7 +260,7 @@ services: reservations: cpus: '0.1' memory: 128M - image: docker.io/trustgraph/trustgraph-flow:0.11.8 + image: docker.io/trustgraph/trustgraph-flow:0.11.9 restart: on-failure:100 pulsar: command: @@ -314,7 +314,7 @@ services: reservations: cpus: '0.1' memory: 128M - image: docker.io/trustgraph/trustgraph-flow:0.11.8 + image: docker.io/trustgraph/trustgraph-flow:0.11.9 restart: on-failure:100 query-graph-embeddings: command: @@ -331,7 +331,7 @@ services: reservations: cpus: '0.1' memory: 128M - image: docker.io/trustgraph/trustgraph-flow:0.11.8 + image: docker.io/trustgraph/trustgraph-flow:0.11.9 restart: on-failure:100 query-triples: command: @@ -348,7 +348,7 @@ services: reservations: cpus: '0.1' memory: 512M - image: docker.io/trustgraph/trustgraph-flow:0.11.8 + image: docker.io/trustgraph/trustgraph-flow:0.11.9 restart: on-failure:100 store-doc-embeddings: command: @@ -365,7 +365,7 @@ services: reservations: cpus: '0.1' memory: 128M - image: docker.io/trustgraph/trustgraph-flow:0.11.8 + image: docker.io/trustgraph/trustgraph-flow:0.11.9 restart: on-failure:100 store-graph-embeddings: command: @@ -382,7 +382,7 @@ services: reservations: cpus: '0.1' memory: 128M - image: docker.io/trustgraph/trustgraph-flow:0.11.8 + image: docker.io/trustgraph/trustgraph-flow:0.11.9 restart: on-failure:100 store-triples: command: @@ -399,7 +399,7 @@ services: reservations: cpus: '0.1' memory: 128M - image: docker.io/trustgraph/trustgraph-flow:0.11.8 + image: docker.io/trustgraph/trustgraph-flow:0.11.9 restart: on-failure:100 text-completion: command: @@ -418,7 +418,7 @@ services: reservations: cpus: '0.1' memory: 128M - image: docker.io/trustgraph/trustgraph-flow:0.11.8 + image: docker.io/trustgraph/trustgraph-flow:0.11.9 restart: on-failure:100 text-completion-rag: command: @@ -441,7 +441,7 @@ services: reservations: cpus: '0.1' memory: 128M - image: docker.io/trustgraph/trustgraph-flow:0.11.8 + image: docker.io/trustgraph/trustgraph-flow:0.11.9 restart: on-failure:100 vectorize: command: @@ -456,7 +456,7 @@ services: reservations: cpus: '0.5' memory: 512M - image: docker.io/trustgraph/trustgraph-flow:0.11.8 + image: docker.io/trustgraph/trustgraph-flow:0.11.9 restart: on-failure:100 volumes: cassandra: {} diff --git a/tg-launch-llamafile-neo4j.yaml b/tg-launch-llamafile-neo4j.yaml index 2237dae9..98ced647 100644 --- a/tg-launch-llamafile-neo4j.yaml +++ b/tg-launch-llamafile-neo4j.yaml @@ -16,7 +16,7 @@ services: reservations: cpus: '0.1' memory: 128M - image: docker.io/trustgraph/trustgraph-flow:0.11.8 + image: docker.io/trustgraph/trustgraph-flow:0.11.9 restart: on-failure:100 embeddings: command: @@ -33,7 +33,7 @@ services: reservations: cpus: '0.5' memory: 400M - image: docker.io/trustgraph/trustgraph-flow:0.11.8 + image: docker.io/trustgraph/trustgraph-flow:0.11.9 restart: on-failure:100 grafana: deploy: @@ -78,7 +78,7 @@ services: reservations: cpus: '0.1' memory: 128M - image: docker.io/trustgraph/trustgraph-flow:0.11.8 + image: docker.io/trustgraph/trustgraph-flow:0.11.9 restart: on-failure:100 init-pulsar: command: @@ -93,7 +93,7 @@ services: reservations: cpus: '0.1' memory: 128M - image: docker.io/trustgraph/trustgraph-flow:0.11.8 + image: docker.io/trustgraph/trustgraph-flow:0.11.9 restart: on-failure:100 kg-extract-definitions: command: @@ -108,7 +108,7 @@ services: reservations: cpus: '0.1' memory: 128M - image: docker.io/trustgraph/trustgraph-flow:0.11.8 + image: docker.io/trustgraph/trustgraph-flow:0.11.9 restart: on-failure:100 kg-extract-relationships: command: @@ -123,7 +123,7 @@ services: reservations: cpus: '0.1' memory: 128M - image: docker.io/trustgraph/trustgraph-flow:0.11.8 + image: docker.io/trustgraph/trustgraph-flow:0.11.9 restart: on-failure:100 kg-extract-topics: command: @@ -138,7 +138,7 @@ services: reservations: cpus: '0.1' memory: 128M - image: docker.io/trustgraph/trustgraph-flow:0.11.8 + image: docker.io/trustgraph/trustgraph-flow:0.11.9 restart: on-failure:100 metering: command: @@ -153,7 +153,7 @@ services: reservations: cpus: '0.1' memory: 128M - image: docker.io/trustgraph/trustgraph-flow:0.11.8 + image: docker.io/trustgraph/trustgraph-flow:0.11.9 restart: on-failure:100 metering-rag: command: @@ -170,7 +170,7 @@ services: reservations: cpus: '0.1' memory: 128M - image: docker.io/trustgraph/trustgraph-flow:0.11.8 + image: docker.io/trustgraph/trustgraph-flow:0.11.9 restart: on-failure:100 neo4j: deploy: @@ -203,7 +203,7 @@ services: reservations: cpus: '0.1' memory: 128M - image: docker.io/trustgraph/trustgraph-flow:0.11.8 + image: docker.io/trustgraph/trustgraph-flow:0.11.9 restart: on-failure:100 prometheus: deploy: @@ -238,7 +238,7 @@ services: reservations: cpus: '0.1' memory: 128M - image: docker.io/trustgraph/trustgraph-flow:0.11.8 + image: docker.io/trustgraph/trustgraph-flow:0.11.9 restart: on-failure:100 prompt-rag: command: @@ -261,7 +261,7 @@ services: reservations: cpus: '0.1' memory: 128M - image: docker.io/trustgraph/trustgraph-flow:0.11.8 + image: docker.io/trustgraph/trustgraph-flow:0.11.9 restart: on-failure:100 pulsar: command: @@ -315,7 +315,7 @@ services: reservations: cpus: '0.1' memory: 128M - image: docker.io/trustgraph/trustgraph-flow:0.11.8 + image: docker.io/trustgraph/trustgraph-flow:0.11.9 restart: on-failure:100 query-graph-embeddings: command: @@ -332,7 +332,7 @@ services: reservations: cpus: '0.1' memory: 128M - image: docker.io/trustgraph/trustgraph-flow:0.11.8 + image: docker.io/trustgraph/trustgraph-flow:0.11.9 restart: on-failure:100 query-triples: command: @@ -349,7 +349,7 @@ services: reservations: cpus: '0.1' memory: 128M - image: docker.io/trustgraph/trustgraph-flow:0.11.8 + image: docker.io/trustgraph/trustgraph-flow:0.11.9 restart: on-failure:100 store-doc-embeddings: command: @@ -366,7 +366,7 @@ services: reservations: cpus: '0.1' memory: 128M - image: docker.io/trustgraph/trustgraph-flow:0.11.8 + image: docker.io/trustgraph/trustgraph-flow:0.11.9 restart: on-failure:100 store-graph-embeddings: command: @@ -383,7 +383,7 @@ services: reservations: cpus: '0.1' memory: 128M - image: docker.io/trustgraph/trustgraph-flow:0.11.8 + image: docker.io/trustgraph/trustgraph-flow:0.11.9 restart: on-failure:100 store-triples: command: @@ -400,7 +400,7 @@ services: reservations: cpus: '0.1' memory: 128M - image: docker.io/trustgraph/trustgraph-flow:0.11.8 + image: docker.io/trustgraph/trustgraph-flow:0.11.9 restart: on-failure:100 text-completion: command: @@ -419,7 +419,7 @@ services: reservations: cpus: '0.1' memory: 128M - image: docker.io/trustgraph/trustgraph-flow:0.11.8 + image: docker.io/trustgraph/trustgraph-flow:0.11.9 restart: on-failure:100 text-completion-rag: command: @@ -442,7 +442,7 @@ services: reservations: cpus: '0.1' memory: 128M - image: docker.io/trustgraph/trustgraph-flow:0.11.8 + image: docker.io/trustgraph/trustgraph-flow:0.11.9 restart: on-failure:100 vectorize: command: @@ -457,7 +457,7 @@ services: reservations: cpus: '0.5' memory: 512M - image: docker.io/trustgraph/trustgraph-flow:0.11.8 + image: docker.io/trustgraph/trustgraph-flow:0.11.9 restart: on-failure:100 volumes: grafana-storage: {} diff --git a/tg-launch-ollama-cassandra.yaml b/tg-launch-ollama-cassandra.yaml index 2f584f92..dcb509fa 100644 --- a/tg-launch-ollama-cassandra.yaml +++ b/tg-launch-ollama-cassandra.yaml @@ -33,7 +33,7 @@ services: reservations: cpus: '0.1' memory: 128M - image: docker.io/trustgraph/trustgraph-flow:0.11.8 + image: docker.io/trustgraph/trustgraph-flow:0.11.9 restart: on-failure:100 embeddings: command: @@ -50,7 +50,7 @@ services: reservations: cpus: '0.5' memory: 400M - image: docker.io/trustgraph/trustgraph-flow:0.11.8 + image: docker.io/trustgraph/trustgraph-flow:0.11.9 restart: on-failure:100 grafana: deploy: @@ -95,7 +95,7 @@ services: reservations: cpus: '0.1' memory: 128M - image: docker.io/trustgraph/trustgraph-flow:0.11.8 + image: docker.io/trustgraph/trustgraph-flow:0.11.9 restart: on-failure:100 init-pulsar: command: @@ -110,7 +110,7 @@ services: reservations: cpus: '0.1' memory: 128M - image: docker.io/trustgraph/trustgraph-flow:0.11.8 + image: docker.io/trustgraph/trustgraph-flow:0.11.9 restart: on-failure:100 kg-extract-definitions: command: @@ -125,7 +125,7 @@ services: reservations: cpus: '0.1' memory: 128M - image: docker.io/trustgraph/trustgraph-flow:0.11.8 + image: docker.io/trustgraph/trustgraph-flow:0.11.9 restart: on-failure:100 kg-extract-relationships: command: @@ -140,7 +140,7 @@ services: reservations: cpus: '0.1' memory: 128M - image: docker.io/trustgraph/trustgraph-flow:0.11.8 + image: docker.io/trustgraph/trustgraph-flow:0.11.9 restart: on-failure:100 kg-extract-topics: command: @@ -155,7 +155,7 @@ services: reservations: cpus: '0.1' memory: 128M - image: docker.io/trustgraph/trustgraph-flow:0.11.8 + image: docker.io/trustgraph/trustgraph-flow:0.11.9 restart: on-failure:100 metering: command: @@ -170,7 +170,7 @@ services: reservations: cpus: '0.1' memory: 128M - image: docker.io/trustgraph/trustgraph-flow:0.11.8 + image: docker.io/trustgraph/trustgraph-flow:0.11.9 restart: on-failure:100 metering-rag: command: @@ -187,7 +187,7 @@ services: reservations: cpus: '0.1' memory: 128M - image: docker.io/trustgraph/trustgraph-flow:0.11.8 + image: docker.io/trustgraph/trustgraph-flow:0.11.9 restart: on-failure:100 pdf-decoder: command: @@ -202,7 +202,7 @@ services: reservations: cpus: '0.1' memory: 128M - image: docker.io/trustgraph/trustgraph-flow:0.11.8 + image: docker.io/trustgraph/trustgraph-flow:0.11.9 restart: on-failure:100 prometheus: deploy: @@ -237,7 +237,7 @@ services: reservations: cpus: '0.1' memory: 128M - image: docker.io/trustgraph/trustgraph-flow:0.11.8 + image: docker.io/trustgraph/trustgraph-flow:0.11.9 restart: on-failure:100 prompt-rag: command: @@ -260,7 +260,7 @@ services: reservations: cpus: '0.1' memory: 128M - image: docker.io/trustgraph/trustgraph-flow:0.11.8 + image: docker.io/trustgraph/trustgraph-flow:0.11.9 restart: on-failure:100 pulsar: command: @@ -314,7 +314,7 @@ services: reservations: cpus: '0.1' memory: 128M - image: docker.io/trustgraph/trustgraph-flow:0.11.8 + image: docker.io/trustgraph/trustgraph-flow:0.11.9 restart: on-failure:100 query-graph-embeddings: command: @@ -331,7 +331,7 @@ services: reservations: cpus: '0.1' memory: 128M - image: docker.io/trustgraph/trustgraph-flow:0.11.8 + image: docker.io/trustgraph/trustgraph-flow:0.11.9 restart: on-failure:100 query-triples: command: @@ -348,7 +348,7 @@ services: reservations: cpus: '0.1' memory: 512M - image: docker.io/trustgraph/trustgraph-flow:0.11.8 + image: docker.io/trustgraph/trustgraph-flow:0.11.9 restart: on-failure:100 store-doc-embeddings: command: @@ -365,7 +365,7 @@ services: reservations: cpus: '0.1' memory: 128M - image: docker.io/trustgraph/trustgraph-flow:0.11.8 + image: docker.io/trustgraph/trustgraph-flow:0.11.9 restart: on-failure:100 store-graph-embeddings: command: @@ -382,7 +382,7 @@ services: reservations: cpus: '0.1' memory: 128M - image: docker.io/trustgraph/trustgraph-flow:0.11.8 + image: docker.io/trustgraph/trustgraph-flow:0.11.9 restart: on-failure:100 store-triples: command: @@ -399,7 +399,7 @@ services: reservations: cpus: '0.1' memory: 128M - image: docker.io/trustgraph/trustgraph-flow:0.11.8 + image: docker.io/trustgraph/trustgraph-flow:0.11.9 restart: on-failure:100 text-completion: command: @@ -418,7 +418,7 @@ services: reservations: cpus: '0.1' memory: 128M - image: docker.io/trustgraph/trustgraph-flow:0.11.8 + image: docker.io/trustgraph/trustgraph-flow:0.11.9 restart: on-failure:100 text-completion-rag: command: @@ -441,7 +441,7 @@ services: reservations: cpus: '0.1' memory: 128M - image: docker.io/trustgraph/trustgraph-flow:0.11.8 + image: docker.io/trustgraph/trustgraph-flow:0.11.9 restart: on-failure:100 vectorize: command: @@ -456,7 +456,7 @@ services: reservations: cpus: '0.5' memory: 512M - image: docker.io/trustgraph/trustgraph-flow:0.11.8 + image: docker.io/trustgraph/trustgraph-flow:0.11.9 restart: on-failure:100 volumes: cassandra: {} diff --git a/tg-launch-ollama-neo4j.yaml b/tg-launch-ollama-neo4j.yaml index 1120c21b..aed9bee4 100644 --- a/tg-launch-ollama-neo4j.yaml +++ b/tg-launch-ollama-neo4j.yaml @@ -16,7 +16,7 @@ services: reservations: cpus: '0.1' memory: 128M - image: docker.io/trustgraph/trustgraph-flow:0.11.8 + image: docker.io/trustgraph/trustgraph-flow:0.11.9 restart: on-failure:100 embeddings: command: @@ -33,7 +33,7 @@ services: reservations: cpus: '0.5' memory: 400M - image: docker.io/trustgraph/trustgraph-flow:0.11.8 + image: docker.io/trustgraph/trustgraph-flow:0.11.9 restart: on-failure:100 grafana: deploy: @@ -78,7 +78,7 @@ services: reservations: cpus: '0.1' memory: 128M - image: docker.io/trustgraph/trustgraph-flow:0.11.8 + image: docker.io/trustgraph/trustgraph-flow:0.11.9 restart: on-failure:100 init-pulsar: command: @@ -93,7 +93,7 @@ services: reservations: cpus: '0.1' memory: 128M - image: docker.io/trustgraph/trustgraph-flow:0.11.8 + image: docker.io/trustgraph/trustgraph-flow:0.11.9 restart: on-failure:100 kg-extract-definitions: command: @@ -108,7 +108,7 @@ services: reservations: cpus: '0.1' memory: 128M - image: docker.io/trustgraph/trustgraph-flow:0.11.8 + image: docker.io/trustgraph/trustgraph-flow:0.11.9 restart: on-failure:100 kg-extract-relationships: command: @@ -123,7 +123,7 @@ services: reservations: cpus: '0.1' memory: 128M - image: docker.io/trustgraph/trustgraph-flow:0.11.8 + image: docker.io/trustgraph/trustgraph-flow:0.11.9 restart: on-failure:100 kg-extract-topics: command: @@ -138,7 +138,7 @@ services: reservations: cpus: '0.1' memory: 128M - image: docker.io/trustgraph/trustgraph-flow:0.11.8 + image: docker.io/trustgraph/trustgraph-flow:0.11.9 restart: on-failure:100 metering: command: @@ -153,7 +153,7 @@ services: reservations: cpus: '0.1' memory: 128M - image: docker.io/trustgraph/trustgraph-flow:0.11.8 + image: docker.io/trustgraph/trustgraph-flow:0.11.9 restart: on-failure:100 metering-rag: command: @@ -170,7 +170,7 @@ services: reservations: cpus: '0.1' memory: 128M - image: docker.io/trustgraph/trustgraph-flow:0.11.8 + image: docker.io/trustgraph/trustgraph-flow:0.11.9 restart: on-failure:100 neo4j: deploy: @@ -203,7 +203,7 @@ services: reservations: cpus: '0.1' memory: 128M - image: docker.io/trustgraph/trustgraph-flow:0.11.8 + image: docker.io/trustgraph/trustgraph-flow:0.11.9 restart: on-failure:100 prometheus: deploy: @@ -238,7 +238,7 @@ services: reservations: cpus: '0.1' memory: 128M - image: docker.io/trustgraph/trustgraph-flow:0.11.8 + image: docker.io/trustgraph/trustgraph-flow:0.11.9 restart: on-failure:100 prompt-rag: command: @@ -261,7 +261,7 @@ services: reservations: cpus: '0.1' memory: 128M - image: docker.io/trustgraph/trustgraph-flow:0.11.8 + image: docker.io/trustgraph/trustgraph-flow:0.11.9 restart: on-failure:100 pulsar: command: @@ -315,7 +315,7 @@ services: reservations: cpus: '0.1' memory: 128M - image: docker.io/trustgraph/trustgraph-flow:0.11.8 + image: docker.io/trustgraph/trustgraph-flow:0.11.9 restart: on-failure:100 query-graph-embeddings: command: @@ -332,7 +332,7 @@ services: reservations: cpus: '0.1' memory: 128M - image: docker.io/trustgraph/trustgraph-flow:0.11.8 + image: docker.io/trustgraph/trustgraph-flow:0.11.9 restart: on-failure:100 query-triples: command: @@ -349,7 +349,7 @@ services: reservations: cpus: '0.1' memory: 128M - image: docker.io/trustgraph/trustgraph-flow:0.11.8 + image: docker.io/trustgraph/trustgraph-flow:0.11.9 restart: on-failure:100 store-doc-embeddings: command: @@ -366,7 +366,7 @@ services: reservations: cpus: '0.1' memory: 128M - image: docker.io/trustgraph/trustgraph-flow:0.11.8 + image: docker.io/trustgraph/trustgraph-flow:0.11.9 restart: on-failure:100 store-graph-embeddings: command: @@ -383,7 +383,7 @@ services: reservations: cpus: '0.1' memory: 128M - image: docker.io/trustgraph/trustgraph-flow:0.11.8 + image: docker.io/trustgraph/trustgraph-flow:0.11.9 restart: on-failure:100 store-triples: command: @@ -400,7 +400,7 @@ services: reservations: cpus: '0.1' memory: 128M - image: docker.io/trustgraph/trustgraph-flow:0.11.8 + image: docker.io/trustgraph/trustgraph-flow:0.11.9 restart: on-failure:100 text-completion: command: @@ -419,7 +419,7 @@ services: reservations: cpus: '0.1' memory: 128M - image: docker.io/trustgraph/trustgraph-flow:0.11.8 + image: docker.io/trustgraph/trustgraph-flow:0.11.9 restart: on-failure:100 text-completion-rag: command: @@ -442,7 +442,7 @@ services: reservations: cpus: '0.1' memory: 128M - image: docker.io/trustgraph/trustgraph-flow:0.11.8 + image: docker.io/trustgraph/trustgraph-flow:0.11.9 restart: on-failure:100 vectorize: command: @@ -457,7 +457,7 @@ services: reservations: cpus: '0.5' memory: 512M - image: docker.io/trustgraph/trustgraph-flow:0.11.8 + image: docker.io/trustgraph/trustgraph-flow:0.11.9 restart: on-failure:100 volumes: grafana-storage: {} diff --git a/tg-launch-openai-cassandra.yaml b/tg-launch-openai-cassandra.yaml index 520f4f9e..27af012b 100644 --- a/tg-launch-openai-cassandra.yaml +++ b/tg-launch-openai-cassandra.yaml @@ -33,7 +33,7 @@ services: reservations: cpus: '0.1' memory: 128M - image: docker.io/trustgraph/trustgraph-flow:0.11.8 + image: docker.io/trustgraph/trustgraph-flow:0.11.9 restart: on-failure:100 embeddings: command: @@ -50,7 +50,7 @@ services: reservations: cpus: '0.5' memory: 400M - image: docker.io/trustgraph/trustgraph-flow:0.11.8 + image: docker.io/trustgraph/trustgraph-flow:0.11.9 restart: on-failure:100 grafana: deploy: @@ -95,7 +95,7 @@ services: reservations: cpus: '0.1' memory: 128M - image: docker.io/trustgraph/trustgraph-flow:0.11.8 + image: docker.io/trustgraph/trustgraph-flow:0.11.9 restart: on-failure:100 init-pulsar: command: @@ -110,7 +110,7 @@ services: reservations: cpus: '0.1' memory: 128M - image: docker.io/trustgraph/trustgraph-flow:0.11.8 + image: docker.io/trustgraph/trustgraph-flow:0.11.9 restart: on-failure:100 kg-extract-definitions: command: @@ -125,7 +125,7 @@ services: reservations: cpus: '0.1' memory: 128M - image: docker.io/trustgraph/trustgraph-flow:0.11.8 + image: docker.io/trustgraph/trustgraph-flow:0.11.9 restart: on-failure:100 kg-extract-relationships: command: @@ -140,7 +140,7 @@ services: reservations: cpus: '0.1' memory: 128M - image: docker.io/trustgraph/trustgraph-flow:0.11.8 + image: docker.io/trustgraph/trustgraph-flow:0.11.9 restart: on-failure:100 kg-extract-topics: command: @@ -155,7 +155,7 @@ services: reservations: cpus: '0.1' memory: 128M - image: docker.io/trustgraph/trustgraph-flow:0.11.8 + image: docker.io/trustgraph/trustgraph-flow:0.11.9 restart: on-failure:100 metering: command: @@ -170,7 +170,7 @@ services: reservations: cpus: '0.1' memory: 128M - image: docker.io/trustgraph/trustgraph-flow:0.11.8 + image: docker.io/trustgraph/trustgraph-flow:0.11.9 restart: on-failure:100 metering-rag: command: @@ -187,7 +187,7 @@ services: reservations: cpus: '0.1' memory: 128M - image: docker.io/trustgraph/trustgraph-flow:0.11.8 + image: docker.io/trustgraph/trustgraph-flow:0.11.9 restart: on-failure:100 pdf-decoder: command: @@ -202,7 +202,7 @@ services: reservations: cpus: '0.1' memory: 128M - image: docker.io/trustgraph/trustgraph-flow:0.11.8 + image: docker.io/trustgraph/trustgraph-flow:0.11.9 restart: on-failure:100 prometheus: deploy: @@ -392,7 +392,7 @@ services: reservations: cpus: '0.1' memory: 128M - image: docker.io/trustgraph/trustgraph-flow:0.11.8 + image: docker.io/trustgraph/trustgraph-flow:0.11.9 restart: on-failure:100 prompt-rag: command: @@ -570,7 +570,7 @@ services: reservations: cpus: '0.1' memory: 128M - image: docker.io/trustgraph/trustgraph-flow:0.11.8 + image: docker.io/trustgraph/trustgraph-flow:0.11.9 restart: on-failure:100 pulsar: command: @@ -624,7 +624,7 @@ services: reservations: cpus: '0.1' memory: 128M - image: docker.io/trustgraph/trustgraph-flow:0.11.8 + image: docker.io/trustgraph/trustgraph-flow:0.11.9 restart: on-failure:100 query-graph-embeddings: command: @@ -641,7 +641,7 @@ services: reservations: cpus: '0.1' memory: 128M - image: docker.io/trustgraph/trustgraph-flow:0.11.8 + image: docker.io/trustgraph/trustgraph-flow:0.11.9 restart: on-failure:100 query-triples: command: @@ -658,7 +658,7 @@ services: reservations: cpus: '0.1' memory: 512M - image: docker.io/trustgraph/trustgraph-flow:0.11.8 + image: docker.io/trustgraph/trustgraph-flow:0.11.9 restart: on-failure:100 store-doc-embeddings: command: @@ -675,7 +675,7 @@ services: reservations: cpus: '0.1' memory: 128M - image: docker.io/trustgraph/trustgraph-flow:0.11.8 + image: docker.io/trustgraph/trustgraph-flow:0.11.9 restart: on-failure:100 store-graph-embeddings: command: @@ -692,7 +692,7 @@ services: reservations: cpus: '0.1' memory: 128M - image: docker.io/trustgraph/trustgraph-flow:0.11.8 + image: docker.io/trustgraph/trustgraph-flow:0.11.9 restart: on-failure:100 store-triples: command: @@ -709,7 +709,7 @@ services: reservations: cpus: '0.1' memory: 128M - image: docker.io/trustgraph/trustgraph-flow:0.11.8 + image: docker.io/trustgraph/trustgraph-flow:0.11.9 restart: on-failure:100 text-completion: command: @@ -732,7 +732,7 @@ services: reservations: cpus: '0.1' memory: 128M - image: docker.io/trustgraph/trustgraph-flow:0.11.8 + image: docker.io/trustgraph/trustgraph-flow:0.11.9 restart: on-failure:100 text-completion-rag: command: @@ -759,7 +759,7 @@ services: reservations: cpus: '0.1' memory: 128M - image: docker.io/trustgraph/trustgraph-flow:0.11.8 + image: docker.io/trustgraph/trustgraph-flow:0.11.9 restart: on-failure:100 vectorize: command: @@ -774,7 +774,7 @@ services: reservations: cpus: '0.5' memory: 512M - image: docker.io/trustgraph/trustgraph-flow:0.11.8 + image: docker.io/trustgraph/trustgraph-flow:0.11.9 restart: on-failure:100 volumes: cassandra: {} diff --git a/tg-launch-openai-neo4j.yaml b/tg-launch-openai-neo4j.yaml index 1ef6c7eb..8a5b4995 100644 --- a/tg-launch-openai-neo4j.yaml +++ b/tg-launch-openai-neo4j.yaml @@ -16,7 +16,7 @@ services: reservations: cpus: '0.1' memory: 128M - image: docker.io/trustgraph/trustgraph-flow:0.11.8 + image: docker.io/trustgraph/trustgraph-flow:0.11.9 restart: on-failure:100 embeddings: command: @@ -33,7 +33,7 @@ services: reservations: cpus: '0.5' memory: 400M - image: docker.io/trustgraph/trustgraph-flow:0.11.8 + image: docker.io/trustgraph/trustgraph-flow:0.11.9 restart: on-failure:100 grafana: deploy: @@ -78,7 +78,7 @@ services: reservations: cpus: '0.1' memory: 128M - image: docker.io/trustgraph/trustgraph-flow:0.11.8 + image: docker.io/trustgraph/trustgraph-flow:0.11.9 restart: on-failure:100 init-pulsar: command: @@ -93,7 +93,7 @@ services: reservations: cpus: '0.1' memory: 128M - image: docker.io/trustgraph/trustgraph-flow:0.11.8 + image: docker.io/trustgraph/trustgraph-flow:0.11.9 restart: on-failure:100 kg-extract-definitions: command: @@ -108,7 +108,7 @@ services: reservations: cpus: '0.1' memory: 128M - image: docker.io/trustgraph/trustgraph-flow:0.11.8 + image: docker.io/trustgraph/trustgraph-flow:0.11.9 restart: on-failure:100 kg-extract-relationships: command: @@ -123,7 +123,7 @@ services: reservations: cpus: '0.1' memory: 128M - image: docker.io/trustgraph/trustgraph-flow:0.11.8 + image: docker.io/trustgraph/trustgraph-flow:0.11.9 restart: on-failure:100 kg-extract-topics: command: @@ -138,7 +138,7 @@ services: reservations: cpus: '0.1' memory: 128M - image: docker.io/trustgraph/trustgraph-flow:0.11.8 + image: docker.io/trustgraph/trustgraph-flow:0.11.9 restart: on-failure:100 metering: command: @@ -153,7 +153,7 @@ services: reservations: cpus: '0.1' memory: 128M - image: docker.io/trustgraph/trustgraph-flow:0.11.8 + image: docker.io/trustgraph/trustgraph-flow:0.11.9 restart: on-failure:100 metering-rag: command: @@ -170,7 +170,7 @@ services: reservations: cpus: '0.1' memory: 128M - image: docker.io/trustgraph/trustgraph-flow:0.11.8 + image: docker.io/trustgraph/trustgraph-flow:0.11.9 restart: on-failure:100 neo4j: deploy: @@ -203,7 +203,7 @@ services: reservations: cpus: '0.1' memory: 128M - image: docker.io/trustgraph/trustgraph-flow:0.11.8 + image: docker.io/trustgraph/trustgraph-flow:0.11.9 restart: on-failure:100 prometheus: deploy: @@ -393,7 +393,7 @@ services: reservations: cpus: '0.1' memory: 128M - image: docker.io/trustgraph/trustgraph-flow:0.11.8 + image: docker.io/trustgraph/trustgraph-flow:0.11.9 restart: on-failure:100 prompt-rag: command: @@ -571,7 +571,7 @@ services: reservations: cpus: '0.1' memory: 128M - image: docker.io/trustgraph/trustgraph-flow:0.11.8 + image: docker.io/trustgraph/trustgraph-flow:0.11.9 restart: on-failure:100 pulsar: command: @@ -625,7 +625,7 @@ services: reservations: cpus: '0.1' memory: 128M - image: docker.io/trustgraph/trustgraph-flow:0.11.8 + image: docker.io/trustgraph/trustgraph-flow:0.11.9 restart: on-failure:100 query-graph-embeddings: command: @@ -642,7 +642,7 @@ services: reservations: cpus: '0.1' memory: 128M - image: docker.io/trustgraph/trustgraph-flow:0.11.8 + image: docker.io/trustgraph/trustgraph-flow:0.11.9 restart: on-failure:100 query-triples: command: @@ -659,7 +659,7 @@ services: reservations: cpus: '0.1' memory: 128M - image: docker.io/trustgraph/trustgraph-flow:0.11.8 + image: docker.io/trustgraph/trustgraph-flow:0.11.9 restart: on-failure:100 store-doc-embeddings: command: @@ -676,7 +676,7 @@ services: reservations: cpus: '0.1' memory: 128M - image: docker.io/trustgraph/trustgraph-flow:0.11.8 + image: docker.io/trustgraph/trustgraph-flow:0.11.9 restart: on-failure:100 store-graph-embeddings: command: @@ -693,7 +693,7 @@ services: reservations: cpus: '0.1' memory: 128M - image: docker.io/trustgraph/trustgraph-flow:0.11.8 + image: docker.io/trustgraph/trustgraph-flow:0.11.9 restart: on-failure:100 store-triples: command: @@ -710,7 +710,7 @@ services: reservations: cpus: '0.1' memory: 128M - image: docker.io/trustgraph/trustgraph-flow:0.11.8 + image: docker.io/trustgraph/trustgraph-flow:0.11.9 restart: on-failure:100 text-completion: command: @@ -733,7 +733,7 @@ services: reservations: cpus: '0.1' memory: 128M - image: docker.io/trustgraph/trustgraph-flow:0.11.8 + image: docker.io/trustgraph/trustgraph-flow:0.11.9 restart: on-failure:100 text-completion-rag: command: @@ -760,7 +760,7 @@ services: reservations: cpus: '0.1' memory: 128M - image: docker.io/trustgraph/trustgraph-flow:0.11.8 + image: docker.io/trustgraph/trustgraph-flow:0.11.9 restart: on-failure:100 vectorize: command: @@ -775,7 +775,7 @@ services: reservations: cpus: '0.5' memory: 512M - image: docker.io/trustgraph/trustgraph-flow:0.11.8 + image: docker.io/trustgraph/trustgraph-flow:0.11.9 restart: on-failure:100 volumes: grafana-storage: {} diff --git a/tg-launch-vertexai-cassandra.yaml b/tg-launch-vertexai-cassandra.yaml index 14af9e1a..b1bfaa22 100644 --- a/tg-launch-vertexai-cassandra.yaml +++ b/tg-launch-vertexai-cassandra.yaml @@ -33,7 +33,7 @@ services: reservations: cpus: '0.1' memory: 128M - image: docker.io/trustgraph/trustgraph-flow:0.11.8 + image: docker.io/trustgraph/trustgraph-flow:0.11.9 restart: on-failure:100 embeddings: command: @@ -50,7 +50,7 @@ services: reservations: cpus: '0.5' memory: 400M - image: docker.io/trustgraph/trustgraph-flow:0.11.8 + image: docker.io/trustgraph/trustgraph-flow:0.11.9 restart: on-failure:100 grafana: deploy: @@ -95,7 +95,7 @@ services: reservations: cpus: '0.1' memory: 128M - image: docker.io/trustgraph/trustgraph-flow:0.11.8 + image: docker.io/trustgraph/trustgraph-flow:0.11.9 restart: on-failure:100 init-pulsar: command: @@ -110,7 +110,7 @@ services: reservations: cpus: '0.1' memory: 128M - image: docker.io/trustgraph/trustgraph-flow:0.11.8 + image: docker.io/trustgraph/trustgraph-flow:0.11.9 restart: on-failure:100 kg-extract-definitions: command: @@ -125,7 +125,7 @@ services: reservations: cpus: '0.1' memory: 128M - image: docker.io/trustgraph/trustgraph-flow:0.11.8 + image: docker.io/trustgraph/trustgraph-flow:0.11.9 restart: on-failure:100 kg-extract-relationships: command: @@ -140,7 +140,7 @@ services: reservations: cpus: '0.1' memory: 128M - image: docker.io/trustgraph/trustgraph-flow:0.11.8 + image: docker.io/trustgraph/trustgraph-flow:0.11.9 restart: on-failure:100 kg-extract-topics: command: @@ -155,7 +155,7 @@ services: reservations: cpus: '0.1' memory: 128M - image: docker.io/trustgraph/trustgraph-flow:0.11.8 + image: docker.io/trustgraph/trustgraph-flow:0.11.9 restart: on-failure:100 metering: command: @@ -170,7 +170,7 @@ services: reservations: cpus: '0.1' memory: 128M - image: docker.io/trustgraph/trustgraph-flow:0.11.8 + image: docker.io/trustgraph/trustgraph-flow:0.11.9 restart: on-failure:100 metering-rag: command: @@ -187,7 +187,7 @@ services: reservations: cpus: '0.1' memory: 128M - image: docker.io/trustgraph/trustgraph-flow:0.11.8 + image: docker.io/trustgraph/trustgraph-flow:0.11.9 restart: on-failure:100 pdf-decoder: command: @@ -202,7 +202,7 @@ services: reservations: cpus: '0.1' memory: 128M - image: docker.io/trustgraph/trustgraph-flow:0.11.8 + image: docker.io/trustgraph/trustgraph-flow:0.11.9 restart: on-failure:100 prometheus: deploy: @@ -392,7 +392,7 @@ services: reservations: cpus: '0.1' memory: 128M - image: docker.io/trustgraph/trustgraph-flow:0.11.8 + image: docker.io/trustgraph/trustgraph-flow:0.11.9 restart: on-failure:100 prompt-rag: command: @@ -570,7 +570,7 @@ services: reservations: cpus: '0.1' memory: 128M - image: docker.io/trustgraph/trustgraph-flow:0.11.8 + image: docker.io/trustgraph/trustgraph-flow:0.11.9 restart: on-failure:100 pulsar: command: @@ -624,7 +624,7 @@ services: reservations: cpus: '0.1' memory: 128M - image: docker.io/trustgraph/trustgraph-flow:0.11.8 + image: docker.io/trustgraph/trustgraph-flow:0.11.9 restart: on-failure:100 query-graph-embeddings: command: @@ -641,7 +641,7 @@ services: reservations: cpus: '0.1' memory: 128M - image: docker.io/trustgraph/trustgraph-flow:0.11.8 + image: docker.io/trustgraph/trustgraph-flow:0.11.9 restart: on-failure:100 query-triples: command: @@ -658,7 +658,7 @@ services: reservations: cpus: '0.1' memory: 512M - image: docker.io/trustgraph/trustgraph-flow:0.11.8 + image: docker.io/trustgraph/trustgraph-flow:0.11.9 restart: on-failure:100 store-doc-embeddings: command: @@ -675,7 +675,7 @@ services: reservations: cpus: '0.1' memory: 128M - image: docker.io/trustgraph/trustgraph-flow:0.11.8 + image: docker.io/trustgraph/trustgraph-flow:0.11.9 restart: on-failure:100 store-graph-embeddings: command: @@ -692,7 +692,7 @@ services: reservations: cpus: '0.1' memory: 128M - image: docker.io/trustgraph/trustgraph-flow:0.11.8 + image: docker.io/trustgraph/trustgraph-flow:0.11.9 restart: on-failure:100 store-triples: command: @@ -709,7 +709,7 @@ services: reservations: cpus: '0.1' memory: 128M - image: docker.io/trustgraph/trustgraph-flow:0.11.8 + image: docker.io/trustgraph/trustgraph-flow:0.11.9 restart: on-failure:100 text-completion: command: @@ -734,7 +734,7 @@ services: reservations: cpus: '0.1' memory: 256M - image: docker.io/trustgraph/trustgraph-flow:0.11.8 + image: docker.io/trustgraph/trustgraph-flow:0.11.9 restart: on-failure:100 volumes: - ./vertexai:/vertexai @@ -765,7 +765,7 @@ services: reservations: cpus: '0.1' memory: 256M - image: docker.io/trustgraph/trustgraph-flow:0.11.8 + image: docker.io/trustgraph/trustgraph-flow:0.11.9 restart: on-failure:100 volumes: - ./vertexai:/vertexai @@ -782,7 +782,7 @@ services: reservations: cpus: '0.5' memory: 512M - image: docker.io/trustgraph/trustgraph-flow:0.11.8 + image: docker.io/trustgraph/trustgraph-flow:0.11.9 restart: on-failure:100 volumes: cassandra: {} diff --git a/tg-launch-vertexai-neo4j.yaml b/tg-launch-vertexai-neo4j.yaml index 87a9a1aa..94c2afa0 100644 --- a/tg-launch-vertexai-neo4j.yaml +++ b/tg-launch-vertexai-neo4j.yaml @@ -16,7 +16,7 @@ services: reservations: cpus: '0.1' memory: 128M - image: docker.io/trustgraph/trustgraph-flow:0.11.8 + image: docker.io/trustgraph/trustgraph-flow:0.11.9 restart: on-failure:100 embeddings: command: @@ -33,7 +33,7 @@ services: reservations: cpus: '0.5' memory: 400M - image: docker.io/trustgraph/trustgraph-flow:0.11.8 + image: docker.io/trustgraph/trustgraph-flow:0.11.9 restart: on-failure:100 grafana: deploy: @@ -78,7 +78,7 @@ services: reservations: cpus: '0.1' memory: 128M - image: docker.io/trustgraph/trustgraph-flow:0.11.8 + image: docker.io/trustgraph/trustgraph-flow:0.11.9 restart: on-failure:100 init-pulsar: command: @@ -93,7 +93,7 @@ services: reservations: cpus: '0.1' memory: 128M - image: docker.io/trustgraph/trustgraph-flow:0.11.8 + image: docker.io/trustgraph/trustgraph-flow:0.11.9 restart: on-failure:100 kg-extract-definitions: command: @@ -108,7 +108,7 @@ services: reservations: cpus: '0.1' memory: 128M - image: docker.io/trustgraph/trustgraph-flow:0.11.8 + image: docker.io/trustgraph/trustgraph-flow:0.11.9 restart: on-failure:100 kg-extract-relationships: command: @@ -123,7 +123,7 @@ services: reservations: cpus: '0.1' memory: 128M - image: docker.io/trustgraph/trustgraph-flow:0.11.8 + image: docker.io/trustgraph/trustgraph-flow:0.11.9 restart: on-failure:100 kg-extract-topics: command: @@ -138,7 +138,7 @@ services: reservations: cpus: '0.1' memory: 128M - image: docker.io/trustgraph/trustgraph-flow:0.11.8 + image: docker.io/trustgraph/trustgraph-flow:0.11.9 restart: on-failure:100 metering: command: @@ -153,7 +153,7 @@ services: reservations: cpus: '0.1' memory: 128M - image: docker.io/trustgraph/trustgraph-flow:0.11.8 + image: docker.io/trustgraph/trustgraph-flow:0.11.9 restart: on-failure:100 metering-rag: command: @@ -170,7 +170,7 @@ services: reservations: cpus: '0.1' memory: 128M - image: docker.io/trustgraph/trustgraph-flow:0.11.8 + image: docker.io/trustgraph/trustgraph-flow:0.11.9 restart: on-failure:100 neo4j: deploy: @@ -203,7 +203,7 @@ services: reservations: cpus: '0.1' memory: 128M - image: docker.io/trustgraph/trustgraph-flow:0.11.8 + image: docker.io/trustgraph/trustgraph-flow:0.11.9 restart: on-failure:100 prometheus: deploy: @@ -393,7 +393,7 @@ services: reservations: cpus: '0.1' memory: 128M - image: docker.io/trustgraph/trustgraph-flow:0.11.8 + image: docker.io/trustgraph/trustgraph-flow:0.11.9 restart: on-failure:100 prompt-rag: command: @@ -571,7 +571,7 @@ services: reservations: cpus: '0.1' memory: 128M - image: docker.io/trustgraph/trustgraph-flow:0.11.8 + image: docker.io/trustgraph/trustgraph-flow:0.11.9 restart: on-failure:100 pulsar: command: @@ -625,7 +625,7 @@ services: reservations: cpus: '0.1' memory: 128M - image: docker.io/trustgraph/trustgraph-flow:0.11.8 + image: docker.io/trustgraph/trustgraph-flow:0.11.9 restart: on-failure:100 query-graph-embeddings: command: @@ -642,7 +642,7 @@ services: reservations: cpus: '0.1' memory: 128M - image: docker.io/trustgraph/trustgraph-flow:0.11.8 + image: docker.io/trustgraph/trustgraph-flow:0.11.9 restart: on-failure:100 query-triples: command: @@ -659,7 +659,7 @@ services: reservations: cpus: '0.1' memory: 128M - image: docker.io/trustgraph/trustgraph-flow:0.11.8 + image: docker.io/trustgraph/trustgraph-flow:0.11.9 restart: on-failure:100 store-doc-embeddings: command: @@ -676,7 +676,7 @@ services: reservations: cpus: '0.1' memory: 128M - image: docker.io/trustgraph/trustgraph-flow:0.11.8 + image: docker.io/trustgraph/trustgraph-flow:0.11.9 restart: on-failure:100 store-graph-embeddings: command: @@ -693,7 +693,7 @@ services: reservations: cpus: '0.1' memory: 128M - image: docker.io/trustgraph/trustgraph-flow:0.11.8 + image: docker.io/trustgraph/trustgraph-flow:0.11.9 restart: on-failure:100 store-triples: command: @@ -710,7 +710,7 @@ services: reservations: cpus: '0.1' memory: 128M - image: docker.io/trustgraph/trustgraph-flow:0.11.8 + image: docker.io/trustgraph/trustgraph-flow:0.11.9 restart: on-failure:100 text-completion: command: @@ -735,7 +735,7 @@ services: reservations: cpus: '0.1' memory: 256M - image: docker.io/trustgraph/trustgraph-flow:0.11.8 + image: docker.io/trustgraph/trustgraph-flow:0.11.9 restart: on-failure:100 volumes: - ./vertexai:/vertexai @@ -766,7 +766,7 @@ services: reservations: cpus: '0.1' memory: 256M - image: docker.io/trustgraph/trustgraph-flow:0.11.8 + image: docker.io/trustgraph/trustgraph-flow:0.11.9 restart: on-failure:100 volumes: - ./vertexai:/vertexai @@ -783,7 +783,7 @@ services: reservations: cpus: '0.5' memory: 512M - image: docker.io/trustgraph/trustgraph-flow:0.11.8 + image: docker.io/trustgraph/trustgraph-flow:0.11.9 restart: on-failure:100 volumes: grafana-storage: {} diff --git a/tg-storage-cassandra.yaml b/tg-storage-cassandra.yaml index 39d85405..98fc0a42 100644 --- a/tg-storage-cassandra.yaml +++ b/tg-storage-cassandra.yaml @@ -49,7 +49,7 @@ services: reservations: cpus: '0.1' memory: 128M - image: docker.io/trustgraph/trustgraph-flow:0.11.8 + image: docker.io/trustgraph/trustgraph-flow:0.11.9 restart: on-failure:100 prometheus: deploy: @@ -119,7 +119,7 @@ services: reservations: cpus: '0.1' memory: 128M - image: docker.io/trustgraph/trustgraph-flow:0.11.8 + image: docker.io/trustgraph/trustgraph-flow:0.11.9 restart: on-failure:100 query-graph-embeddings: command: @@ -136,7 +136,7 @@ services: reservations: cpus: '0.1' memory: 128M - image: docker.io/trustgraph/trustgraph-flow:0.11.8 + image: docker.io/trustgraph/trustgraph-flow:0.11.9 restart: on-failure:100 query-triples: command: @@ -153,7 +153,7 @@ services: reservations: cpus: '0.1' memory: 512M - image: docker.io/trustgraph/trustgraph-flow:0.11.8 + image: docker.io/trustgraph/trustgraph-flow:0.11.9 restart: on-failure:100 store-doc-embeddings: command: @@ -170,7 +170,7 @@ services: reservations: cpus: '0.1' memory: 128M - image: docker.io/trustgraph/trustgraph-flow:0.11.8 + image: docker.io/trustgraph/trustgraph-flow:0.11.9 restart: on-failure:100 store-graph-embeddings: command: @@ -187,7 +187,7 @@ services: reservations: cpus: '0.1' memory: 128M - image: docker.io/trustgraph/trustgraph-flow:0.11.8 + image: docker.io/trustgraph/trustgraph-flow:0.11.9 restart: on-failure:100 store-triples: command: @@ -204,7 +204,7 @@ services: reservations: cpus: '0.1' memory: 128M - image: docker.io/trustgraph/trustgraph-flow:0.11.8 + image: docker.io/trustgraph/trustgraph-flow:0.11.9 restart: on-failure:100 volumes: cassandra: {} diff --git a/tg-storage-neo4j.yaml b/tg-storage-neo4j.yaml index 36880bbf..e0c7b339 100644 --- a/tg-storage-neo4j.yaml +++ b/tg-storage-neo4j.yaml @@ -32,7 +32,7 @@ services: reservations: cpus: '0.1' memory: 128M - image: docker.io/trustgraph/trustgraph-flow:0.11.8 + image: docker.io/trustgraph/trustgraph-flow:0.11.9 restart: on-failure:100 neo4j: deploy: @@ -120,7 +120,7 @@ services: reservations: cpus: '0.1' memory: 128M - image: docker.io/trustgraph/trustgraph-flow:0.11.8 + image: docker.io/trustgraph/trustgraph-flow:0.11.9 restart: on-failure:100 query-graph-embeddings: command: @@ -137,7 +137,7 @@ services: reservations: cpus: '0.1' memory: 128M - image: docker.io/trustgraph/trustgraph-flow:0.11.8 + image: docker.io/trustgraph/trustgraph-flow:0.11.9 restart: on-failure:100 query-triples: command: @@ -154,7 +154,7 @@ services: reservations: cpus: '0.1' memory: 128M - image: docker.io/trustgraph/trustgraph-flow:0.11.8 + image: docker.io/trustgraph/trustgraph-flow:0.11.9 restart: on-failure:100 store-doc-embeddings: command: @@ -171,7 +171,7 @@ services: reservations: cpus: '0.1' memory: 128M - image: docker.io/trustgraph/trustgraph-flow:0.11.8 + image: docker.io/trustgraph/trustgraph-flow:0.11.9 restart: on-failure:100 store-graph-embeddings: command: @@ -188,7 +188,7 @@ services: reservations: cpus: '0.1' memory: 128M - image: docker.io/trustgraph/trustgraph-flow:0.11.8 + image: docker.io/trustgraph/trustgraph-flow:0.11.9 restart: on-failure:100 store-triples: command: @@ -205,7 +205,7 @@ services: reservations: cpus: '0.1' memory: 128M - image: docker.io/trustgraph/trustgraph-flow:0.11.8 + image: docker.io/trustgraph/trustgraph-flow:0.11.9 restart: on-failure:100 volumes: grafana-storage: {} diff --git a/trustgraph-base/setup.py b/trustgraph-base/setup.py new file mode 100644 index 00000000..60d8b6c8 --- /dev/null +++ b/trustgraph-base/setup.py @@ -0,0 +1,42 @@ +import setuptools +import os +import importlib + +with open("README.md", "r") as fh: + long_description = fh.read() + +# Load a version number module +spec = importlib.util.spec_from_file_location( + 'version', 'trustgraph/base_version.py' +) +version_module = importlib.util.module_from_spec(spec) +spec.loader.exec_module(version_module) + +version = version_module.__version__ + +setuptools.setup( + name="trustgraph-base", + version=version, + author="trustgraph.ai", + author_email="security@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/trustgraph", + packages=setuptools.find_namespace_packages( + where='./', + ), + classifiers=[ + "Programming Language :: Python :: 3", + "License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)", + "Operating System :: OS Independent", + ], + python_requires='>=3.8', + download_url = "https://github.com/trustgraph-ai/trustgraph/archive/refs/tags/v" + version + ".tar.gz", + install_requires=[ + "pulsar-client", + "prometheus-client", + ], + scripts=[ + ] +) diff --git a/trustgraph-core/trustgraph/base/__init__.py b/trustgraph-base/trustgraph/base/__init__.py similarity index 100% rename from trustgraph-core/trustgraph/base/__init__.py rename to trustgraph-base/trustgraph/base/__init__.py diff --git a/trustgraph-core/trustgraph/base/base_processor.py b/trustgraph-base/trustgraph/base/base_processor.py similarity index 100% rename from trustgraph-core/trustgraph/base/base_processor.py rename to trustgraph-base/trustgraph/base/base_processor.py diff --git a/trustgraph-core/trustgraph/base/consumer.py b/trustgraph-base/trustgraph/base/consumer.py similarity index 100% rename from trustgraph-core/trustgraph/base/consumer.py rename to trustgraph-base/trustgraph/base/consumer.py diff --git a/trustgraph-core/trustgraph/base/consumer_producer.py b/trustgraph-base/trustgraph/base/consumer_producer.py similarity index 100% rename from trustgraph-core/trustgraph/base/consumer_producer.py rename to trustgraph-base/trustgraph/base/consumer_producer.py diff --git a/trustgraph-core/trustgraph/base/producer.py b/trustgraph-base/trustgraph/base/producer.py similarity index 100% rename from trustgraph-core/trustgraph/base/producer.py rename to trustgraph-base/trustgraph/base/producer.py diff --git a/trustgraph-core/trustgraph/__init__.py b/trustgraph-base/trustgraph/clients/__init__.py similarity index 100% rename from trustgraph-core/trustgraph/__init__.py rename to trustgraph-base/trustgraph/clients/__init__.py diff --git a/trustgraph-core/trustgraph/clients/base.py b/trustgraph-base/trustgraph/clients/base.py similarity index 100% rename from trustgraph-core/trustgraph/clients/base.py rename to trustgraph-base/trustgraph/clients/base.py diff --git a/trustgraph-core/trustgraph/clients/document_embeddings_client.py b/trustgraph-base/trustgraph/clients/document_embeddings_client.py similarity index 100% rename from trustgraph-core/trustgraph/clients/document_embeddings_client.py rename to trustgraph-base/trustgraph/clients/document_embeddings_client.py diff --git a/trustgraph-core/trustgraph/clients/document_rag_client.py b/trustgraph-base/trustgraph/clients/document_rag_client.py similarity index 100% rename from trustgraph-core/trustgraph/clients/document_rag_client.py rename to trustgraph-base/trustgraph/clients/document_rag_client.py diff --git a/trustgraph-core/trustgraph/clients/embeddings_client.py b/trustgraph-base/trustgraph/clients/embeddings_client.py similarity index 100% rename from trustgraph-core/trustgraph/clients/embeddings_client.py rename to trustgraph-base/trustgraph/clients/embeddings_client.py diff --git a/trustgraph-core/trustgraph/clients/graph_embeddings_client.py b/trustgraph-base/trustgraph/clients/graph_embeddings_client.py similarity index 100% rename from trustgraph-core/trustgraph/clients/graph_embeddings_client.py rename to trustgraph-base/trustgraph/clients/graph_embeddings_client.py diff --git a/trustgraph-core/trustgraph/clients/graph_rag_client.py b/trustgraph-base/trustgraph/clients/graph_rag_client.py similarity index 100% rename from trustgraph-core/trustgraph/clients/graph_rag_client.py rename to trustgraph-base/trustgraph/clients/graph_rag_client.py diff --git a/trustgraph-core/trustgraph/clients/llm_client.py b/trustgraph-base/trustgraph/clients/llm_client.py similarity index 100% rename from trustgraph-core/trustgraph/clients/llm_client.py rename to trustgraph-base/trustgraph/clients/llm_client.py diff --git a/trustgraph-core/trustgraph/clients/prompt_client.py b/trustgraph-base/trustgraph/clients/prompt_client.py similarity index 100% rename from trustgraph-core/trustgraph/clients/prompt_client.py rename to trustgraph-base/trustgraph/clients/prompt_client.py diff --git a/trustgraph-core/trustgraph/clients/triples_query_client.py b/trustgraph-base/trustgraph/clients/triples_query_client.py similarity index 100% rename from trustgraph-core/trustgraph/clients/triples_query_client.py rename to trustgraph-base/trustgraph/clients/triples_query_client.py diff --git a/trustgraph-core/trustgraph/exceptions.py b/trustgraph-base/trustgraph/exceptions.py similarity index 100% rename from trustgraph-core/trustgraph/exceptions.py rename to trustgraph-base/trustgraph/exceptions.py diff --git a/trustgraph-core/trustgraph/log_level.py b/trustgraph-base/trustgraph/log_level.py similarity index 100% rename from trustgraph-core/trustgraph/log_level.py rename to trustgraph-base/trustgraph/log_level.py diff --git a/trustgraph-core/trustgraph/chunking/__init__.py b/trustgraph-base/trustgraph/objects/__init__.py similarity index 100% rename from trustgraph-core/trustgraph/chunking/__init__.py rename to trustgraph-base/trustgraph/objects/__init__.py diff --git a/trustgraph-core/trustgraph/objects/field.py b/trustgraph-base/trustgraph/objects/field.py similarity index 100% rename from trustgraph-core/trustgraph/objects/field.py rename to trustgraph-base/trustgraph/objects/field.py diff --git a/trustgraph-core/trustgraph/objects/object.py b/trustgraph-base/trustgraph/objects/object.py similarity index 100% rename from trustgraph-core/trustgraph/objects/object.py rename to trustgraph-base/trustgraph/objects/object.py diff --git a/trustgraph-core/trustgraph/rdf.py b/trustgraph-base/trustgraph/rdf.py similarity index 100% rename from trustgraph-core/trustgraph/rdf.py rename to trustgraph-base/trustgraph/rdf.py diff --git a/trustgraph-core/trustgraph/schema/__init__.py b/trustgraph-base/trustgraph/schema/__init__.py similarity index 100% rename from trustgraph-core/trustgraph/schema/__init__.py rename to trustgraph-base/trustgraph/schema/__init__.py diff --git a/trustgraph-core/trustgraph/schema/documents.py b/trustgraph-base/trustgraph/schema/documents.py similarity index 100% rename from trustgraph-core/trustgraph/schema/documents.py rename to trustgraph-base/trustgraph/schema/documents.py diff --git a/trustgraph-core/trustgraph/schema/graph.py b/trustgraph-base/trustgraph/schema/graph.py similarity index 100% rename from trustgraph-core/trustgraph/schema/graph.py rename to trustgraph-base/trustgraph/schema/graph.py diff --git a/trustgraph-core/trustgraph/schema/models.py b/trustgraph-base/trustgraph/schema/models.py similarity index 100% rename from trustgraph-core/trustgraph/schema/models.py rename to trustgraph-base/trustgraph/schema/models.py diff --git a/trustgraph-core/trustgraph/schema/object.py b/trustgraph-base/trustgraph/schema/object.py similarity index 100% rename from trustgraph-core/trustgraph/schema/object.py rename to trustgraph-base/trustgraph/schema/object.py diff --git a/trustgraph-core/trustgraph/schema/prompt.py b/trustgraph-base/trustgraph/schema/prompt.py similarity index 100% rename from trustgraph-core/trustgraph/schema/prompt.py rename to trustgraph-base/trustgraph/schema/prompt.py diff --git a/trustgraph-core/trustgraph/schema/retrieval.py b/trustgraph-base/trustgraph/schema/retrieval.py similarity index 100% rename from trustgraph-core/trustgraph/schema/retrieval.py rename to trustgraph-base/trustgraph/schema/retrieval.py diff --git a/trustgraph-core/trustgraph/schema/topic.py b/trustgraph-base/trustgraph/schema/topic.py similarity index 100% rename from trustgraph-core/trustgraph/schema/topic.py rename to trustgraph-base/trustgraph/schema/topic.py diff --git a/trustgraph-core/trustgraph/schema/types.py b/trustgraph-base/trustgraph/schema/types.py similarity index 100% rename from trustgraph-core/trustgraph/schema/types.py rename to trustgraph-base/trustgraph/schema/types.py diff --git a/trustgraph-core/scripts/text-completion-bedrock b/trustgraph-bedrock/scripts/text-completion-bedrock similarity index 100% rename from trustgraph-core/scripts/text-completion-bedrock rename to trustgraph-bedrock/scripts/text-completion-bedrock diff --git a/trustgraph-bedrock/setup.py b/trustgraph-bedrock/setup.py new file mode 100644 index 00000000..317f2bdf --- /dev/null +++ b/trustgraph-bedrock/setup.py @@ -0,0 +1,45 @@ +import setuptools +import os +import importlib + +with open("README.md", "r") as fh: + long_description = fh.read() + +# Load a version number module +spec = importlib.util.spec_from_file_location( + 'version', 'trustgraph/bedrock_version.py' +) +version_module = importlib.util.module_from_spec(spec) +spec.loader.exec_module(version_module) + +version = version_module.__version__ + +setuptools.setup( + name="trustgraph-bedrock", + version=version, + author="trustgraph.ai", + author_email="security@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/trustgraph", + packages=setuptools.find_namespace_packages( + where='./', + ), + classifiers=[ + "Programming Language :: Python :: 3", + "License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)", + "Operating System :: OS Independent", + ], + python_requires='>=3.8', + download_url = "https://github.com/trustgraph-ai/trustgraph/archive/refs/tags/v" + version + ".tar.gz", + install_requires=[ + "trustgraph-base", + "pulsar-client", + "prometheus-client", + "boto3", + ], + scripts=[ + "scripts/text-completion-bedrock", + ] +) diff --git a/trustgraph-core/trustgraph/model/text_completion/azure/__init__.py b/trustgraph-bedrock/trustgraph/model/text_completion/bedrock/__init__.py similarity index 100% rename from trustgraph-core/trustgraph/model/text_completion/azure/__init__.py rename to trustgraph-bedrock/trustgraph/model/text_completion/bedrock/__init__.py diff --git a/trustgraph-core/trustgraph/model/text_completion/azure/__main__.py b/trustgraph-bedrock/trustgraph/model/text_completion/bedrock/__main__.py similarity index 100% rename from trustgraph-core/trustgraph/model/text_completion/azure/__main__.py rename to trustgraph-bedrock/trustgraph/model/text_completion/bedrock/__main__.py diff --git a/trustgraph-core/trustgraph/model/text_completion/bedrock/llm.py b/trustgraph-bedrock/trustgraph/model/text_completion/bedrock/llm.py similarity index 100% rename from trustgraph-core/trustgraph/model/text_completion/bedrock/llm.py rename to trustgraph-bedrock/trustgraph/model/text_completion/bedrock/llm.py diff --git a/trustgraph-embeddings-hf/setup.py b/trustgraph-embeddings-hf/setup.py index d473e2d5..f3c2869b 100644 --- a/trustgraph-embeddings-hf/setup.py +++ b/trustgraph-embeddings-hf/setup.py @@ -25,7 +25,6 @@ setuptools.setup( url="https://github.com/trustgraph-ai/trustgraph", packages=setuptools.find_namespace_packages( where='./', -# include=['trustgraph.core'] ), classifiers=[ "Programming Language :: Python :: 3", @@ -35,7 +34,8 @@ setuptools.setup( python_requires='>=3.8', download_url = "https://github.com/trustgraph-ai/trustgraph/archive/refs/tags/v" + version + ".tar.gz", install_requires=[ - "trustgraph-core", + "trustgraph-base", + "trustgraph-flow", "torch", "urllib3", "transformers", diff --git a/trustgraph-core/scripts/chunker-recursive b/trustgraph-flow/scripts/chunker-recursive similarity index 100% rename from trustgraph-core/scripts/chunker-recursive rename to trustgraph-flow/scripts/chunker-recursive diff --git a/trustgraph-core/scripts/chunker-token b/trustgraph-flow/scripts/chunker-token similarity index 100% rename from trustgraph-core/scripts/chunker-token rename to trustgraph-flow/scripts/chunker-token diff --git a/trustgraph-core/scripts/de-query-milvus b/trustgraph-flow/scripts/de-query-milvus similarity index 100% rename from trustgraph-core/scripts/de-query-milvus rename to trustgraph-flow/scripts/de-query-milvus diff --git a/trustgraph-core/scripts/de-query-qdrant b/trustgraph-flow/scripts/de-query-qdrant similarity index 100% rename from trustgraph-core/scripts/de-query-qdrant rename to trustgraph-flow/scripts/de-query-qdrant diff --git a/trustgraph-core/scripts/de-write-milvus b/trustgraph-flow/scripts/de-write-milvus similarity index 100% rename from trustgraph-core/scripts/de-write-milvus rename to trustgraph-flow/scripts/de-write-milvus diff --git a/trustgraph-core/scripts/de-write-qdrant b/trustgraph-flow/scripts/de-write-qdrant similarity index 100% rename from trustgraph-core/scripts/de-write-qdrant rename to trustgraph-flow/scripts/de-write-qdrant diff --git a/trustgraph-core/scripts/document-rag b/trustgraph-flow/scripts/document-rag similarity index 100% rename from trustgraph-core/scripts/document-rag rename to trustgraph-flow/scripts/document-rag diff --git a/trustgraph-core/scripts/embeddings-ollama b/trustgraph-flow/scripts/embeddings-ollama similarity index 100% rename from trustgraph-core/scripts/embeddings-ollama rename to trustgraph-flow/scripts/embeddings-ollama diff --git a/trustgraph-core/scripts/embeddings-vectorize b/trustgraph-flow/scripts/embeddings-vectorize similarity index 100% rename from trustgraph-core/scripts/embeddings-vectorize rename to trustgraph-flow/scripts/embeddings-vectorize diff --git a/trustgraph-core/scripts/ge-query-milvus b/trustgraph-flow/scripts/ge-query-milvus similarity index 100% rename from trustgraph-core/scripts/ge-query-milvus rename to trustgraph-flow/scripts/ge-query-milvus diff --git a/trustgraph-core/scripts/ge-query-qdrant b/trustgraph-flow/scripts/ge-query-qdrant similarity index 100% rename from trustgraph-core/scripts/ge-query-qdrant rename to trustgraph-flow/scripts/ge-query-qdrant diff --git a/trustgraph-core/scripts/ge-write-milvus b/trustgraph-flow/scripts/ge-write-milvus similarity index 100% rename from trustgraph-core/scripts/ge-write-milvus rename to trustgraph-flow/scripts/ge-write-milvus diff --git a/trustgraph-core/scripts/ge-write-qdrant b/trustgraph-flow/scripts/ge-write-qdrant similarity index 100% rename from trustgraph-core/scripts/ge-write-qdrant rename to trustgraph-flow/scripts/ge-write-qdrant diff --git a/trustgraph-core/scripts/graph-rag b/trustgraph-flow/scripts/graph-rag similarity index 100% rename from trustgraph-core/scripts/graph-rag rename to trustgraph-flow/scripts/graph-rag diff --git a/trustgraph-core/scripts/kg-extract-definitions b/trustgraph-flow/scripts/kg-extract-definitions similarity index 100% rename from trustgraph-core/scripts/kg-extract-definitions rename to trustgraph-flow/scripts/kg-extract-definitions diff --git a/trustgraph-core/scripts/kg-extract-relationships b/trustgraph-flow/scripts/kg-extract-relationships similarity index 100% rename from trustgraph-core/scripts/kg-extract-relationships rename to trustgraph-flow/scripts/kg-extract-relationships diff --git a/trustgraph-core/scripts/kg-extract-topics b/trustgraph-flow/scripts/kg-extract-topics similarity index 100% rename from trustgraph-core/scripts/kg-extract-topics rename to trustgraph-flow/scripts/kg-extract-topics diff --git a/trustgraph-core/scripts/metering b/trustgraph-flow/scripts/metering similarity index 100% rename from trustgraph-core/scripts/metering rename to trustgraph-flow/scripts/metering diff --git a/trustgraph-core/scripts/object-extract-row b/trustgraph-flow/scripts/object-extract-row similarity index 100% rename from trustgraph-core/scripts/object-extract-row rename to trustgraph-flow/scripts/object-extract-row diff --git a/trustgraph-core/scripts/oe-write-milvus b/trustgraph-flow/scripts/oe-write-milvus similarity index 100% rename from trustgraph-core/scripts/oe-write-milvus rename to trustgraph-flow/scripts/oe-write-milvus diff --git a/trustgraph-core/scripts/pdf-decoder b/trustgraph-flow/scripts/pdf-decoder similarity index 100% rename from trustgraph-core/scripts/pdf-decoder rename to trustgraph-flow/scripts/pdf-decoder diff --git a/trustgraph-core/scripts/prompt-generic b/trustgraph-flow/scripts/prompt-generic similarity index 100% rename from trustgraph-core/scripts/prompt-generic rename to trustgraph-flow/scripts/prompt-generic diff --git a/trustgraph-core/scripts/prompt-template b/trustgraph-flow/scripts/prompt-template similarity index 100% rename from trustgraph-core/scripts/prompt-template rename to trustgraph-flow/scripts/prompt-template diff --git a/trustgraph-core/scripts/rows-write-cassandra b/trustgraph-flow/scripts/rows-write-cassandra similarity index 100% rename from trustgraph-core/scripts/rows-write-cassandra rename to trustgraph-flow/scripts/rows-write-cassandra diff --git a/trustgraph-core/scripts/run-processing b/trustgraph-flow/scripts/run-processing similarity index 100% rename from trustgraph-core/scripts/run-processing rename to trustgraph-flow/scripts/run-processing diff --git a/trustgraph-core/scripts/text-completion-azure b/trustgraph-flow/scripts/text-completion-azure similarity index 100% rename from trustgraph-core/scripts/text-completion-azure rename to trustgraph-flow/scripts/text-completion-azure diff --git a/trustgraph-core/scripts/text-completion-claude b/trustgraph-flow/scripts/text-completion-claude similarity index 100% rename from trustgraph-core/scripts/text-completion-claude rename to trustgraph-flow/scripts/text-completion-claude diff --git a/trustgraph-core/scripts/text-completion-cohere b/trustgraph-flow/scripts/text-completion-cohere similarity index 100% rename from trustgraph-core/scripts/text-completion-cohere rename to trustgraph-flow/scripts/text-completion-cohere diff --git a/trustgraph-core/scripts/text-completion-llamafile b/trustgraph-flow/scripts/text-completion-llamafile similarity index 100% rename from trustgraph-core/scripts/text-completion-llamafile rename to trustgraph-flow/scripts/text-completion-llamafile diff --git a/trustgraph-core/scripts/text-completion-ollama b/trustgraph-flow/scripts/text-completion-ollama similarity index 100% rename from trustgraph-core/scripts/text-completion-ollama rename to trustgraph-flow/scripts/text-completion-ollama diff --git a/trustgraph-core/scripts/text-completion-openai b/trustgraph-flow/scripts/text-completion-openai similarity index 100% rename from trustgraph-core/scripts/text-completion-openai rename to trustgraph-flow/scripts/text-completion-openai diff --git a/trustgraph-core/scripts/triples-query-cassandra b/trustgraph-flow/scripts/triples-query-cassandra similarity index 100% rename from trustgraph-core/scripts/triples-query-cassandra rename to trustgraph-flow/scripts/triples-query-cassandra diff --git a/trustgraph-core/scripts/triples-query-neo4j b/trustgraph-flow/scripts/triples-query-neo4j similarity index 100% rename from trustgraph-core/scripts/triples-query-neo4j rename to trustgraph-flow/scripts/triples-query-neo4j diff --git a/trustgraph-core/scripts/triples-write-cassandra b/trustgraph-flow/scripts/triples-write-cassandra similarity index 100% rename from trustgraph-core/scripts/triples-write-cassandra rename to trustgraph-flow/scripts/triples-write-cassandra diff --git a/trustgraph-core/scripts/triples-write-neo4j b/trustgraph-flow/scripts/triples-write-neo4j similarity index 100% rename from trustgraph-core/scripts/triples-write-neo4j rename to trustgraph-flow/scripts/triples-write-neo4j diff --git a/trustgraph-core/setup.py b/trustgraph-flow/setup.py similarity index 78% rename from trustgraph-core/setup.py rename to trustgraph-flow/setup.py index 404bb26b..a1c89797 100644 --- a/trustgraph-core/setup.py +++ b/trustgraph-flow/setup.py @@ -7,7 +7,7 @@ with open("README.md", "r") as fh: # Load a version number module spec = importlib.util.spec_from_file_location( - 'version', 'trustgraph/core_version.py' + 'version', 'trustgraph/flow_version.py' ) version_module = importlib.util.module_from_spec(spec) spec.loader.exec_module(version_module) @@ -15,7 +15,7 @@ spec.loader.exec_module(version_module) version = version_module.__version__ setuptools.setup( - name="trustgraph-core", + name="trustgraph-flow", version=version, author="trustgraph.ai", author_email="security@trustgraph.ai", @@ -25,7 +25,6 @@ setuptools.setup( url="https://github.com/trustgraph-ai/trustgraph", packages=setuptools.find_namespace_packages( where='./', -# include=['trustgraph.core'] ), classifiers=[ "Programming Language :: Python :: 3", @@ -35,6 +34,7 @@ setuptools.setup( python_requires='>=3.8', download_url = "https://github.com/trustgraph-ai/trustgraph/archive/refs/tags/v" + version + ".tar.gz", install_requires=[ + "trustgraph-base", "urllib3", "rdflib", "pymilvus", @@ -49,12 +49,9 @@ setuptools.setup( "qdrant-client", "tabulate", "anthropic", - "google-cloud-aiplatform", "pyyaml", "prometheus-client", - "pyarrow", "cohere", - "boto3", "openai", "neo4j", "tiktoken", @@ -62,52 +59,35 @@ setuptools.setup( scripts=[ "scripts/chunker-recursive", "scripts/chunker-token", - "scripts/concat-parquet", "scripts/de-query-milvus", "scripts/de-query-qdrant", "scripts/de-write-milvus", "scripts/de-write-qdrant", "scripts/document-rag", - "scripts/dump-parquet", "scripts/embeddings-ollama", "scripts/embeddings-vectorize", - "scripts/ge-dump-parquet", "scripts/ge-query-milvus", "scripts/ge-query-qdrant", "scripts/ge-write-milvus", "scripts/ge-write-qdrant", "scripts/graph-rag", - "scripts/graph-show", - "scripts/graph-to-turtle", - "scripts/init-pulsar-manager", "scripts/kg-extract-definitions", "scripts/kg-extract-topics", "scripts/kg-extract-relationships", - "scripts/load-graph-embeddings", - "scripts/load-pdf", - "scripts/load-text", - "scripts/load-triples", "scripts/metering", "scripts/object-extract-row", "scripts/oe-write-milvus", "scripts/pdf-decoder", "scripts/prompt-generic", "scripts/prompt-template", - "scripts/query-document-rag", - "scripts/query-graph-rag", "scripts/rows-write-cassandra", "scripts/run-processing", "scripts/text-completion-azure", - "scripts/text-completion-bedrock", "scripts/text-completion-claude", "scripts/text-completion-cohere", "scripts/text-completion-llamafile", "scripts/text-completion-ollama", "scripts/text-completion-openai", - "scripts/text-completion-vertexai", - "scripts/tg-init-pulsar", - "scripts/tg-processor-state", - "scripts/triples-dump-parquet", "scripts/triples-query-cassandra", "scripts/triples-query-neo4j", "scripts/triples-write-cassandra", diff --git a/trustgraph-core/trustgraph/clients/__init__.py b/trustgraph-flow/trustgraph/__init__.py similarity index 100% rename from trustgraph-core/trustgraph/clients/__init__.py rename to trustgraph-flow/trustgraph/__init__.py diff --git a/trustgraph-core/trustgraph/decoding/__init__.py b/trustgraph-flow/trustgraph/chunking/__init__.py similarity index 100% rename from trustgraph-core/trustgraph/decoding/__init__.py rename to trustgraph-flow/trustgraph/chunking/__init__.py diff --git a/trustgraph-core/trustgraph/chunking/recursive/__init__.py b/trustgraph-flow/trustgraph/chunking/recursive/__init__.py similarity index 100% rename from trustgraph-core/trustgraph/chunking/recursive/__init__.py rename to trustgraph-flow/trustgraph/chunking/recursive/__init__.py diff --git a/trustgraph-core/trustgraph/chunking/recursive/__main__.py b/trustgraph-flow/trustgraph/chunking/recursive/__main__.py similarity index 100% rename from trustgraph-core/trustgraph/chunking/recursive/__main__.py rename to trustgraph-flow/trustgraph/chunking/recursive/__main__.py diff --git a/trustgraph-core/trustgraph/chunking/recursive/chunker.py b/trustgraph-flow/trustgraph/chunking/recursive/chunker.py similarity index 100% rename from trustgraph-core/trustgraph/chunking/recursive/chunker.py rename to trustgraph-flow/trustgraph/chunking/recursive/chunker.py diff --git a/trustgraph-core/trustgraph/chunking/token/__init__.py b/trustgraph-flow/trustgraph/chunking/token/__init__.py similarity index 100% rename from trustgraph-core/trustgraph/chunking/token/__init__.py rename to trustgraph-flow/trustgraph/chunking/token/__init__.py diff --git a/trustgraph-core/trustgraph/chunking/token/__main__.py b/trustgraph-flow/trustgraph/chunking/token/__main__.py similarity index 100% rename from trustgraph-core/trustgraph/chunking/token/__main__.py rename to trustgraph-flow/trustgraph/chunking/token/__main__.py diff --git a/trustgraph-core/trustgraph/chunking/token/chunker.py b/trustgraph-flow/trustgraph/chunking/token/chunker.py similarity index 100% rename from trustgraph-core/trustgraph/chunking/token/chunker.py rename to trustgraph-flow/trustgraph/chunking/token/chunker.py diff --git a/trustgraph-core/trustgraph/direct/__init__.py b/trustgraph-flow/trustgraph/decoding/__init__.py similarity index 100% rename from trustgraph-core/trustgraph/direct/__init__.py rename to trustgraph-flow/trustgraph/decoding/__init__.py diff --git a/trustgraph-core/trustgraph/decoding/pdf/__init__.py b/trustgraph-flow/trustgraph/decoding/pdf/__init__.py similarity index 100% rename from trustgraph-core/trustgraph/decoding/pdf/__init__.py rename to trustgraph-flow/trustgraph/decoding/pdf/__init__.py diff --git a/trustgraph-core/trustgraph/decoding/pdf/__main__.py b/trustgraph-flow/trustgraph/decoding/pdf/__main__.py similarity index 100% rename from trustgraph-core/trustgraph/decoding/pdf/__main__.py rename to trustgraph-flow/trustgraph/decoding/pdf/__main__.py diff --git a/trustgraph-core/trustgraph/decoding/pdf/pdf_decoder.py b/trustgraph-flow/trustgraph/decoding/pdf/pdf_decoder.py similarity index 100% rename from trustgraph-core/trustgraph/decoding/pdf/pdf_decoder.py rename to trustgraph-flow/trustgraph/decoding/pdf/pdf_decoder.py diff --git a/trustgraph-core/trustgraph/dump/__init__.py b/trustgraph-flow/trustgraph/direct/__init__.py similarity index 100% rename from trustgraph-core/trustgraph/dump/__init__.py rename to trustgraph-flow/trustgraph/direct/__init__.py diff --git a/trustgraph-core/trustgraph/direct/cassandra.py b/trustgraph-flow/trustgraph/direct/cassandra.py similarity index 100% rename from trustgraph-core/trustgraph/direct/cassandra.py rename to trustgraph-flow/trustgraph/direct/cassandra.py diff --git a/trustgraph-core/trustgraph/direct/milvus_doc_embeddings.py b/trustgraph-flow/trustgraph/direct/milvus_doc_embeddings.py similarity index 100% rename from trustgraph-core/trustgraph/direct/milvus_doc_embeddings.py rename to trustgraph-flow/trustgraph/direct/milvus_doc_embeddings.py diff --git a/trustgraph-core/trustgraph/direct/milvus_graph_embeddings.py b/trustgraph-flow/trustgraph/direct/milvus_graph_embeddings.py similarity index 100% rename from trustgraph-core/trustgraph/direct/milvus_graph_embeddings.py rename to trustgraph-flow/trustgraph/direct/milvus_graph_embeddings.py diff --git a/trustgraph-core/trustgraph/direct/milvus_object_embeddings.py b/trustgraph-flow/trustgraph/direct/milvus_object_embeddings.py similarity index 100% rename from trustgraph-core/trustgraph/direct/milvus_object_embeddings.py rename to trustgraph-flow/trustgraph/direct/milvus_object_embeddings.py diff --git a/trustgraph-core/trustgraph/document_rag.py b/trustgraph-flow/trustgraph/document_rag.py similarity index 100% rename from trustgraph-core/trustgraph/document_rag.py rename to trustgraph-flow/trustgraph/document_rag.py diff --git a/trustgraph-core/trustgraph/dump/graph_embeddings/__init__.py b/trustgraph-flow/trustgraph/embeddings/__init__.py similarity index 100% rename from trustgraph-core/trustgraph/dump/graph_embeddings/__init__.py rename to trustgraph-flow/trustgraph/embeddings/__init__.py diff --git a/trustgraph-core/trustgraph/dump/graph_embeddings/parquet/__init__.py b/trustgraph-flow/trustgraph/embeddings/ollama/__init__.py similarity index 100% rename from trustgraph-core/trustgraph/dump/graph_embeddings/parquet/__init__.py rename to trustgraph-flow/trustgraph/embeddings/ollama/__init__.py diff --git a/trustgraph-core/trustgraph/embeddings/ollama/__main__.py b/trustgraph-flow/trustgraph/embeddings/ollama/__main__.py similarity index 100% rename from trustgraph-core/trustgraph/embeddings/ollama/__main__.py rename to trustgraph-flow/trustgraph/embeddings/ollama/__main__.py diff --git a/trustgraph-core/trustgraph/embeddings/ollama/processor.py b/trustgraph-flow/trustgraph/embeddings/ollama/processor.py similarity index 100% rename from trustgraph-core/trustgraph/embeddings/ollama/processor.py rename to trustgraph-flow/trustgraph/embeddings/ollama/processor.py diff --git a/trustgraph-core/trustgraph/embeddings/vectorize/__init__.py b/trustgraph-flow/trustgraph/embeddings/vectorize/__init__.py similarity index 100% rename from trustgraph-core/trustgraph/embeddings/vectorize/__init__.py rename to trustgraph-flow/trustgraph/embeddings/vectorize/__init__.py diff --git a/trustgraph-core/trustgraph/embeddings/vectorize/__main__.py b/trustgraph-flow/trustgraph/embeddings/vectorize/__main__.py similarity index 100% rename from trustgraph-core/trustgraph/embeddings/vectorize/__main__.py rename to trustgraph-flow/trustgraph/embeddings/vectorize/__main__.py diff --git a/trustgraph-core/trustgraph/embeddings/vectorize/vectorize.py b/trustgraph-flow/trustgraph/embeddings/vectorize/vectorize.py similarity index 100% rename from trustgraph-core/trustgraph/embeddings/vectorize/vectorize.py rename to trustgraph-flow/trustgraph/embeddings/vectorize/vectorize.py diff --git a/trustgraph-core/trustgraph/dump/triples/__init__.py b/trustgraph-flow/trustgraph/extract/__init__.py similarity index 100% rename from trustgraph-core/trustgraph/dump/triples/__init__.py rename to trustgraph-flow/trustgraph/extract/__init__.py diff --git a/trustgraph-core/trustgraph/embeddings/__init__.py b/trustgraph-flow/trustgraph/extract/kg/__init__.py similarity index 100% rename from trustgraph-core/trustgraph/embeddings/__init__.py rename to trustgraph-flow/trustgraph/extract/kg/__init__.py diff --git a/trustgraph-core/trustgraph/extract/kg/definitions/__init__.py b/trustgraph-flow/trustgraph/extract/kg/definitions/__init__.py similarity index 100% rename from trustgraph-core/trustgraph/extract/kg/definitions/__init__.py rename to trustgraph-flow/trustgraph/extract/kg/definitions/__init__.py diff --git a/trustgraph-core/trustgraph/extract/kg/definitions/__main__.py b/trustgraph-flow/trustgraph/extract/kg/definitions/__main__.py similarity index 100% rename from trustgraph-core/trustgraph/extract/kg/definitions/__main__.py rename to trustgraph-flow/trustgraph/extract/kg/definitions/__main__.py diff --git a/trustgraph-core/trustgraph/extract/kg/definitions/extract.py b/trustgraph-flow/trustgraph/extract/kg/definitions/extract.py similarity index 100% rename from trustgraph-core/trustgraph/extract/kg/definitions/extract.py rename to trustgraph-flow/trustgraph/extract/kg/definitions/extract.py diff --git a/trustgraph-core/trustgraph/extract/kg/relationships/__init__.py b/trustgraph-flow/trustgraph/extract/kg/relationships/__init__.py similarity index 100% rename from trustgraph-core/trustgraph/extract/kg/relationships/__init__.py rename to trustgraph-flow/trustgraph/extract/kg/relationships/__init__.py diff --git a/trustgraph-core/trustgraph/extract/kg/relationships/__main__.py b/trustgraph-flow/trustgraph/extract/kg/relationships/__main__.py similarity index 100% rename from trustgraph-core/trustgraph/extract/kg/relationships/__main__.py rename to trustgraph-flow/trustgraph/extract/kg/relationships/__main__.py diff --git a/trustgraph-core/trustgraph/extract/kg/relationships/extract.py b/trustgraph-flow/trustgraph/extract/kg/relationships/extract.py similarity index 100% rename from trustgraph-core/trustgraph/extract/kg/relationships/extract.py rename to trustgraph-flow/trustgraph/extract/kg/relationships/extract.py diff --git a/trustgraph-core/trustgraph/extract/kg/topics/__init__.py b/trustgraph-flow/trustgraph/extract/kg/topics/__init__.py similarity index 100% rename from trustgraph-core/trustgraph/extract/kg/topics/__init__.py rename to trustgraph-flow/trustgraph/extract/kg/topics/__init__.py diff --git a/trustgraph-core/trustgraph/extract/kg/topics/__main__.py b/trustgraph-flow/trustgraph/extract/kg/topics/__main__.py similarity index 100% rename from trustgraph-core/trustgraph/extract/kg/topics/__main__.py rename to trustgraph-flow/trustgraph/extract/kg/topics/__main__.py diff --git a/trustgraph-core/trustgraph/extract/kg/topics/extract.py b/trustgraph-flow/trustgraph/extract/kg/topics/extract.py similarity index 100% rename from trustgraph-core/trustgraph/extract/kg/topics/extract.py rename to trustgraph-flow/trustgraph/extract/kg/topics/extract.py diff --git a/trustgraph-core/trustgraph/extract/__init__.py b/trustgraph-flow/trustgraph/extract/object/__init__.py similarity index 100% rename from trustgraph-core/trustgraph/extract/__init__.py rename to trustgraph-flow/trustgraph/extract/object/__init__.py diff --git a/trustgraph-core/trustgraph/extract/object/row/__init__.py b/trustgraph-flow/trustgraph/extract/object/row/__init__.py similarity index 100% rename from trustgraph-core/trustgraph/extract/object/row/__init__.py rename to trustgraph-flow/trustgraph/extract/object/row/__init__.py diff --git a/trustgraph-core/trustgraph/extract/object/row/__main__.py b/trustgraph-flow/trustgraph/extract/object/row/__main__.py similarity index 100% rename from trustgraph-core/trustgraph/extract/object/row/__main__.py rename to trustgraph-flow/trustgraph/extract/object/row/__main__.py diff --git a/trustgraph-core/trustgraph/extract/object/row/extract.py b/trustgraph-flow/trustgraph/extract/object/row/extract.py similarity index 100% rename from trustgraph-core/trustgraph/extract/object/row/extract.py rename to trustgraph-flow/trustgraph/extract/object/row/extract.py diff --git a/trustgraph-core/trustgraph/graph_rag.py b/trustgraph-flow/trustgraph/graph_rag.py similarity index 100% rename from trustgraph-core/trustgraph/graph_rag.py rename to trustgraph-flow/trustgraph/graph_rag.py diff --git a/trustgraph-core/trustgraph/metering/__init__.py b/trustgraph-flow/trustgraph/metering/__init__.py similarity index 100% rename from trustgraph-core/trustgraph/metering/__init__.py rename to trustgraph-flow/trustgraph/metering/__init__.py diff --git a/trustgraph-core/trustgraph/metering/__main__.py b/trustgraph-flow/trustgraph/metering/__main__.py similarity index 100% rename from trustgraph-core/trustgraph/metering/__main__.py rename to trustgraph-flow/trustgraph/metering/__main__.py diff --git a/trustgraph-core/trustgraph/metering/counter.py b/trustgraph-flow/trustgraph/metering/counter.py similarity index 100% rename from trustgraph-core/trustgraph/metering/counter.py rename to trustgraph-flow/trustgraph/metering/counter.py diff --git a/trustgraph-core/trustgraph/metering/pricelist.py b/trustgraph-flow/trustgraph/metering/pricelist.py similarity index 100% rename from trustgraph-core/trustgraph/metering/pricelist.py rename to trustgraph-flow/trustgraph/metering/pricelist.py diff --git a/trustgraph-core/trustgraph/extract/kg/__init__.py b/trustgraph-flow/trustgraph/model/__init__.py similarity index 100% rename from trustgraph-core/trustgraph/extract/kg/__init__.py rename to trustgraph-flow/trustgraph/model/__init__.py diff --git a/trustgraph-core/trustgraph/extract/object/__init__.py b/trustgraph-flow/trustgraph/model/prompt/__init__.py similarity index 100% rename from trustgraph-core/trustgraph/extract/object/__init__.py rename to trustgraph-flow/trustgraph/model/prompt/__init__.py diff --git a/trustgraph-core/trustgraph/model/prompt/generic/__init__.py b/trustgraph-flow/trustgraph/model/prompt/generic/__init__.py similarity index 100% rename from trustgraph-core/trustgraph/model/prompt/generic/__init__.py rename to trustgraph-flow/trustgraph/model/prompt/generic/__init__.py diff --git a/trustgraph-core/trustgraph/model/prompt/generic/__main__.py b/trustgraph-flow/trustgraph/model/prompt/generic/__main__.py similarity index 100% rename from trustgraph-core/trustgraph/model/prompt/generic/__main__.py rename to trustgraph-flow/trustgraph/model/prompt/generic/__main__.py diff --git a/trustgraph-core/trustgraph/model/prompt/generic/prompts.py b/trustgraph-flow/trustgraph/model/prompt/generic/prompts.py similarity index 100% rename from trustgraph-core/trustgraph/model/prompt/generic/prompts.py rename to trustgraph-flow/trustgraph/model/prompt/generic/prompts.py diff --git a/trustgraph-core/trustgraph/model/prompt/generic/service.py b/trustgraph-flow/trustgraph/model/prompt/generic/service.py similarity index 100% rename from trustgraph-core/trustgraph/model/prompt/generic/service.py rename to trustgraph-flow/trustgraph/model/prompt/generic/service.py diff --git a/trustgraph-core/trustgraph/model/prompt/template/__init__.py b/trustgraph-flow/trustgraph/model/prompt/template/__init__.py similarity index 100% rename from trustgraph-core/trustgraph/model/prompt/template/__init__.py rename to trustgraph-flow/trustgraph/model/prompt/template/__init__.py diff --git a/trustgraph-core/trustgraph/model/prompt/template/__main__.py b/trustgraph-flow/trustgraph/model/prompt/template/__main__.py similarity index 100% rename from trustgraph-core/trustgraph/model/prompt/template/__main__.py rename to trustgraph-flow/trustgraph/model/prompt/template/__main__.py diff --git a/trustgraph-core/trustgraph/model/prompt/template/prompts.py b/trustgraph-flow/trustgraph/model/prompt/template/prompts.py similarity index 100% rename from trustgraph-core/trustgraph/model/prompt/template/prompts.py rename to trustgraph-flow/trustgraph/model/prompt/template/prompts.py diff --git a/trustgraph-core/trustgraph/model/prompt/template/service.py b/trustgraph-flow/trustgraph/model/prompt/template/service.py similarity index 100% rename from trustgraph-core/trustgraph/model/prompt/template/service.py rename to trustgraph-flow/trustgraph/model/prompt/template/service.py diff --git a/trustgraph-core/trustgraph/model/__init__.py b/trustgraph-flow/trustgraph/model/text_completion/__init__.py similarity index 100% rename from trustgraph-core/trustgraph/model/__init__.py rename to trustgraph-flow/trustgraph/model/text_completion/__init__.py diff --git a/trustgraph-core/trustgraph/model/text_completion/bedrock/__init__.py b/trustgraph-flow/trustgraph/model/text_completion/azure/__init__.py similarity index 100% rename from trustgraph-core/trustgraph/model/text_completion/bedrock/__init__.py rename to trustgraph-flow/trustgraph/model/text_completion/azure/__init__.py diff --git a/trustgraph-core/trustgraph/model/text_completion/bedrock/__main__.py b/trustgraph-flow/trustgraph/model/text_completion/azure/__main__.py similarity index 100% rename from trustgraph-core/trustgraph/model/text_completion/bedrock/__main__.py rename to trustgraph-flow/trustgraph/model/text_completion/azure/__main__.py diff --git a/trustgraph-core/trustgraph/model/text_completion/azure/llm.py b/trustgraph-flow/trustgraph/model/text_completion/azure/llm.py similarity index 100% rename from trustgraph-core/trustgraph/model/text_completion/azure/llm.py rename to trustgraph-flow/trustgraph/model/text_completion/azure/llm.py diff --git a/trustgraph-core/trustgraph/model/text_completion/claude/__init__.py b/trustgraph-flow/trustgraph/model/text_completion/claude/__init__.py similarity index 100% rename from trustgraph-core/trustgraph/model/text_completion/claude/__init__.py rename to trustgraph-flow/trustgraph/model/text_completion/claude/__init__.py diff --git a/trustgraph-core/trustgraph/model/text_completion/claude/__main__.py b/trustgraph-flow/trustgraph/model/text_completion/claude/__main__.py similarity index 100% rename from trustgraph-core/trustgraph/model/text_completion/claude/__main__.py rename to trustgraph-flow/trustgraph/model/text_completion/claude/__main__.py diff --git a/trustgraph-core/trustgraph/model/text_completion/claude/llm.py b/trustgraph-flow/trustgraph/model/text_completion/claude/llm.py similarity index 100% rename from trustgraph-core/trustgraph/model/text_completion/claude/llm.py rename to trustgraph-flow/trustgraph/model/text_completion/claude/llm.py diff --git a/trustgraph-core/trustgraph/model/text_completion/cohere/__init__.py b/trustgraph-flow/trustgraph/model/text_completion/cohere/__init__.py similarity index 100% rename from trustgraph-core/trustgraph/model/text_completion/cohere/__init__.py rename to trustgraph-flow/trustgraph/model/text_completion/cohere/__init__.py diff --git a/trustgraph-core/trustgraph/model/text_completion/cohere/__main__.py b/trustgraph-flow/trustgraph/model/text_completion/cohere/__main__.py similarity index 100% rename from trustgraph-core/trustgraph/model/text_completion/cohere/__main__.py rename to trustgraph-flow/trustgraph/model/text_completion/cohere/__main__.py diff --git a/trustgraph-core/trustgraph/model/text_completion/cohere/llm.py b/trustgraph-flow/trustgraph/model/text_completion/cohere/llm.py similarity index 100% rename from trustgraph-core/trustgraph/model/text_completion/cohere/llm.py rename to trustgraph-flow/trustgraph/model/text_completion/cohere/llm.py diff --git a/trustgraph-core/trustgraph/model/text_completion/llamafile/__init__.py b/trustgraph-flow/trustgraph/model/text_completion/llamafile/__init__.py similarity index 100% rename from trustgraph-core/trustgraph/model/text_completion/llamafile/__init__.py rename to trustgraph-flow/trustgraph/model/text_completion/llamafile/__init__.py diff --git a/trustgraph-core/trustgraph/model/text_completion/llamafile/__main__.py b/trustgraph-flow/trustgraph/model/text_completion/llamafile/__main__.py similarity index 100% rename from trustgraph-core/trustgraph/model/text_completion/llamafile/__main__.py rename to trustgraph-flow/trustgraph/model/text_completion/llamafile/__main__.py diff --git a/trustgraph-core/trustgraph/model/text_completion/llamafile/llm.py b/trustgraph-flow/trustgraph/model/text_completion/llamafile/llm.py similarity index 100% rename from trustgraph-core/trustgraph/model/text_completion/llamafile/llm.py rename to trustgraph-flow/trustgraph/model/text_completion/llamafile/llm.py diff --git a/trustgraph-core/trustgraph/model/text_completion/ollama/__init__.py b/trustgraph-flow/trustgraph/model/text_completion/ollama/__init__.py similarity index 100% rename from trustgraph-core/trustgraph/model/text_completion/ollama/__init__.py rename to trustgraph-flow/trustgraph/model/text_completion/ollama/__init__.py diff --git a/trustgraph-core/trustgraph/model/text_completion/ollama/__main__.py b/trustgraph-flow/trustgraph/model/text_completion/ollama/__main__.py similarity index 100% rename from trustgraph-core/trustgraph/model/text_completion/ollama/__main__.py rename to trustgraph-flow/trustgraph/model/text_completion/ollama/__main__.py diff --git a/trustgraph-core/trustgraph/model/text_completion/ollama/llm.py b/trustgraph-flow/trustgraph/model/text_completion/ollama/llm.py similarity index 100% rename from trustgraph-core/trustgraph/model/text_completion/ollama/llm.py rename to trustgraph-flow/trustgraph/model/text_completion/ollama/llm.py diff --git a/trustgraph-core/trustgraph/model/text_completion/openai/__init__.py b/trustgraph-flow/trustgraph/model/text_completion/openai/__init__.py similarity index 100% rename from trustgraph-core/trustgraph/model/text_completion/openai/__init__.py rename to trustgraph-flow/trustgraph/model/text_completion/openai/__init__.py diff --git a/trustgraph-core/trustgraph/model/text_completion/openai/__main__.py b/trustgraph-flow/trustgraph/model/text_completion/openai/__main__.py similarity index 100% rename from trustgraph-core/trustgraph/model/text_completion/openai/__main__.py rename to trustgraph-flow/trustgraph/model/text_completion/openai/__main__.py diff --git a/trustgraph-core/trustgraph/model/text_completion/openai/llm.py b/trustgraph-flow/trustgraph/model/text_completion/openai/llm.py similarity index 100% rename from trustgraph-core/trustgraph/model/text_completion/openai/llm.py rename to trustgraph-flow/trustgraph/model/text_completion/openai/llm.py diff --git a/trustgraph-core/trustgraph/processing/__init__.py b/trustgraph-flow/trustgraph/processing/__init__.py similarity index 100% rename from trustgraph-core/trustgraph/processing/__init__.py rename to trustgraph-flow/trustgraph/processing/__init__.py diff --git a/trustgraph-core/trustgraph/processing/__main__.py b/trustgraph-flow/trustgraph/processing/__main__.py similarity index 100% rename from trustgraph-core/trustgraph/processing/__main__.py rename to trustgraph-flow/trustgraph/processing/__main__.py diff --git a/trustgraph-core/trustgraph/processing/processing.py b/trustgraph-flow/trustgraph/processing/processing.py similarity index 100% rename from trustgraph-core/trustgraph/processing/processing.py rename to trustgraph-flow/trustgraph/processing/processing.py diff --git a/trustgraph-core/trustgraph/model/prompt/__init__.py b/trustgraph-flow/trustgraph/query/__init__.py similarity index 100% rename from trustgraph-core/trustgraph/model/prompt/__init__.py rename to trustgraph-flow/trustgraph/query/__init__.py diff --git a/trustgraph-core/trustgraph/model/text_completion/__init__.py b/trustgraph-flow/trustgraph/query/doc_embeddings/__init__.py similarity index 100% rename from trustgraph-core/trustgraph/model/text_completion/__init__.py rename to trustgraph-flow/trustgraph/query/doc_embeddings/__init__.py diff --git a/trustgraph-core/trustgraph/query/doc_embeddings/milvus/__init__.py b/trustgraph-flow/trustgraph/query/doc_embeddings/milvus/__init__.py similarity index 100% rename from trustgraph-core/trustgraph/query/doc_embeddings/milvus/__init__.py rename to trustgraph-flow/trustgraph/query/doc_embeddings/milvus/__init__.py diff --git a/trustgraph-core/trustgraph/query/doc_embeddings/milvus/__main__.py b/trustgraph-flow/trustgraph/query/doc_embeddings/milvus/__main__.py similarity index 100% rename from trustgraph-core/trustgraph/query/doc_embeddings/milvus/__main__.py rename to trustgraph-flow/trustgraph/query/doc_embeddings/milvus/__main__.py diff --git a/trustgraph-core/trustgraph/query/doc_embeddings/milvus/service.py b/trustgraph-flow/trustgraph/query/doc_embeddings/milvus/service.py similarity index 100% rename from trustgraph-core/trustgraph/query/doc_embeddings/milvus/service.py rename to trustgraph-flow/trustgraph/query/doc_embeddings/milvus/service.py diff --git a/trustgraph-core/trustgraph/query/doc_embeddings/qdrant/__init__.py b/trustgraph-flow/trustgraph/query/doc_embeddings/qdrant/__init__.py similarity index 100% rename from trustgraph-core/trustgraph/query/doc_embeddings/qdrant/__init__.py rename to trustgraph-flow/trustgraph/query/doc_embeddings/qdrant/__init__.py diff --git a/trustgraph-core/trustgraph/query/doc_embeddings/qdrant/__main__.py b/trustgraph-flow/trustgraph/query/doc_embeddings/qdrant/__main__.py similarity index 100% rename from trustgraph-core/trustgraph/query/doc_embeddings/qdrant/__main__.py rename to trustgraph-flow/trustgraph/query/doc_embeddings/qdrant/__main__.py diff --git a/trustgraph-core/trustgraph/query/doc_embeddings/qdrant/service.py b/trustgraph-flow/trustgraph/query/doc_embeddings/qdrant/service.py similarity index 100% rename from trustgraph-core/trustgraph/query/doc_embeddings/qdrant/service.py rename to trustgraph-flow/trustgraph/query/doc_embeddings/qdrant/service.py diff --git a/trustgraph-core/trustgraph/objects/__init__.py b/trustgraph-flow/trustgraph/query/graph_embeddings/__init__.py similarity index 100% rename from trustgraph-core/trustgraph/objects/__init__.py rename to trustgraph-flow/trustgraph/query/graph_embeddings/__init__.py diff --git a/trustgraph-core/trustgraph/query/graph_embeddings/milvus/__init__.py b/trustgraph-flow/trustgraph/query/graph_embeddings/milvus/__init__.py similarity index 100% rename from trustgraph-core/trustgraph/query/graph_embeddings/milvus/__init__.py rename to trustgraph-flow/trustgraph/query/graph_embeddings/milvus/__init__.py diff --git a/trustgraph-core/trustgraph/query/graph_embeddings/milvus/__main__.py b/trustgraph-flow/trustgraph/query/graph_embeddings/milvus/__main__.py similarity index 100% rename from trustgraph-core/trustgraph/query/graph_embeddings/milvus/__main__.py rename to trustgraph-flow/trustgraph/query/graph_embeddings/milvus/__main__.py diff --git a/trustgraph-core/trustgraph/query/graph_embeddings/milvus/service.py b/trustgraph-flow/trustgraph/query/graph_embeddings/milvus/service.py similarity index 100% rename from trustgraph-core/trustgraph/query/graph_embeddings/milvus/service.py rename to trustgraph-flow/trustgraph/query/graph_embeddings/milvus/service.py diff --git a/trustgraph-core/trustgraph/query/graph_embeddings/qdrant/__init__.py b/trustgraph-flow/trustgraph/query/graph_embeddings/qdrant/__init__.py similarity index 100% rename from trustgraph-core/trustgraph/query/graph_embeddings/qdrant/__init__.py rename to trustgraph-flow/trustgraph/query/graph_embeddings/qdrant/__init__.py diff --git a/trustgraph-core/trustgraph/query/graph_embeddings/qdrant/__main__.py b/trustgraph-flow/trustgraph/query/graph_embeddings/qdrant/__main__.py similarity index 100% rename from trustgraph-core/trustgraph/query/graph_embeddings/qdrant/__main__.py rename to trustgraph-flow/trustgraph/query/graph_embeddings/qdrant/__main__.py diff --git a/trustgraph-core/trustgraph/query/graph_embeddings/qdrant/service.py b/trustgraph-flow/trustgraph/query/graph_embeddings/qdrant/service.py similarity index 100% rename from trustgraph-core/trustgraph/query/graph_embeddings/qdrant/service.py rename to trustgraph-flow/trustgraph/query/graph_embeddings/qdrant/service.py diff --git a/trustgraph-core/trustgraph/query/__init__.py b/trustgraph-flow/trustgraph/query/triples/__init__.py similarity index 100% rename from trustgraph-core/trustgraph/query/__init__.py rename to trustgraph-flow/trustgraph/query/triples/__init__.py diff --git a/trustgraph-core/trustgraph/query/triples/cassandra/__init__.py b/trustgraph-flow/trustgraph/query/triples/cassandra/__init__.py similarity index 100% rename from trustgraph-core/trustgraph/query/triples/cassandra/__init__.py rename to trustgraph-flow/trustgraph/query/triples/cassandra/__init__.py diff --git a/trustgraph-core/trustgraph/query/triples/cassandra/__main__.py b/trustgraph-flow/trustgraph/query/triples/cassandra/__main__.py similarity index 100% rename from trustgraph-core/trustgraph/query/triples/cassandra/__main__.py rename to trustgraph-flow/trustgraph/query/triples/cassandra/__main__.py diff --git a/trustgraph-core/trustgraph/query/triples/cassandra/service.py b/trustgraph-flow/trustgraph/query/triples/cassandra/service.py similarity index 100% rename from trustgraph-core/trustgraph/query/triples/cassandra/service.py rename to trustgraph-flow/trustgraph/query/triples/cassandra/service.py diff --git a/trustgraph-core/trustgraph/query/triples/neo4j/__init__.py b/trustgraph-flow/trustgraph/query/triples/neo4j/__init__.py similarity index 100% rename from trustgraph-core/trustgraph/query/triples/neo4j/__init__.py rename to trustgraph-flow/trustgraph/query/triples/neo4j/__init__.py diff --git a/trustgraph-core/trustgraph/query/triples/neo4j/__main__.py b/trustgraph-flow/trustgraph/query/triples/neo4j/__main__.py similarity index 100% rename from trustgraph-core/trustgraph/query/triples/neo4j/__main__.py rename to trustgraph-flow/trustgraph/query/triples/neo4j/__main__.py diff --git a/trustgraph-core/trustgraph/query/triples/neo4j/service.py b/trustgraph-flow/trustgraph/query/triples/neo4j/service.py similarity index 100% rename from trustgraph-core/trustgraph/query/triples/neo4j/service.py rename to trustgraph-flow/trustgraph/query/triples/neo4j/service.py diff --git a/trustgraph-core/trustgraph/query/doc_embeddings/__init__.py b/trustgraph-flow/trustgraph/retrieval/__init__.py similarity index 100% rename from trustgraph-core/trustgraph/query/doc_embeddings/__init__.py rename to trustgraph-flow/trustgraph/retrieval/__init__.py diff --git a/trustgraph-core/trustgraph/retrieval/document_rag/__init__.py b/trustgraph-flow/trustgraph/retrieval/document_rag/__init__.py similarity index 100% rename from trustgraph-core/trustgraph/retrieval/document_rag/__init__.py rename to trustgraph-flow/trustgraph/retrieval/document_rag/__init__.py diff --git a/trustgraph-core/trustgraph/retrieval/document_rag/__main__.py b/trustgraph-flow/trustgraph/retrieval/document_rag/__main__.py similarity index 100% rename from trustgraph-core/trustgraph/retrieval/document_rag/__main__.py rename to trustgraph-flow/trustgraph/retrieval/document_rag/__main__.py diff --git a/trustgraph-core/trustgraph/retrieval/document_rag/rag.py b/trustgraph-flow/trustgraph/retrieval/document_rag/rag.py similarity index 100% rename from trustgraph-core/trustgraph/retrieval/document_rag/rag.py rename to trustgraph-flow/trustgraph/retrieval/document_rag/rag.py diff --git a/trustgraph-core/trustgraph/retrieval/graph_rag/__init__.py b/trustgraph-flow/trustgraph/retrieval/graph_rag/__init__.py similarity index 100% rename from trustgraph-core/trustgraph/retrieval/graph_rag/__init__.py rename to trustgraph-flow/trustgraph/retrieval/graph_rag/__init__.py diff --git a/trustgraph-core/trustgraph/retrieval/graph_rag/__main__.py b/trustgraph-flow/trustgraph/retrieval/graph_rag/__main__.py similarity index 100% rename from trustgraph-core/trustgraph/retrieval/graph_rag/__main__.py rename to trustgraph-flow/trustgraph/retrieval/graph_rag/__main__.py diff --git a/trustgraph-core/trustgraph/retrieval/graph_rag/rag.py b/trustgraph-flow/trustgraph/retrieval/graph_rag/rag.py similarity index 100% rename from trustgraph-core/trustgraph/retrieval/graph_rag/rag.py rename to trustgraph-flow/trustgraph/retrieval/graph_rag/rag.py diff --git a/trustgraph-core/trustgraph/query/graph_embeddings/__init__.py b/trustgraph-flow/trustgraph/storage/__init__.py similarity index 100% rename from trustgraph-core/trustgraph/query/graph_embeddings/__init__.py rename to trustgraph-flow/trustgraph/storage/__init__.py diff --git a/trustgraph-core/trustgraph/query/triples/__init__.py b/trustgraph-flow/trustgraph/storage/doc_embeddings/__init__.py similarity index 100% rename from trustgraph-core/trustgraph/query/triples/__init__.py rename to trustgraph-flow/trustgraph/storage/doc_embeddings/__init__.py diff --git a/trustgraph-core/trustgraph/storage/doc_embeddings/milvus/__init__.py b/trustgraph-flow/trustgraph/storage/doc_embeddings/milvus/__init__.py similarity index 100% rename from trustgraph-core/trustgraph/storage/doc_embeddings/milvus/__init__.py rename to trustgraph-flow/trustgraph/storage/doc_embeddings/milvus/__init__.py diff --git a/trustgraph-core/trustgraph/dump/graph_embeddings/parquet/__main__.py b/trustgraph-flow/trustgraph/storage/doc_embeddings/milvus/__main__.py similarity index 100% rename from trustgraph-core/trustgraph/dump/graph_embeddings/parquet/__main__.py rename to trustgraph-flow/trustgraph/storage/doc_embeddings/milvus/__main__.py diff --git a/trustgraph-core/trustgraph/storage/doc_embeddings/milvus/write.py b/trustgraph-flow/trustgraph/storage/doc_embeddings/milvus/write.py similarity index 100% rename from trustgraph-core/trustgraph/storage/doc_embeddings/milvus/write.py rename to trustgraph-flow/trustgraph/storage/doc_embeddings/milvus/write.py diff --git a/trustgraph-core/trustgraph/storage/doc_embeddings/qdrant/__init__.py b/trustgraph-flow/trustgraph/storage/doc_embeddings/qdrant/__init__.py similarity index 100% rename from trustgraph-core/trustgraph/storage/doc_embeddings/qdrant/__init__.py rename to trustgraph-flow/trustgraph/storage/doc_embeddings/qdrant/__init__.py diff --git a/trustgraph-core/trustgraph/dump/triples/parquet/__main__.py b/trustgraph-flow/trustgraph/storage/doc_embeddings/qdrant/__main__.py old mode 100755 new mode 100644 similarity index 100% rename from trustgraph-core/trustgraph/dump/triples/parquet/__main__.py rename to trustgraph-flow/trustgraph/storage/doc_embeddings/qdrant/__main__.py diff --git a/trustgraph-core/trustgraph/storage/doc_embeddings/qdrant/write.py b/trustgraph-flow/trustgraph/storage/doc_embeddings/qdrant/write.py similarity index 100% rename from trustgraph-core/trustgraph/storage/doc_embeddings/qdrant/write.py rename to trustgraph-flow/trustgraph/storage/doc_embeddings/qdrant/write.py diff --git a/trustgraph-core/trustgraph/retrieval/__init__.py b/trustgraph-flow/trustgraph/storage/graph_embeddings/__init__.py similarity index 100% rename from trustgraph-core/trustgraph/retrieval/__init__.py rename to trustgraph-flow/trustgraph/storage/graph_embeddings/__init__.py diff --git a/trustgraph-core/trustgraph/storage/graph_embeddings/milvus/__init__.py b/trustgraph-flow/trustgraph/storage/graph_embeddings/milvus/__init__.py similarity index 100% rename from trustgraph-core/trustgraph/storage/graph_embeddings/milvus/__init__.py rename to trustgraph-flow/trustgraph/storage/graph_embeddings/milvus/__init__.py diff --git a/trustgraph-core/trustgraph/storage/doc_embeddings/milvus/__main__.py b/trustgraph-flow/trustgraph/storage/graph_embeddings/milvus/__main__.py similarity index 100% rename from trustgraph-core/trustgraph/storage/doc_embeddings/milvus/__main__.py rename to trustgraph-flow/trustgraph/storage/graph_embeddings/milvus/__main__.py diff --git a/trustgraph-core/trustgraph/storage/graph_embeddings/milvus/write.py b/trustgraph-flow/trustgraph/storage/graph_embeddings/milvus/write.py similarity index 100% rename from trustgraph-core/trustgraph/storage/graph_embeddings/milvus/write.py rename to trustgraph-flow/trustgraph/storage/graph_embeddings/milvus/write.py diff --git a/trustgraph-core/trustgraph/storage/graph_embeddings/qdrant/__init__.py b/trustgraph-flow/trustgraph/storage/graph_embeddings/qdrant/__init__.py similarity index 100% rename from trustgraph-core/trustgraph/storage/graph_embeddings/qdrant/__init__.py rename to trustgraph-flow/trustgraph/storage/graph_embeddings/qdrant/__init__.py diff --git a/trustgraph-core/trustgraph/storage/doc_embeddings/qdrant/__main__.py b/trustgraph-flow/trustgraph/storage/graph_embeddings/qdrant/__main__.py old mode 100644 new mode 100755 similarity index 100% rename from trustgraph-core/trustgraph/storage/doc_embeddings/qdrant/__main__.py rename to trustgraph-flow/trustgraph/storage/graph_embeddings/qdrant/__main__.py diff --git a/trustgraph-core/trustgraph/storage/graph_embeddings/qdrant/write.py b/trustgraph-flow/trustgraph/storage/graph_embeddings/qdrant/write.py similarity index 100% rename from trustgraph-core/trustgraph/storage/graph_embeddings/qdrant/write.py rename to trustgraph-flow/trustgraph/storage/graph_embeddings/qdrant/write.py diff --git a/trustgraph-core/trustgraph/storage/__init__.py b/trustgraph-flow/trustgraph/storage/object_embeddings/__init__.py similarity index 100% rename from trustgraph-core/trustgraph/storage/__init__.py rename to trustgraph-flow/trustgraph/storage/object_embeddings/__init__.py diff --git a/trustgraph-core/trustgraph/storage/object_embeddings/milvus/__init__.py b/trustgraph-flow/trustgraph/storage/object_embeddings/milvus/__init__.py similarity index 100% rename from trustgraph-core/trustgraph/storage/object_embeddings/milvus/__init__.py rename to trustgraph-flow/trustgraph/storage/object_embeddings/milvus/__init__.py diff --git a/trustgraph-core/trustgraph/storage/graph_embeddings/milvus/__main__.py b/trustgraph-flow/trustgraph/storage/object_embeddings/milvus/__main__.py similarity index 100% rename from trustgraph-core/trustgraph/storage/graph_embeddings/milvus/__main__.py rename to trustgraph-flow/trustgraph/storage/object_embeddings/milvus/__main__.py diff --git a/trustgraph-core/trustgraph/storage/object_embeddings/milvus/write.py b/trustgraph-flow/trustgraph/storage/object_embeddings/milvus/write.py similarity index 100% rename from trustgraph-core/trustgraph/storage/object_embeddings/milvus/write.py rename to trustgraph-flow/trustgraph/storage/object_embeddings/milvus/write.py diff --git a/trustgraph-core/trustgraph/storage/doc_embeddings/__init__.py b/trustgraph-flow/trustgraph/storage/rows/__init__.py similarity index 100% rename from trustgraph-core/trustgraph/storage/doc_embeddings/__init__.py rename to trustgraph-flow/trustgraph/storage/rows/__init__.py diff --git a/trustgraph-core/trustgraph/storage/rows/cassandra/__init__.py b/trustgraph-flow/trustgraph/storage/rows/cassandra/__init__.py similarity index 100% rename from trustgraph-core/trustgraph/storage/rows/cassandra/__init__.py rename to trustgraph-flow/trustgraph/storage/rows/cassandra/__init__.py diff --git a/trustgraph-core/trustgraph/storage/graph_embeddings/qdrant/__main__.py b/trustgraph-flow/trustgraph/storage/rows/cassandra/__main__.py similarity index 100% rename from trustgraph-core/trustgraph/storage/graph_embeddings/qdrant/__main__.py rename to trustgraph-flow/trustgraph/storage/rows/cassandra/__main__.py diff --git a/trustgraph-core/trustgraph/storage/rows/cassandra/write.py b/trustgraph-flow/trustgraph/storage/rows/cassandra/write.py similarity index 100% rename from trustgraph-core/trustgraph/storage/rows/cassandra/write.py rename to trustgraph-flow/trustgraph/storage/rows/cassandra/write.py diff --git a/trustgraph-core/trustgraph/storage/graph_embeddings/__init__.py b/trustgraph-flow/trustgraph/storage/triples/__init__.py similarity index 100% rename from trustgraph-core/trustgraph/storage/graph_embeddings/__init__.py rename to trustgraph-flow/trustgraph/storage/triples/__init__.py diff --git a/trustgraph-core/trustgraph/storage/triples/cassandra/__init__.py b/trustgraph-flow/trustgraph/storage/triples/cassandra/__init__.py similarity index 100% rename from trustgraph-core/trustgraph/storage/triples/cassandra/__init__.py rename to trustgraph-flow/trustgraph/storage/triples/cassandra/__init__.py diff --git a/trustgraph-core/trustgraph/storage/object_embeddings/milvus/__main__.py b/trustgraph-flow/trustgraph/storage/triples/cassandra/__main__.py similarity index 100% rename from trustgraph-core/trustgraph/storage/object_embeddings/milvus/__main__.py rename to trustgraph-flow/trustgraph/storage/triples/cassandra/__main__.py diff --git a/trustgraph-core/trustgraph/storage/triples/cassandra/write.py b/trustgraph-flow/trustgraph/storage/triples/cassandra/write.py similarity index 100% rename from trustgraph-core/trustgraph/storage/triples/cassandra/write.py rename to trustgraph-flow/trustgraph/storage/triples/cassandra/write.py diff --git a/trustgraph-core/trustgraph/storage/triples/neo4j/__init__.py b/trustgraph-flow/trustgraph/storage/triples/neo4j/__init__.py similarity index 100% rename from trustgraph-core/trustgraph/storage/triples/neo4j/__init__.py rename to trustgraph-flow/trustgraph/storage/triples/neo4j/__init__.py diff --git a/trustgraph-core/trustgraph/storage/rows/cassandra/__main__.py b/trustgraph-flow/trustgraph/storage/triples/neo4j/__main__.py similarity index 100% rename from trustgraph-core/trustgraph/storage/rows/cassandra/__main__.py rename to trustgraph-flow/trustgraph/storage/triples/neo4j/__main__.py diff --git a/trustgraph-core/trustgraph/storage/triples/neo4j/write.py b/trustgraph-flow/trustgraph/storage/triples/neo4j/write.py similarity index 100% rename from trustgraph-core/trustgraph/storage/triples/neo4j/write.py rename to trustgraph-flow/trustgraph/storage/triples/neo4j/write.py diff --git a/trustgraph-core/scripts/concat-parquet b/trustgraph-parquet/scripts/concat-parquet similarity index 100% rename from trustgraph-core/scripts/concat-parquet rename to trustgraph-parquet/scripts/concat-parquet diff --git a/trustgraph-core/scripts/dump-parquet b/trustgraph-parquet/scripts/dump-parquet similarity index 100% rename from trustgraph-core/scripts/dump-parquet rename to trustgraph-parquet/scripts/dump-parquet diff --git a/trustgraph-core/scripts/ge-dump-parquet b/trustgraph-parquet/scripts/ge-dump-parquet similarity index 100% rename from trustgraph-core/scripts/ge-dump-parquet rename to trustgraph-parquet/scripts/ge-dump-parquet diff --git a/trustgraph-core/scripts/load-graph-embeddings b/trustgraph-parquet/scripts/load-graph-embeddings similarity index 100% rename from trustgraph-core/scripts/load-graph-embeddings rename to trustgraph-parquet/scripts/load-graph-embeddings diff --git a/trustgraph-core/scripts/load-triples b/trustgraph-parquet/scripts/load-triples similarity index 100% rename from trustgraph-core/scripts/load-triples rename to trustgraph-parquet/scripts/load-triples diff --git a/trustgraph-core/scripts/triples-dump-parquet b/trustgraph-parquet/scripts/triples-dump-parquet similarity index 100% rename from trustgraph-core/scripts/triples-dump-parquet rename to trustgraph-parquet/scripts/triples-dump-parquet diff --git a/trustgraph-parquet/setup.py b/trustgraph-parquet/setup.py new file mode 100644 index 00000000..6da7d916 --- /dev/null +++ b/trustgraph-parquet/setup.py @@ -0,0 +1,48 @@ +import setuptools +import os +import importlib + +with open("README.md", "r") as fh: + long_description = fh.read() + +# Load a version number module +spec = importlib.util.spec_from_file_location( + 'version', 'trustgraph/parquet_version.py' +) +version_module = importlib.util.module_from_spec(spec) +spec.loader.exec_module(version_module) + +version = version_module.__version__ + +setuptools.setup( + name="trustgraph-parquet", + version=version, + author="trustgraph.ai", + author_email="security@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/trustgraph", + packages=setuptools.find_namespace_packages( + where='./', + ), + classifiers=[ + "Programming Language :: Python :: 3", + "License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)", + "Operating System :: OS Independent", + ], + python_requires='>=3.8', + download_url = "https://github.com/trustgraph-ai/trustgraph/archive/refs/tags/v" + version + ".tar.gz", + install_requires=[ + "trustgraph-base", + "pulsar-client", + "prometheus-client", + "pyarrow", + ], + scripts=[ + "scripts/concat-parquet", + "scripts/dump-parquet", + "scripts/ge-dump-parquet", + "scripts/triples-dump-parquet", + ] +) diff --git a/trustgraph-core/trustgraph/storage/object_embeddings/__init__.py b/trustgraph-parquet/trustgraph/dump/__init__.py similarity index 100% rename from trustgraph-core/trustgraph/storage/object_embeddings/__init__.py rename to trustgraph-parquet/trustgraph/dump/__init__.py diff --git a/trustgraph-core/trustgraph/storage/rows/__init__.py b/trustgraph-parquet/trustgraph/dump/graph_embeddings/__init__.py similarity index 100% rename from trustgraph-core/trustgraph/storage/rows/__init__.py rename to trustgraph-parquet/trustgraph/dump/graph_embeddings/__init__.py diff --git a/trustgraph-core/trustgraph/dump/triples/parquet/__init__.py b/trustgraph-parquet/trustgraph/dump/graph_embeddings/parquet/__init__.py similarity index 100% rename from trustgraph-core/trustgraph/dump/triples/parquet/__init__.py rename to trustgraph-parquet/trustgraph/dump/graph_embeddings/parquet/__init__.py diff --git a/trustgraph-core/trustgraph/storage/triples/cassandra/__main__.py b/trustgraph-parquet/trustgraph/dump/graph_embeddings/parquet/__main__.py similarity index 100% rename from trustgraph-core/trustgraph/storage/triples/cassandra/__main__.py rename to trustgraph-parquet/trustgraph/dump/graph_embeddings/parquet/__main__.py diff --git a/trustgraph-core/trustgraph/dump/graph_embeddings/parquet/processor.py b/trustgraph-parquet/trustgraph/dump/graph_embeddings/parquet/processor.py similarity index 100% rename from trustgraph-core/trustgraph/dump/graph_embeddings/parquet/processor.py rename to trustgraph-parquet/trustgraph/dump/graph_embeddings/parquet/processor.py diff --git a/trustgraph-core/trustgraph/dump/graph_embeddings/parquet/writer.py b/trustgraph-parquet/trustgraph/dump/graph_embeddings/parquet/writer.py similarity index 100% rename from trustgraph-core/trustgraph/dump/graph_embeddings/parquet/writer.py rename to trustgraph-parquet/trustgraph/dump/graph_embeddings/parquet/writer.py diff --git a/trustgraph-core/trustgraph/storage/triples/__init__.py b/trustgraph-parquet/trustgraph/dump/triples/__init__.py similarity index 100% rename from trustgraph-core/trustgraph/storage/triples/__init__.py rename to trustgraph-parquet/trustgraph/dump/triples/__init__.py diff --git a/trustgraph-core/trustgraph/embeddings/ollama/__init__.py b/trustgraph-parquet/trustgraph/dump/triples/parquet/__init__.py similarity index 100% rename from trustgraph-core/trustgraph/embeddings/ollama/__init__.py rename to trustgraph-parquet/trustgraph/dump/triples/parquet/__init__.py diff --git a/trustgraph-core/trustgraph/storage/triples/neo4j/__main__.py b/trustgraph-parquet/trustgraph/dump/triples/parquet/__main__.py similarity index 100% rename from trustgraph-core/trustgraph/storage/triples/neo4j/__main__.py rename to trustgraph-parquet/trustgraph/dump/triples/parquet/__main__.py diff --git a/trustgraph-core/trustgraph/dump/triples/parquet/processor.py b/trustgraph-parquet/trustgraph/dump/triples/parquet/processor.py similarity index 100% rename from trustgraph-core/trustgraph/dump/triples/parquet/processor.py rename to trustgraph-parquet/trustgraph/dump/triples/parquet/processor.py diff --git a/trustgraph-core/trustgraph/dump/triples/parquet/writer.py b/trustgraph-parquet/trustgraph/dump/triples/parquet/writer.py similarity index 100% rename from trustgraph-core/trustgraph/dump/triples/parquet/writer.py rename to trustgraph-parquet/trustgraph/dump/triples/parquet/writer.py diff --git a/trustgraph-core/scripts/graph-show b/trustgraph-utils/scripts/graph-show similarity index 100% rename from trustgraph-core/scripts/graph-show rename to trustgraph-utils/scripts/graph-show diff --git a/trustgraph-core/scripts/graph-to-turtle b/trustgraph-utils/scripts/graph-to-turtle similarity index 100% rename from trustgraph-core/scripts/graph-to-turtle rename to trustgraph-utils/scripts/graph-to-turtle diff --git a/trustgraph-core/scripts/init-pulsar-manager b/trustgraph-utils/scripts/init-pulsar-manager similarity index 100% rename from trustgraph-core/scripts/init-pulsar-manager rename to trustgraph-utils/scripts/init-pulsar-manager diff --git a/trustgraph-core/scripts/load-pdf b/trustgraph-utils/scripts/load-pdf similarity index 100% rename from trustgraph-core/scripts/load-pdf rename to trustgraph-utils/scripts/load-pdf diff --git a/trustgraph-core/scripts/load-text b/trustgraph-utils/scripts/load-text similarity index 100% rename from trustgraph-core/scripts/load-text rename to trustgraph-utils/scripts/load-text diff --git a/trustgraph-core/scripts/query-document-rag b/trustgraph-utils/scripts/query-document-rag similarity index 100% rename from trustgraph-core/scripts/query-document-rag rename to trustgraph-utils/scripts/query-document-rag diff --git a/trustgraph-core/scripts/query-graph-rag b/trustgraph-utils/scripts/query-graph-rag similarity index 100% rename from trustgraph-core/scripts/query-graph-rag rename to trustgraph-utils/scripts/query-graph-rag diff --git a/trustgraph-core/scripts/tg-init-pulsar b/trustgraph-utils/scripts/tg-init-pulsar similarity index 100% rename from trustgraph-core/scripts/tg-init-pulsar rename to trustgraph-utils/scripts/tg-init-pulsar diff --git a/trustgraph-core/scripts/tg-processor-state b/trustgraph-utils/scripts/tg-processor-state similarity index 100% rename from trustgraph-core/scripts/tg-processor-state rename to trustgraph-utils/scripts/tg-processor-state diff --git a/trustgraph-utils/setup.py b/trustgraph-utils/setup.py new file mode 100644 index 00000000..f3337f1e --- /dev/null +++ b/trustgraph-utils/setup.py @@ -0,0 +1,53 @@ +import setuptools +import os +import importlib + +with open("README.md", "r") as fh: + long_description = fh.read() + +# Load a version number module +spec = importlib.util.spec_from_file_location( + 'version', 'trustgraph/utils_version.py' +) +version_module = importlib.util.module_from_spec(spec) +spec.loader.exec_module(version_module) + +version = version_module.__version__ + +setuptools.setup( + name="trustgraph-utils", + version=version, + author="trustgraph.ai", + author_email="security@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/trustgraph", + packages=setuptools.find_namespace_packages( + where='./', + ), + classifiers=[ + "Programming Language :: Python :: 3", + "License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)", + "Operating System :: OS Independent", + ], + python_requires='>=3.8', + download_url = "https://github.com/trustgraph-ai/trustgraph/archive/refs/tags/v" + version + ".tar.gz", + install_requires=[ + "trustgraph-base", + "requests", + "pulsar-client", + "tabulate", + ], + scripts=[ + "scripts/graph-show", + "scripts/graph-to-turtle", + "scripts/init-pulsar-manager", + "scripts/load-pdf", + "scripts/load-text", + "scripts/query-document-rag", + "scripts/query-graph-rag", + "scripts/tg-init-pulsar", + "scripts/tg-processor-state", + ] +) diff --git a/trustgraph-core/scripts/text-completion-vertexai b/trustgraph-vertexai/scripts/text-completion-vertexai similarity index 100% rename from trustgraph-core/scripts/text-completion-vertexai rename to trustgraph-vertexai/scripts/text-completion-vertexai diff --git a/trustgraph-vertexai/setup.py b/trustgraph-vertexai/setup.py new file mode 100644 index 00000000..73c03b20 --- /dev/null +++ b/trustgraph-vertexai/setup.py @@ -0,0 +1,45 @@ +import setuptools +import os +import importlib + +with open("README.md", "r") as fh: + long_description = fh.read() + +# Load a version number module +spec = importlib.util.spec_from_file_location( + 'version', 'trustgraph/vertexai_version.py' +) +version_module = importlib.util.module_from_spec(spec) +spec.loader.exec_module(version_module) + +version = version_module.__version__ + +setuptools.setup( + name="trustgraph-vertexai", + version=version, + author="trustgraph.ai", + author_email="security@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/trustgraph", + packages=setuptools.find_namespace_packages( + where='./', + ), + classifiers=[ + "Programming Language :: Python :: 3", + "License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)", + "Operating System :: OS Independent", + ], + python_requires='>=3.8', + download_url = "https://github.com/trustgraph-ai/trustgraph/archive/refs/tags/v" + version + ".tar.gz", + install_requires=[ + "trustgraph-base", + "pulsar-client", + "google-cloud-aiplatform", + "prometheus-client", + ], + scripts=[ + "scripts/text-completion-vertexai", + ] +) diff --git a/trustgraph-core/trustgraph/model/text_completion/vertexai/__init__.py b/trustgraph-vertexai/trustgraph/model/text-completion/vertexai/__init__.py similarity index 100% rename from trustgraph-core/trustgraph/model/text_completion/vertexai/__init__.py rename to trustgraph-vertexai/trustgraph/model/text-completion/vertexai/__init__.py diff --git a/trustgraph-core/trustgraph/model/text_completion/vertexai/__main__.py b/trustgraph-vertexai/trustgraph/model/text-completion/vertexai/__main__.py similarity index 100% rename from trustgraph-core/trustgraph/model/text_completion/vertexai/__main__.py rename to trustgraph-vertexai/trustgraph/model/text-completion/vertexai/__main__.py diff --git a/trustgraph-core/trustgraph/model/text_completion/vertexai/llm.py b/trustgraph-vertexai/trustgraph/model/text-completion/vertexai/llm.py similarity index 100% rename from trustgraph-core/trustgraph/model/text_completion/vertexai/llm.py rename to trustgraph-vertexai/trustgraph/model/text-completion/vertexai/llm.py