diff --git a/.gitignore b/.gitignore index 1377a864..357ecf1e 100644 --- a/.gitignore +++ b/.gitignore @@ -11,5 +11,5 @@ trustgraph-embeddings-hf/trustgraph/embeddings_hf_version.py trustgraph-flow/trustgraph/flow_version.py trustgraph-parquet/trustgraph/parquet_version.py trustgraph-vertexai/trustgraph/vertexai_version.py -trustgraph-utils/trustgraph/ +trustgraph-cli/trustgraph/ vertexai/ \ No newline at end of file diff --git a/Containerfile b/Containerfile index 05bfe087..e8daa861 100644 --- a/Containerfile +++ b/Containerfile @@ -34,7 +34,7 @@ COPY trustgraph-vertexai/ /root/build/trustgraph-vertexai/ COPY trustgraph-bedrock/ /root/build/trustgraph-bedrock/ COPY trustgraph-parquet/ /root/build/trustgraph-parquet/ COPY trustgraph-embeddings-hf/ /root/build/trustgraph-embeddings-hf/ -COPY trustgraph-utils/ /root/build/trustgraph-utils/ +COPY trustgraph-cli/ /root/build/trustgraph-cli/ WORKDIR /root/build/ @@ -44,7 +44,7 @@ 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 pip3 wheel -w /root/wheels/ --no-deps ./trustgraph-cli/ RUN ls /root/wheels @@ -63,7 +63,7 @@ RUN \ 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 install /root/wheels/trustgraph_cli-* && \ pip3 cache purge && \ rm -rf /root/wheels diff --git a/Makefile b/Makefile index 2d450130..65db5817 100644 --- a/Makefile +++ b/Makefile @@ -1,6 +1,6 @@ # VERSION=$(shell git describe | sed 's/^v//') -VERSION=0.11.12 +VERSION=0.11.13 DOCKER=podman @@ -14,7 +14,7 @@ wheels: 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/ + pip3 wheel --no-deps --wheel-dir dist trustgraph-cli/ packages: rm -rf dist/ @@ -24,7 +24,7 @@ packages: cd trustgraph-bedrock && python3 setup.py sdist --dist-dir ../dist/ cd trustgraph-parquet && python3 setup.py sdist --dist-dir ../dist/ cd trustgraph-embeddings-hf && python3 setup.py sdist --dist-dir ../dist/ - cd trustgraph-utils && python3 setup.py sdist --dist-dir ../dist/ + cd trustgraph-cli && python3 setup.py sdist --dist-dir ../dist/ pypi-upload: twine upload dist/*-${VERSION}.* @@ -32,14 +32,14 @@ pypi-upload: CONTAINER=docker.io/trustgraph/trustgraph-flow update-package-versions: - mkdir -p trustgraph-utils/trustgraph + mkdir -p trustgraph-cli/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 + echo __version__ = \"${VERSION}\" > trustgraph-cli/trustgraph/cli_version.py container: update-package-versions ${DOCKER} build -f Containerfile -t ${CONTAINER}:${VERSION} \ diff --git a/tg-launch-azure-cassandra.yaml b/tg-launch-azure-cassandra.yaml index f229e411..29a660c4 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.12 + image: docker.io/trustgraph/trustgraph-flow:0.11.13 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.12 + image: docker.io/trustgraph/trustgraph-flow:0.11.13 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.12 + image: docker.io/trustgraph/trustgraph-flow:0.11.13 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.12 + image: docker.io/trustgraph/trustgraph-flow:0.11.13 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.12 + image: docker.io/trustgraph/trustgraph-flow:0.11.13 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.12 + image: docker.io/trustgraph/trustgraph-flow:0.11.13 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.12 + image: docker.io/trustgraph/trustgraph-flow:0.11.13 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.12 + image: docker.io/trustgraph/trustgraph-flow:0.11.13 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.12 + image: docker.io/trustgraph/trustgraph-flow:0.11.13 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.12 + image: docker.io/trustgraph/trustgraph-flow:0.11.13 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.12 + image: docker.io/trustgraph/trustgraph-flow:0.11.13 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.12 + image: docker.io/trustgraph/trustgraph-flow:0.11.13 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.12 + image: docker.io/trustgraph/trustgraph-flow:0.11.13 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.12 + image: docker.io/trustgraph/trustgraph-flow:0.11.13 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.12 + image: docker.io/trustgraph/trustgraph-flow:0.11.13 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.12 + image: docker.io/trustgraph/trustgraph-flow:0.11.13 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.12 + image: docker.io/trustgraph/trustgraph-flow:0.11.13 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.12 + image: docker.io/trustgraph/trustgraph-flow:0.11.13 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.12 + image: docker.io/trustgraph/trustgraph-flow:0.11.13 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.12 + image: docker.io/trustgraph/trustgraph-flow:0.11.13 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.12 + image: docker.io/trustgraph/trustgraph-flow:0.11.13 restart: on-failure:100 volumes: cassandra: {} diff --git a/tg-launch-azure-neo4j.yaml b/tg-launch-azure-neo4j.yaml index b18f81a2..8cc2a3e0 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.12 + image: docker.io/trustgraph/trustgraph-flow:0.11.13 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.12 + image: docker.io/trustgraph/trustgraph-flow:0.11.13 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.12 + image: docker.io/trustgraph/trustgraph-flow:0.11.13 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.12 + image: docker.io/trustgraph/trustgraph-flow:0.11.13 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.12 + image: docker.io/trustgraph/trustgraph-flow:0.11.13 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.12 + image: docker.io/trustgraph/trustgraph-flow:0.11.13 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.12 + image: docker.io/trustgraph/trustgraph-flow:0.11.13 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.12 + image: docker.io/trustgraph/trustgraph-flow:0.11.13 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.12 + image: docker.io/trustgraph/trustgraph-flow:0.11.13 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.12 + image: docker.io/trustgraph/trustgraph-flow:0.11.13 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.12 + image: docker.io/trustgraph/trustgraph-flow:0.11.13 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.12 + image: docker.io/trustgraph/trustgraph-flow:0.11.13 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.12 + image: docker.io/trustgraph/trustgraph-flow:0.11.13 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.12 + image: docker.io/trustgraph/trustgraph-flow:0.11.13 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.12 + image: docker.io/trustgraph/trustgraph-flow:0.11.13 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.12 + image: docker.io/trustgraph/trustgraph-flow:0.11.13 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.12 + image: docker.io/trustgraph/trustgraph-flow:0.11.13 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.12 + image: docker.io/trustgraph/trustgraph-flow:0.11.13 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.12 + image: docker.io/trustgraph/trustgraph-flow:0.11.13 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.12 + image: docker.io/trustgraph/trustgraph-flow:0.11.13 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.12 + image: docker.io/trustgraph/trustgraph-flow:0.11.13 restart: on-failure:100 volumes: grafana-storage: {} diff --git a/tg-launch-bedrock-cassandra.yaml b/tg-launch-bedrock-cassandra.yaml index 5f393d9e..fa720e28 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.12 + image: docker.io/trustgraph/trustgraph-flow:0.11.13 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.12 + image: docker.io/trustgraph/trustgraph-flow:0.11.13 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.12 + image: docker.io/trustgraph/trustgraph-flow:0.11.13 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.12 + image: docker.io/trustgraph/trustgraph-flow:0.11.13 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.12 + image: docker.io/trustgraph/trustgraph-flow:0.11.13 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.12 + image: docker.io/trustgraph/trustgraph-flow:0.11.13 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.12 + image: docker.io/trustgraph/trustgraph-flow:0.11.13 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.12 + image: docker.io/trustgraph/trustgraph-flow:0.11.13 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.12 + image: docker.io/trustgraph/trustgraph-flow:0.11.13 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.12 + image: docker.io/trustgraph/trustgraph-flow:0.11.13 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.12 + image: docker.io/trustgraph/trustgraph-flow:0.11.13 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.12 + image: docker.io/trustgraph/trustgraph-flow:0.11.13 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.12 + image: docker.io/trustgraph/trustgraph-flow:0.11.13 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.12 + image: docker.io/trustgraph/trustgraph-flow:0.11.13 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.12 + image: docker.io/trustgraph/trustgraph-flow:0.11.13 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.12 + image: docker.io/trustgraph/trustgraph-flow:0.11.13 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.12 + image: docker.io/trustgraph/trustgraph-flow:0.11.13 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.12 + image: docker.io/trustgraph/trustgraph-flow:0.11.13 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.12 + image: docker.io/trustgraph/trustgraph-flow:0.11.13 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.12 + image: docker.io/trustgraph/trustgraph-flow:0.11.13 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.12 + image: docker.io/trustgraph/trustgraph-flow:0.11.13 restart: on-failure:100 volumes: cassandra: {} diff --git a/tg-launch-bedrock-neo4j.yaml b/tg-launch-bedrock-neo4j.yaml index acf1705b..f89c1b71 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.12 + image: docker.io/trustgraph/trustgraph-flow:0.11.13 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.12 + image: docker.io/trustgraph/trustgraph-flow:0.11.13 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.12 + image: docker.io/trustgraph/trustgraph-flow:0.11.13 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.12 + image: docker.io/trustgraph/trustgraph-flow:0.11.13 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.12 + image: docker.io/trustgraph/trustgraph-flow:0.11.13 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.12 + image: docker.io/trustgraph/trustgraph-flow:0.11.13 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.12 + image: docker.io/trustgraph/trustgraph-flow:0.11.13 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.12 + image: docker.io/trustgraph/trustgraph-flow:0.11.13 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.12 + image: docker.io/trustgraph/trustgraph-flow:0.11.13 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.12 + image: docker.io/trustgraph/trustgraph-flow:0.11.13 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.12 + image: docker.io/trustgraph/trustgraph-flow:0.11.13 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.12 + image: docker.io/trustgraph/trustgraph-flow:0.11.13 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.12 + image: docker.io/trustgraph/trustgraph-flow:0.11.13 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.12 + image: docker.io/trustgraph/trustgraph-flow:0.11.13 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.12 + image: docker.io/trustgraph/trustgraph-flow:0.11.13 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.12 + image: docker.io/trustgraph/trustgraph-flow:0.11.13 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.12 + image: docker.io/trustgraph/trustgraph-flow:0.11.13 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.12 + image: docker.io/trustgraph/trustgraph-flow:0.11.13 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.12 + image: docker.io/trustgraph/trustgraph-flow:0.11.13 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.12 + image: docker.io/trustgraph/trustgraph-flow:0.11.13 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.12 + image: docker.io/trustgraph/trustgraph-flow:0.11.13 restart: on-failure:100 volumes: grafana-storage: {} diff --git a/tg-launch-claude-cassandra.yaml b/tg-launch-claude-cassandra.yaml index fc3d5ce0..4a82e844 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.12 + image: docker.io/trustgraph/trustgraph-flow:0.11.13 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.12 + image: docker.io/trustgraph/trustgraph-flow:0.11.13 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.12 + image: docker.io/trustgraph/trustgraph-flow:0.11.13 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.12 + image: docker.io/trustgraph/trustgraph-flow:0.11.13 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.12 + image: docker.io/trustgraph/trustgraph-flow:0.11.13 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.12 + image: docker.io/trustgraph/trustgraph-flow:0.11.13 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.12 + image: docker.io/trustgraph/trustgraph-flow:0.11.13 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.12 + image: docker.io/trustgraph/trustgraph-flow:0.11.13 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.12 + image: docker.io/trustgraph/trustgraph-flow:0.11.13 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.12 + image: docker.io/trustgraph/trustgraph-flow:0.11.13 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.12 + image: docker.io/trustgraph/trustgraph-flow:0.11.13 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.12 + image: docker.io/trustgraph/trustgraph-flow:0.11.13 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.12 + image: docker.io/trustgraph/trustgraph-flow:0.11.13 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.12 + image: docker.io/trustgraph/trustgraph-flow:0.11.13 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.12 + image: docker.io/trustgraph/trustgraph-flow:0.11.13 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.12 + image: docker.io/trustgraph/trustgraph-flow:0.11.13 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.12 + image: docker.io/trustgraph/trustgraph-flow:0.11.13 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.12 + image: docker.io/trustgraph/trustgraph-flow:0.11.13 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.12 + image: docker.io/trustgraph/trustgraph-flow:0.11.13 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.12 + image: docker.io/trustgraph/trustgraph-flow:0.11.13 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.12 + image: docker.io/trustgraph/trustgraph-flow:0.11.13 restart: on-failure:100 volumes: cassandra: {} diff --git a/tg-launch-claude-neo4j.yaml b/tg-launch-claude-neo4j.yaml index 64b382ee..a324753c 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.12 + image: docker.io/trustgraph/trustgraph-flow:0.11.13 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.12 + image: docker.io/trustgraph/trustgraph-flow:0.11.13 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.12 + image: docker.io/trustgraph/trustgraph-flow:0.11.13 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.12 + image: docker.io/trustgraph/trustgraph-flow:0.11.13 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.12 + image: docker.io/trustgraph/trustgraph-flow:0.11.13 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.12 + image: docker.io/trustgraph/trustgraph-flow:0.11.13 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.12 + image: docker.io/trustgraph/trustgraph-flow:0.11.13 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.12 + image: docker.io/trustgraph/trustgraph-flow:0.11.13 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.12 + image: docker.io/trustgraph/trustgraph-flow:0.11.13 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.12 + image: docker.io/trustgraph/trustgraph-flow:0.11.13 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.12 + image: docker.io/trustgraph/trustgraph-flow:0.11.13 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.12 + image: docker.io/trustgraph/trustgraph-flow:0.11.13 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.12 + image: docker.io/trustgraph/trustgraph-flow:0.11.13 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.12 + image: docker.io/trustgraph/trustgraph-flow:0.11.13 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.12 + image: docker.io/trustgraph/trustgraph-flow:0.11.13 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.12 + image: docker.io/trustgraph/trustgraph-flow:0.11.13 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.12 + image: docker.io/trustgraph/trustgraph-flow:0.11.13 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.12 + image: docker.io/trustgraph/trustgraph-flow:0.11.13 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.12 + image: docker.io/trustgraph/trustgraph-flow:0.11.13 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.12 + image: docker.io/trustgraph/trustgraph-flow:0.11.13 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.12 + image: docker.io/trustgraph/trustgraph-flow:0.11.13 restart: on-failure:100 volumes: grafana-storage: {} diff --git a/tg-launch-cohere-cassandra.yaml b/tg-launch-cohere-cassandra.yaml index c8938de0..b6cfa945 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.12 + image: docker.io/trustgraph/trustgraph-flow:0.11.13 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.12 + image: docker.io/trustgraph/trustgraph-flow:0.11.13 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.12 + image: docker.io/trustgraph/trustgraph-flow:0.11.13 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.12 + image: docker.io/trustgraph/trustgraph-flow:0.11.13 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.12 + image: docker.io/trustgraph/trustgraph-flow:0.11.13 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.12 + image: docker.io/trustgraph/trustgraph-flow:0.11.13 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.12 + image: docker.io/trustgraph/trustgraph-flow:0.11.13 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.12 + image: docker.io/trustgraph/trustgraph-flow:0.11.13 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.12 + image: docker.io/trustgraph/trustgraph-flow:0.11.13 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.12 + image: docker.io/trustgraph/trustgraph-flow:0.11.13 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.12 + image: docker.io/trustgraph/trustgraph-flow:0.11.13 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.12 + image: docker.io/trustgraph/trustgraph-flow:0.11.13 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.12 + image: docker.io/trustgraph/trustgraph-flow:0.11.13 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.12 + image: docker.io/trustgraph/trustgraph-flow:0.11.13 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.12 + image: docker.io/trustgraph/trustgraph-flow:0.11.13 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.12 + image: docker.io/trustgraph/trustgraph-flow:0.11.13 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.12 + image: docker.io/trustgraph/trustgraph-flow:0.11.13 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.12 + image: docker.io/trustgraph/trustgraph-flow:0.11.13 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.12 + image: docker.io/trustgraph/trustgraph-flow:0.11.13 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.12 + image: docker.io/trustgraph/trustgraph-flow:0.11.13 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.12 + image: docker.io/trustgraph/trustgraph-flow:0.11.13 restart: on-failure:100 volumes: cassandra: {} diff --git a/tg-launch-cohere-neo4j.yaml b/tg-launch-cohere-neo4j.yaml index ecf4165d..01d0389a 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.12 + image: docker.io/trustgraph/trustgraph-flow:0.11.13 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.12 + image: docker.io/trustgraph/trustgraph-flow:0.11.13 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.12 + image: docker.io/trustgraph/trustgraph-flow:0.11.13 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.12 + image: docker.io/trustgraph/trustgraph-flow:0.11.13 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.12 + image: docker.io/trustgraph/trustgraph-flow:0.11.13 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.12 + image: docker.io/trustgraph/trustgraph-flow:0.11.13 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.12 + image: docker.io/trustgraph/trustgraph-flow:0.11.13 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.12 + image: docker.io/trustgraph/trustgraph-flow:0.11.13 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.12 + image: docker.io/trustgraph/trustgraph-flow:0.11.13 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.12 + image: docker.io/trustgraph/trustgraph-flow:0.11.13 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.12 + image: docker.io/trustgraph/trustgraph-flow:0.11.13 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.12 + image: docker.io/trustgraph/trustgraph-flow:0.11.13 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.12 + image: docker.io/trustgraph/trustgraph-flow:0.11.13 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.12 + image: docker.io/trustgraph/trustgraph-flow:0.11.13 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.12 + image: docker.io/trustgraph/trustgraph-flow:0.11.13 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.12 + image: docker.io/trustgraph/trustgraph-flow:0.11.13 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.12 + image: docker.io/trustgraph/trustgraph-flow:0.11.13 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.12 + image: docker.io/trustgraph/trustgraph-flow:0.11.13 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.12 + image: docker.io/trustgraph/trustgraph-flow:0.11.13 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.12 + image: docker.io/trustgraph/trustgraph-flow:0.11.13 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.12 + image: docker.io/trustgraph/trustgraph-flow:0.11.13 restart: on-failure:100 volumes: grafana-storage: {} diff --git a/tg-launch-llamafile-cassandra.yaml b/tg-launch-llamafile-cassandra.yaml index 8dd4b270..6de5f730 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.12 + image: docker.io/trustgraph/trustgraph-flow:0.11.13 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.12 + image: docker.io/trustgraph/trustgraph-flow:0.11.13 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.12 + image: docker.io/trustgraph/trustgraph-flow:0.11.13 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.12 + image: docker.io/trustgraph/trustgraph-flow:0.11.13 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.12 + image: docker.io/trustgraph/trustgraph-flow:0.11.13 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.12 + image: docker.io/trustgraph/trustgraph-flow:0.11.13 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.12 + image: docker.io/trustgraph/trustgraph-flow:0.11.13 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.12 + image: docker.io/trustgraph/trustgraph-flow:0.11.13 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.12 + image: docker.io/trustgraph/trustgraph-flow:0.11.13 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.12 + image: docker.io/trustgraph/trustgraph-flow:0.11.13 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.12 + image: docker.io/trustgraph/trustgraph-flow:0.11.13 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.12 + image: docker.io/trustgraph/trustgraph-flow:0.11.13 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.12 + image: docker.io/trustgraph/trustgraph-flow:0.11.13 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.12 + image: docker.io/trustgraph/trustgraph-flow:0.11.13 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.12 + image: docker.io/trustgraph/trustgraph-flow:0.11.13 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.12 + image: docker.io/trustgraph/trustgraph-flow:0.11.13 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.12 + image: docker.io/trustgraph/trustgraph-flow:0.11.13 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.12 + image: docker.io/trustgraph/trustgraph-flow:0.11.13 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.12 + image: docker.io/trustgraph/trustgraph-flow:0.11.13 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.12 + image: docker.io/trustgraph/trustgraph-flow:0.11.13 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.12 + image: docker.io/trustgraph/trustgraph-flow:0.11.13 restart: on-failure:100 volumes: cassandra: {} diff --git a/tg-launch-llamafile-neo4j.yaml b/tg-launch-llamafile-neo4j.yaml index b738d7a6..58ad8f37 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.12 + image: docker.io/trustgraph/trustgraph-flow:0.11.13 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.12 + image: docker.io/trustgraph/trustgraph-flow:0.11.13 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.12 + image: docker.io/trustgraph/trustgraph-flow:0.11.13 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.12 + image: docker.io/trustgraph/trustgraph-flow:0.11.13 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.12 + image: docker.io/trustgraph/trustgraph-flow:0.11.13 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.12 + image: docker.io/trustgraph/trustgraph-flow:0.11.13 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.12 + image: docker.io/trustgraph/trustgraph-flow:0.11.13 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.12 + image: docker.io/trustgraph/trustgraph-flow:0.11.13 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.12 + image: docker.io/trustgraph/trustgraph-flow:0.11.13 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.12 + image: docker.io/trustgraph/trustgraph-flow:0.11.13 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.12 + image: docker.io/trustgraph/trustgraph-flow:0.11.13 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.12 + image: docker.io/trustgraph/trustgraph-flow:0.11.13 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.12 + image: docker.io/trustgraph/trustgraph-flow:0.11.13 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.12 + image: docker.io/trustgraph/trustgraph-flow:0.11.13 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.12 + image: docker.io/trustgraph/trustgraph-flow:0.11.13 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.12 + image: docker.io/trustgraph/trustgraph-flow:0.11.13 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.12 + image: docker.io/trustgraph/trustgraph-flow:0.11.13 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.12 + image: docker.io/trustgraph/trustgraph-flow:0.11.13 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.12 + image: docker.io/trustgraph/trustgraph-flow:0.11.13 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.12 + image: docker.io/trustgraph/trustgraph-flow:0.11.13 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.12 + image: docker.io/trustgraph/trustgraph-flow:0.11.13 restart: on-failure:100 volumes: grafana-storage: {} diff --git a/tg-launch-ollama-cassandra.yaml b/tg-launch-ollama-cassandra.yaml index 47f800d7..4bc85649 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.12 + image: docker.io/trustgraph/trustgraph-flow:0.11.13 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.12 + image: docker.io/trustgraph/trustgraph-flow:0.11.13 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.12 + image: docker.io/trustgraph/trustgraph-flow:0.11.13 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.12 + image: docker.io/trustgraph/trustgraph-flow:0.11.13 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.12 + image: docker.io/trustgraph/trustgraph-flow:0.11.13 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.12 + image: docker.io/trustgraph/trustgraph-flow:0.11.13 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.12 + image: docker.io/trustgraph/trustgraph-flow:0.11.13 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.12 + image: docker.io/trustgraph/trustgraph-flow:0.11.13 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.12 + image: docker.io/trustgraph/trustgraph-flow:0.11.13 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.12 + image: docker.io/trustgraph/trustgraph-flow:0.11.13 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.12 + image: docker.io/trustgraph/trustgraph-flow:0.11.13 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.12 + image: docker.io/trustgraph/trustgraph-flow:0.11.13 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.12 + image: docker.io/trustgraph/trustgraph-flow:0.11.13 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.12 + image: docker.io/trustgraph/trustgraph-flow:0.11.13 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.12 + image: docker.io/trustgraph/trustgraph-flow:0.11.13 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.12 + image: docker.io/trustgraph/trustgraph-flow:0.11.13 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.12 + image: docker.io/trustgraph/trustgraph-flow:0.11.13 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.12 + image: docker.io/trustgraph/trustgraph-flow:0.11.13 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.12 + image: docker.io/trustgraph/trustgraph-flow:0.11.13 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.12 + image: docker.io/trustgraph/trustgraph-flow:0.11.13 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.12 + image: docker.io/trustgraph/trustgraph-flow:0.11.13 restart: on-failure:100 volumes: cassandra: {} diff --git a/tg-launch-ollama-neo4j.yaml b/tg-launch-ollama-neo4j.yaml index 9ad14831..f7ff1bb6 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.12 + image: docker.io/trustgraph/trustgraph-flow:0.11.13 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.12 + image: docker.io/trustgraph/trustgraph-flow:0.11.13 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.12 + image: docker.io/trustgraph/trustgraph-flow:0.11.13 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.12 + image: docker.io/trustgraph/trustgraph-flow:0.11.13 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.12 + image: docker.io/trustgraph/trustgraph-flow:0.11.13 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.12 + image: docker.io/trustgraph/trustgraph-flow:0.11.13 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.12 + image: docker.io/trustgraph/trustgraph-flow:0.11.13 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.12 + image: docker.io/trustgraph/trustgraph-flow:0.11.13 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.12 + image: docker.io/trustgraph/trustgraph-flow:0.11.13 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.12 + image: docker.io/trustgraph/trustgraph-flow:0.11.13 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.12 + image: docker.io/trustgraph/trustgraph-flow:0.11.13 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.12 + image: docker.io/trustgraph/trustgraph-flow:0.11.13 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.12 + image: docker.io/trustgraph/trustgraph-flow:0.11.13 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.12 + image: docker.io/trustgraph/trustgraph-flow:0.11.13 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.12 + image: docker.io/trustgraph/trustgraph-flow:0.11.13 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.12 + image: docker.io/trustgraph/trustgraph-flow:0.11.13 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.12 + image: docker.io/trustgraph/trustgraph-flow:0.11.13 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.12 + image: docker.io/trustgraph/trustgraph-flow:0.11.13 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.12 + image: docker.io/trustgraph/trustgraph-flow:0.11.13 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.12 + image: docker.io/trustgraph/trustgraph-flow:0.11.13 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.12 + image: docker.io/trustgraph/trustgraph-flow:0.11.13 restart: on-failure:100 volumes: grafana-storage: {} diff --git a/tg-launch-openai-cassandra.yaml b/tg-launch-openai-cassandra.yaml index 243774c5..5a277d81 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.12 + image: docker.io/trustgraph/trustgraph-flow:0.11.13 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.12 + image: docker.io/trustgraph/trustgraph-flow:0.11.13 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.12 + image: docker.io/trustgraph/trustgraph-flow:0.11.13 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.12 + image: docker.io/trustgraph/trustgraph-flow:0.11.13 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.12 + image: docker.io/trustgraph/trustgraph-flow:0.11.13 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.12 + image: docker.io/trustgraph/trustgraph-flow:0.11.13 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.12 + image: docker.io/trustgraph/trustgraph-flow:0.11.13 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.12 + image: docker.io/trustgraph/trustgraph-flow:0.11.13 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.12 + image: docker.io/trustgraph/trustgraph-flow:0.11.13 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.12 + image: docker.io/trustgraph/trustgraph-flow:0.11.13 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.12 + image: docker.io/trustgraph/trustgraph-flow:0.11.13 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.12 + image: docker.io/trustgraph/trustgraph-flow:0.11.13 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.12 + image: docker.io/trustgraph/trustgraph-flow:0.11.13 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.12 + image: docker.io/trustgraph/trustgraph-flow:0.11.13 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.12 + image: docker.io/trustgraph/trustgraph-flow:0.11.13 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.12 + image: docker.io/trustgraph/trustgraph-flow:0.11.13 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.12 + image: docker.io/trustgraph/trustgraph-flow:0.11.13 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.12 + image: docker.io/trustgraph/trustgraph-flow:0.11.13 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.12 + image: docker.io/trustgraph/trustgraph-flow:0.11.13 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.12 + image: docker.io/trustgraph/trustgraph-flow:0.11.13 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.12 + image: docker.io/trustgraph/trustgraph-flow:0.11.13 restart: on-failure:100 volumes: cassandra: {} diff --git a/tg-launch-openai-neo4j.yaml b/tg-launch-openai-neo4j.yaml index d1406a79..16597f3c 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.12 + image: docker.io/trustgraph/trustgraph-flow:0.11.13 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.12 + image: docker.io/trustgraph/trustgraph-flow:0.11.13 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.12 + image: docker.io/trustgraph/trustgraph-flow:0.11.13 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.12 + image: docker.io/trustgraph/trustgraph-flow:0.11.13 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.12 + image: docker.io/trustgraph/trustgraph-flow:0.11.13 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.12 + image: docker.io/trustgraph/trustgraph-flow:0.11.13 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.12 + image: docker.io/trustgraph/trustgraph-flow:0.11.13 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.12 + image: docker.io/trustgraph/trustgraph-flow:0.11.13 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.12 + image: docker.io/trustgraph/trustgraph-flow:0.11.13 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.12 + image: docker.io/trustgraph/trustgraph-flow:0.11.13 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.12 + image: docker.io/trustgraph/trustgraph-flow:0.11.13 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.12 + image: docker.io/trustgraph/trustgraph-flow:0.11.13 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.12 + image: docker.io/trustgraph/trustgraph-flow:0.11.13 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.12 + image: docker.io/trustgraph/trustgraph-flow:0.11.13 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.12 + image: docker.io/trustgraph/trustgraph-flow:0.11.13 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.12 + image: docker.io/trustgraph/trustgraph-flow:0.11.13 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.12 + image: docker.io/trustgraph/trustgraph-flow:0.11.13 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.12 + image: docker.io/trustgraph/trustgraph-flow:0.11.13 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.12 + image: docker.io/trustgraph/trustgraph-flow:0.11.13 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.12 + image: docker.io/trustgraph/trustgraph-flow:0.11.13 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.12 + image: docker.io/trustgraph/trustgraph-flow:0.11.13 restart: on-failure:100 volumes: grafana-storage: {} diff --git a/tg-launch-vertexai-cassandra.yaml b/tg-launch-vertexai-cassandra.yaml index 64db6742..0f65ed55 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.12 + image: docker.io/trustgraph/trustgraph-flow:0.11.13 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.12 + image: docker.io/trustgraph/trustgraph-flow:0.11.13 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.12 + image: docker.io/trustgraph/trustgraph-flow:0.11.13 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.12 + image: docker.io/trustgraph/trustgraph-flow:0.11.13 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.12 + image: docker.io/trustgraph/trustgraph-flow:0.11.13 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.12 + image: docker.io/trustgraph/trustgraph-flow:0.11.13 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.12 + image: docker.io/trustgraph/trustgraph-flow:0.11.13 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.12 + image: docker.io/trustgraph/trustgraph-flow:0.11.13 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.12 + image: docker.io/trustgraph/trustgraph-flow:0.11.13 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.12 + image: docker.io/trustgraph/trustgraph-flow:0.11.13 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.12 + image: docker.io/trustgraph/trustgraph-flow:0.11.13 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.12 + image: docker.io/trustgraph/trustgraph-flow:0.11.13 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.12 + image: docker.io/trustgraph/trustgraph-flow:0.11.13 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.12 + image: docker.io/trustgraph/trustgraph-flow:0.11.13 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.12 + image: docker.io/trustgraph/trustgraph-flow:0.11.13 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.12 + image: docker.io/trustgraph/trustgraph-flow:0.11.13 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.12 + image: docker.io/trustgraph/trustgraph-flow:0.11.13 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.12 + image: docker.io/trustgraph/trustgraph-flow:0.11.13 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.12 + image: docker.io/trustgraph/trustgraph-flow:0.11.13 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.12 + image: docker.io/trustgraph/trustgraph-flow:0.11.13 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.12 + image: docker.io/trustgraph/trustgraph-flow:0.11.13 restart: on-failure:100 volumes: cassandra: {} diff --git a/tg-launch-vertexai-neo4j.yaml b/tg-launch-vertexai-neo4j.yaml index b2b7bd3a..15fda75f 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.12 + image: docker.io/trustgraph/trustgraph-flow:0.11.13 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.12 + image: docker.io/trustgraph/trustgraph-flow:0.11.13 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.12 + image: docker.io/trustgraph/trustgraph-flow:0.11.13 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.12 + image: docker.io/trustgraph/trustgraph-flow:0.11.13 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.12 + image: docker.io/trustgraph/trustgraph-flow:0.11.13 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.12 + image: docker.io/trustgraph/trustgraph-flow:0.11.13 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.12 + image: docker.io/trustgraph/trustgraph-flow:0.11.13 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.12 + image: docker.io/trustgraph/trustgraph-flow:0.11.13 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.12 + image: docker.io/trustgraph/trustgraph-flow:0.11.13 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.12 + image: docker.io/trustgraph/trustgraph-flow:0.11.13 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.12 + image: docker.io/trustgraph/trustgraph-flow:0.11.13 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.12 + image: docker.io/trustgraph/trustgraph-flow:0.11.13 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.12 + image: docker.io/trustgraph/trustgraph-flow:0.11.13 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.12 + image: docker.io/trustgraph/trustgraph-flow:0.11.13 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.12 + image: docker.io/trustgraph/trustgraph-flow:0.11.13 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.12 + image: docker.io/trustgraph/trustgraph-flow:0.11.13 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.12 + image: docker.io/trustgraph/trustgraph-flow:0.11.13 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.12 + image: docker.io/trustgraph/trustgraph-flow:0.11.13 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.12 + image: docker.io/trustgraph/trustgraph-flow:0.11.13 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.12 + image: docker.io/trustgraph/trustgraph-flow:0.11.13 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.12 + image: docker.io/trustgraph/trustgraph-flow:0.11.13 restart: on-failure:100 volumes: grafana-storage: {} diff --git a/tg-storage-cassandra.yaml b/tg-storage-cassandra.yaml index 1834fb60..3fcb1bb5 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.12 + image: docker.io/trustgraph/trustgraph-flow:0.11.13 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.12 + image: docker.io/trustgraph/trustgraph-flow:0.11.13 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.12 + image: docker.io/trustgraph/trustgraph-flow:0.11.13 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.12 + image: docker.io/trustgraph/trustgraph-flow:0.11.13 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.12 + image: docker.io/trustgraph/trustgraph-flow:0.11.13 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.12 + image: docker.io/trustgraph/trustgraph-flow:0.11.13 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.12 + image: docker.io/trustgraph/trustgraph-flow:0.11.13 restart: on-failure:100 volumes: cassandra: {} diff --git a/tg-storage-neo4j.yaml b/tg-storage-neo4j.yaml index 7f3d7c8f..518b1c55 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.12 + image: docker.io/trustgraph/trustgraph-flow:0.11.13 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.12 + image: docker.io/trustgraph/trustgraph-flow:0.11.13 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.12 + image: docker.io/trustgraph/trustgraph-flow:0.11.13 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.12 + image: docker.io/trustgraph/trustgraph-flow:0.11.13 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.12 + image: docker.io/trustgraph/trustgraph-flow:0.11.13 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.12 + image: docker.io/trustgraph/trustgraph-flow:0.11.13 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.12 + image: docker.io/trustgraph/trustgraph-flow:0.11.13 restart: on-failure:100 volumes: grafana-storage: {} diff --git a/trustgraph-utils/README.md b/trustgraph-cli/README.md similarity index 100% rename from trustgraph-utils/README.md rename to trustgraph-cli/README.md diff --git a/trustgraph-utils/scripts/tg-graph-show b/trustgraph-cli/scripts/tg-graph-show similarity index 100% rename from trustgraph-utils/scripts/tg-graph-show rename to trustgraph-cli/scripts/tg-graph-show diff --git a/trustgraph-utils/scripts/tg-graph-to-turtle b/trustgraph-cli/scripts/tg-graph-to-turtle similarity index 100% rename from trustgraph-utils/scripts/tg-graph-to-turtle rename to trustgraph-cli/scripts/tg-graph-to-turtle diff --git a/trustgraph-utils/scripts/tg-init-pulsar b/trustgraph-cli/scripts/tg-init-pulsar similarity index 100% rename from trustgraph-utils/scripts/tg-init-pulsar rename to trustgraph-cli/scripts/tg-init-pulsar diff --git a/trustgraph-utils/scripts/tg-init-pulsar-manager b/trustgraph-cli/scripts/tg-init-pulsar-manager similarity index 100% rename from trustgraph-utils/scripts/tg-init-pulsar-manager rename to trustgraph-cli/scripts/tg-init-pulsar-manager diff --git a/trustgraph-utils/scripts/tg-load-pdf b/trustgraph-cli/scripts/tg-load-pdf similarity index 100% rename from trustgraph-utils/scripts/tg-load-pdf rename to trustgraph-cli/scripts/tg-load-pdf diff --git a/trustgraph-utils/scripts/tg-load-text b/trustgraph-cli/scripts/tg-load-text similarity index 100% rename from trustgraph-utils/scripts/tg-load-text rename to trustgraph-cli/scripts/tg-load-text diff --git a/trustgraph-utils/scripts/tg-processor-state b/trustgraph-cli/scripts/tg-processor-state similarity index 100% rename from trustgraph-utils/scripts/tg-processor-state rename to trustgraph-cli/scripts/tg-processor-state diff --git a/trustgraph-utils/scripts/tg-query-document-rag b/trustgraph-cli/scripts/tg-query-document-rag similarity index 100% rename from trustgraph-utils/scripts/tg-query-document-rag rename to trustgraph-cli/scripts/tg-query-document-rag diff --git a/trustgraph-utils/scripts/tg-query-graph-rag b/trustgraph-cli/scripts/tg-query-graph-rag similarity index 100% rename from trustgraph-utils/scripts/tg-query-graph-rag rename to trustgraph-cli/scripts/tg-query-graph-rag diff --git a/trustgraph-utils/setup.py b/trustgraph-cli/setup.py similarity index 95% rename from trustgraph-utils/setup.py rename to trustgraph-cli/setup.py index 553d8aa5..d2ba7b3b 100644 --- a/trustgraph-utils/setup.py +++ b/trustgraph-cli/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/utils_version.py' + 'version', 'trustgraph/cli_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-utils", + name="trustgraph-cli", version=version, author="trustgraph.ai", author_email="security@trustgraph.ai",