Feature/subpackages (#80)

* Renaming what will become the core package

* Tweaking to get  package build working

* Fix metering merge

* Rename to core directory

* Bump version.  Use namespace searching for packaging trustgraph-core

* Change references to trustgraph-core

* Forming embeddings-hf package

* Reference modules in core package.

* Build both packages to one container, bump version

* Update YAMLs
This commit is contained in:
cybermaggedon 2024-09-30 14:00:29 +01:00 committed by GitHub
parent 14d79ef9f1
commit f081933217
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
303 changed files with 681 additions and 624 deletions

View file

@ -21,7 +21,7 @@ RUN pip3 install anthropic boto3 cohere openai google-cloud-aiplatform ollama \
pip3 cache purge
# ----------------------------------------------------------------------------
# Build a container which contains the built Python package. The build
# Build a container which contains the built Python packages. The build
# creates a bunch of left-over cruft, a separate phase means this is only
# needed to support package build
# ----------------------------------------------------------------------------
@ -30,12 +30,18 @@ FROM ai AS build
env PACKAGE_VERSION=0.0.0
COPY setup.py /root/build/
COPY README.md /root/build/
COPY scripts/ /root/build/scripts/
COPY trustgraph/ root/build/trustgraph/
COPY trustgraph-core/ /root/build/trustgraph-core/
COPY README.md /root/build/trustgraph-core/
RUN (cd /root/build && pip3 wheel -w /root/wheels --no-deps .)
COPY trustgraph-embeddings-hf/ /root/build/trustgraph-embeddings-hf/
COPY README.md /root/build/trustgraph-embeddings-hf/
WORKDIR /root/build/
RUN pip3 wheel -w /root/wheels/ --no-deps ./trustgraph-core/
RUN pip3 wheel -w /root/wheels/ --no-deps ./trustgraph-embeddings-hf/
RUN ls /root/wheels
# ----------------------------------------------------------------------------
# Finally, the target container. Start with base and add the package.
@ -45,7 +51,9 @@ FROM ai
COPY --from=build /root/wheels /root/wheels
RUN pip3 install /root/wheels/trustgraph-* && \
RUN \
pip3 install /root/wheels/trustgraph_core-* && \
pip3 install /root/wheels/trustgraph_embeddings_hf-* && \
pip3 cache purge && \
rm -rf /root/wheels

View file

@ -1,11 +1,15 @@
# VERSION=$(shell git describe | sed 's/^v//')
VERSION=0.11.5
VERSION=0.11.6
DOCKER=podman
all: container
pkgs:
pip3 wheel --no-deps --wheel-dir dist trustgraph-core/
pip3 wheel --no-deps --wheel-dir dist trustgraph-embeddings-hf/
CONTAINER=docker.io/trustgraph/trustgraph-flow
container:

View file

@ -1,6 +0,0 @@
#!/usr/bin/env python3
from trustgraph.chunking.recursive import run
run()

View file

@ -1,6 +0,0 @@
#!/usr/bin/env python3
from trustgraph.chunking.token import run
run()

View file

@ -1,6 +0,0 @@
#!/usr/bin/env python3
from trustgraph.query.doc_embeddings.milvus import run
run()

View file

@ -1,6 +0,0 @@
#!/usr/bin/env python3
from trustgraph.query.doc_embeddings.qdrant import run
run()

View file

@ -1,6 +0,0 @@
#!/usr/bin/env python3
from trustgraph.storage.doc_embeddings.milvus import run
run()

View file

@ -1,6 +0,0 @@
#!/usr/bin/env python3
from trustgraph.storage.doc_embeddings.qdrant import run
run()

View file

@ -1,6 +0,0 @@
#!/usr/bin/env python3
from trustgraph.retrieval.document_rag import run
run()

View file

@ -1,6 +0,0 @@
#!/usr/bin/env python3
from trustgraph.embeddings.hf import run
run()

View file

@ -1,6 +0,0 @@
#!/usr/bin/env python3
from trustgraph.embeddings.ollama import run
run()

View file

@ -1,6 +0,0 @@
#!/usr/bin/env python3
from trustgraph.embeddings.vectorize import run
run()

View file

@ -1,6 +0,0 @@
#!/usr/bin/env python3
from trustgraph.dump.graph_embeddings.parquet import run
run()

View file

@ -1,6 +0,0 @@
#!/usr/bin/env python3
from trustgraph.query.graph_embeddings.milvus import run
run()

View file

@ -1,6 +0,0 @@
#!/usr/bin/env python3
from trustgraph.query.graph_embeddings.qdrant import run
run()

View file

@ -1,6 +0,0 @@
#!/usr/bin/env python3
from trustgraph.storage.graph_embeddings.milvus import run
run()

View file

@ -1,6 +0,0 @@
#!/usr/bin/env python3
from trustgraph.storage.graph_embeddings.qdrant import run
run()

View file

@ -1,6 +0,0 @@
#!/usr/bin/env python3
from trustgraph.retrieval.graph_rag import run
run()

View file

@ -1,6 +0,0 @@
#!/usr/bin/env python3
from trustgraph.extract.kg.definitions import run
run()

View file

@ -1,6 +0,0 @@
#!/usr/bin/env python3
from trustgraph.extract.kg.relationships import run
run()

View file

@ -1,6 +0,0 @@
#!/usr/bin/env python3
from trustgraph.extract.kg.topics import run
run()

View file

@ -1,5 +0,0 @@
#!/usr/bin/env python3
from trustgraph.metering import run
run()

View file

@ -1,6 +0,0 @@
#!/usr/bin/env python3
from trustgraph.extract.object.row import run
run()

View file

@ -1,6 +0,0 @@
#!/usr/bin/env python3
from trustgraph.storage.object_embeddings.milvus import run
run()

View file

@ -1,6 +0,0 @@
#!/usr/bin/env python3
from trustgraph.decoding.pdf import run
run()

View file

@ -1,6 +0,0 @@
#!/usr/bin/env python3
from trustgraph.model.prompt.generic import run
run()

View file

@ -1,6 +0,0 @@
#!/usr/bin/env python3
from trustgraph.model.prompt.template import run
run()

View file

@ -1,6 +0,0 @@
#!/usr/bin/env python3
from trustgraph.storage.rows.cassandra import run
run()

View file

@ -1,6 +0,0 @@
#!/usr/bin/env python3
from trustgraph.processing import run
run()

View file

@ -1,6 +0,0 @@
#!/usr/bin/env python3
from trustgraph.model.text_completion.azure import run
run()

View file

@ -1,6 +0,0 @@
#!/usr/bin/env python3
from trustgraph.model.text_completion.bedrock import run
run()

View file

@ -1,6 +0,0 @@
#!/usr/bin/env python3
from trustgraph.model.text_completion.claude import run
run()

View file

@ -1,6 +0,0 @@
#!/usr/bin/env python3
from trustgraph.model.text_completion.cohere import run
run()

View file

@ -1,6 +0,0 @@
#!/usr/bin/env python3
from trustgraph.model.text_completion.llamafile import run
run()

View file

@ -1,6 +0,0 @@
#!/usr/bin/env python3
from trustgraph.model.text_completion.ollama import run
run()

View file

@ -1,6 +0,0 @@
#!/usr/bin/env python3
from trustgraph.model.text_completion.openai import run
run()

View file

@ -1,6 +0,0 @@
#!/usr/bin/env python3
from trustgraph.model.text_completion.vertexai import run
run()

View file

@ -1,6 +0,0 @@
#!/usr/bin/env python3
from trustgraph.dump.triples.parquet import run
run()

View file

@ -1,6 +0,0 @@
#!/usr/bin/env python3
from trustgraph.query.triples.cassandra import run
run()

View file

@ -1,6 +0,0 @@
#!/usr/bin/env python3
from trustgraph.query.triples.neo4j import run
run()

View file

@ -1,6 +0,0 @@
#!/usr/bin/env python3
from trustgraph.storage.triples.cassandra import run
run()

View file

@ -1,6 +0,0 @@
#!/usr/bin/env python3
from trustgraph.storage.triples.neo4j import run
run()

View file

@ -33,7 +33,7 @@ services:
reservations:
cpus: '0.1'
memory: 128M
image: docker.io/trustgraph/trustgraph-flow:0.11.5
image: docker.io/trustgraph/trustgraph-flow:0.11.6
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.5
image: docker.io/trustgraph/trustgraph-flow:0.11.6
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.5
image: docker.io/trustgraph/trustgraph-flow:0.11.6
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.5
image: docker.io/trustgraph/trustgraph-flow:0.11.6
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.5
image: docker.io/trustgraph/trustgraph-flow:0.11.6
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.5
image: docker.io/trustgraph/trustgraph-flow:0.11.6
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.5
image: docker.io/trustgraph/trustgraph-flow:0.11.6
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.5
image: docker.io/trustgraph/trustgraph-flow:0.11.6
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.5
image: docker.io/trustgraph/trustgraph-flow:0.11.6
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.5
image: docker.io/trustgraph/trustgraph-flow:0.11.6
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.5
image: docker.io/trustgraph/trustgraph-flow:0.11.6
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.5
image: docker.io/trustgraph/trustgraph-flow:0.11.6
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.5
image: docker.io/trustgraph/trustgraph-flow:0.11.6
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.5
image: docker.io/trustgraph/trustgraph-flow:0.11.6
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.5
image: docker.io/trustgraph/trustgraph-flow:0.11.6
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.5
image: docker.io/trustgraph/trustgraph-flow:0.11.6
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.5
image: docker.io/trustgraph/trustgraph-flow:0.11.6
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.5
image: docker.io/trustgraph/trustgraph-flow:0.11.6
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.5
image: docker.io/trustgraph/trustgraph-flow:0.11.6
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.5
image: docker.io/trustgraph/trustgraph-flow:0.11.6
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.5
image: docker.io/trustgraph/trustgraph-flow:0.11.6
restart: on-failure:100
volumes:
cassandra: {}

View file

@ -16,7 +16,7 @@ services:
reservations:
cpus: '0.1'
memory: 128M
image: docker.io/trustgraph/trustgraph-flow:0.11.5
image: docker.io/trustgraph/trustgraph-flow:0.11.6
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.5
image: docker.io/trustgraph/trustgraph-flow:0.11.6
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.5
image: docker.io/trustgraph/trustgraph-flow:0.11.6
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.5
image: docker.io/trustgraph/trustgraph-flow:0.11.6
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.5
image: docker.io/trustgraph/trustgraph-flow:0.11.6
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.5
image: docker.io/trustgraph/trustgraph-flow:0.11.6
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.5
image: docker.io/trustgraph/trustgraph-flow:0.11.6
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.5
image: docker.io/trustgraph/trustgraph-flow:0.11.6
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.5
image: docker.io/trustgraph/trustgraph-flow:0.11.6
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.5
image: docker.io/trustgraph/trustgraph-flow:0.11.6
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.5
image: docker.io/trustgraph/trustgraph-flow:0.11.6
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.5
image: docker.io/trustgraph/trustgraph-flow:0.11.6
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.5
image: docker.io/trustgraph/trustgraph-flow:0.11.6
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.5
image: docker.io/trustgraph/trustgraph-flow:0.11.6
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.5
image: docker.io/trustgraph/trustgraph-flow:0.11.6
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.5
image: docker.io/trustgraph/trustgraph-flow:0.11.6
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.5
image: docker.io/trustgraph/trustgraph-flow:0.11.6
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.5
image: docker.io/trustgraph/trustgraph-flow:0.11.6
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.5
image: docker.io/trustgraph/trustgraph-flow:0.11.6
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.5
image: docker.io/trustgraph/trustgraph-flow:0.11.6
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.5
image: docker.io/trustgraph/trustgraph-flow:0.11.6
restart: on-failure:100
volumes:
grafana-storage: {}

View file

@ -33,7 +33,7 @@ services:
reservations:
cpus: '0.1'
memory: 128M
image: docker.io/trustgraph/trustgraph-flow:0.11.5
image: docker.io/trustgraph/trustgraph-flow:0.11.6
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.5
image: docker.io/trustgraph/trustgraph-flow:0.11.6
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.5
image: docker.io/trustgraph/trustgraph-flow:0.11.6
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.5
image: docker.io/trustgraph/trustgraph-flow:0.11.6
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.5
image: docker.io/trustgraph/trustgraph-flow:0.11.6
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.5
image: docker.io/trustgraph/trustgraph-flow:0.11.6
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.5
image: docker.io/trustgraph/trustgraph-flow:0.11.6
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.5
image: docker.io/trustgraph/trustgraph-flow:0.11.6
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.5
image: docker.io/trustgraph/trustgraph-flow:0.11.6
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.5
image: docker.io/trustgraph/trustgraph-flow:0.11.6
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.5
image: docker.io/trustgraph/trustgraph-flow:0.11.6
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.5
image: docker.io/trustgraph/trustgraph-flow:0.11.6
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.5
image: docker.io/trustgraph/trustgraph-flow:0.11.6
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.5
image: docker.io/trustgraph/trustgraph-flow:0.11.6
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.5
image: docker.io/trustgraph/trustgraph-flow:0.11.6
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.5
image: docker.io/trustgraph/trustgraph-flow:0.11.6
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.5
image: docker.io/trustgraph/trustgraph-flow:0.11.6
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.5
image: docker.io/trustgraph/trustgraph-flow:0.11.6
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.5
image: docker.io/trustgraph/trustgraph-flow:0.11.6
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.5
image: docker.io/trustgraph/trustgraph-flow:0.11.6
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.5
image: docker.io/trustgraph/trustgraph-flow:0.11.6
restart: on-failure:100
volumes:
cassandra: {}

View file

@ -16,7 +16,7 @@ services:
reservations:
cpus: '0.1'
memory: 128M
image: docker.io/trustgraph/trustgraph-flow:0.11.5
image: docker.io/trustgraph/trustgraph-flow:0.11.6
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.5
image: docker.io/trustgraph/trustgraph-flow:0.11.6
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.5
image: docker.io/trustgraph/trustgraph-flow:0.11.6
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.5
image: docker.io/trustgraph/trustgraph-flow:0.11.6
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.5
image: docker.io/trustgraph/trustgraph-flow:0.11.6
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.5
image: docker.io/trustgraph/trustgraph-flow:0.11.6
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.5
image: docker.io/trustgraph/trustgraph-flow:0.11.6
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.5
image: docker.io/trustgraph/trustgraph-flow:0.11.6
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.5
image: docker.io/trustgraph/trustgraph-flow:0.11.6
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.5
image: docker.io/trustgraph/trustgraph-flow:0.11.6
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.5
image: docker.io/trustgraph/trustgraph-flow:0.11.6
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.5
image: docker.io/trustgraph/trustgraph-flow:0.11.6
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.5
image: docker.io/trustgraph/trustgraph-flow:0.11.6
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.5
image: docker.io/trustgraph/trustgraph-flow:0.11.6
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.5
image: docker.io/trustgraph/trustgraph-flow:0.11.6
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.5
image: docker.io/trustgraph/trustgraph-flow:0.11.6
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.5
image: docker.io/trustgraph/trustgraph-flow:0.11.6
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.5
image: docker.io/trustgraph/trustgraph-flow:0.11.6
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.5
image: docker.io/trustgraph/trustgraph-flow:0.11.6
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.5
image: docker.io/trustgraph/trustgraph-flow:0.11.6
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.5
image: docker.io/trustgraph/trustgraph-flow:0.11.6
restart: on-failure:100
volumes:
grafana-storage: {}

View file

@ -33,7 +33,7 @@ services:
reservations:
cpus: '0.1'
memory: 128M
image: docker.io/trustgraph/trustgraph-flow:0.11.5
image: docker.io/trustgraph/trustgraph-flow:0.11.6
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.5
image: docker.io/trustgraph/trustgraph-flow:0.11.6
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.5
image: docker.io/trustgraph/trustgraph-flow:0.11.6
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.5
image: docker.io/trustgraph/trustgraph-flow:0.11.6
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.5
image: docker.io/trustgraph/trustgraph-flow:0.11.6
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.5
image: docker.io/trustgraph/trustgraph-flow:0.11.6
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.5
image: docker.io/trustgraph/trustgraph-flow:0.11.6
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.5
image: docker.io/trustgraph/trustgraph-flow:0.11.6
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.5
image: docker.io/trustgraph/trustgraph-flow:0.11.6
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.5
image: docker.io/trustgraph/trustgraph-flow:0.11.6
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.5
image: docker.io/trustgraph/trustgraph-flow:0.11.6
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.5
image: docker.io/trustgraph/trustgraph-flow:0.11.6
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.5
image: docker.io/trustgraph/trustgraph-flow:0.11.6
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.5
image: docker.io/trustgraph/trustgraph-flow:0.11.6
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.5
image: docker.io/trustgraph/trustgraph-flow:0.11.6
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.5
image: docker.io/trustgraph/trustgraph-flow:0.11.6
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.5
image: docker.io/trustgraph/trustgraph-flow:0.11.6
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.5
image: docker.io/trustgraph/trustgraph-flow:0.11.6
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.5
image: docker.io/trustgraph/trustgraph-flow:0.11.6
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.5
image: docker.io/trustgraph/trustgraph-flow:0.11.6
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.5
image: docker.io/trustgraph/trustgraph-flow:0.11.6
restart: on-failure:100
volumes:
cassandra: {}

View file

@ -16,7 +16,7 @@ services:
reservations:
cpus: '0.1'
memory: 128M
image: docker.io/trustgraph/trustgraph-flow:0.11.5
image: docker.io/trustgraph/trustgraph-flow:0.11.6
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.5
image: docker.io/trustgraph/trustgraph-flow:0.11.6
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.5
image: docker.io/trustgraph/trustgraph-flow:0.11.6
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.5
image: docker.io/trustgraph/trustgraph-flow:0.11.6
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.5
image: docker.io/trustgraph/trustgraph-flow:0.11.6
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.5
image: docker.io/trustgraph/trustgraph-flow:0.11.6
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.5
image: docker.io/trustgraph/trustgraph-flow:0.11.6
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.5
image: docker.io/trustgraph/trustgraph-flow:0.11.6
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.5
image: docker.io/trustgraph/trustgraph-flow:0.11.6
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.5
image: docker.io/trustgraph/trustgraph-flow:0.11.6
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.5
image: docker.io/trustgraph/trustgraph-flow:0.11.6
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.5
image: docker.io/trustgraph/trustgraph-flow:0.11.6
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.5
image: docker.io/trustgraph/trustgraph-flow:0.11.6
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.5
image: docker.io/trustgraph/trustgraph-flow:0.11.6
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.5
image: docker.io/trustgraph/trustgraph-flow:0.11.6
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.5
image: docker.io/trustgraph/trustgraph-flow:0.11.6
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.5
image: docker.io/trustgraph/trustgraph-flow:0.11.6
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.5
image: docker.io/trustgraph/trustgraph-flow:0.11.6
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.5
image: docker.io/trustgraph/trustgraph-flow:0.11.6
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.5
image: docker.io/trustgraph/trustgraph-flow:0.11.6
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.5
image: docker.io/trustgraph/trustgraph-flow:0.11.6
restart: on-failure:100
volumes:
grafana-storage: {}

View file

@ -33,7 +33,7 @@ services:
reservations:
cpus: '0.1'
memory: 128M
image: docker.io/trustgraph/trustgraph-flow:0.11.5
image: docker.io/trustgraph/trustgraph-flow:0.11.6
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.5
image: docker.io/trustgraph/trustgraph-flow:0.11.6
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.5
image: docker.io/trustgraph/trustgraph-flow:0.11.6
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.5
image: docker.io/trustgraph/trustgraph-flow:0.11.6
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.5
image: docker.io/trustgraph/trustgraph-flow:0.11.6
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.5
image: docker.io/trustgraph/trustgraph-flow:0.11.6
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.5
image: docker.io/trustgraph/trustgraph-flow:0.11.6
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.5
image: docker.io/trustgraph/trustgraph-flow:0.11.6
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.5
image: docker.io/trustgraph/trustgraph-flow:0.11.6
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.5
image: docker.io/trustgraph/trustgraph-flow:0.11.6
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.5
image: docker.io/trustgraph/trustgraph-flow:0.11.6
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.5
image: docker.io/trustgraph/trustgraph-flow:0.11.6
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.5
image: docker.io/trustgraph/trustgraph-flow:0.11.6
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.5
image: docker.io/trustgraph/trustgraph-flow:0.11.6
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.5
image: docker.io/trustgraph/trustgraph-flow:0.11.6
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.5
image: docker.io/trustgraph/trustgraph-flow:0.11.6
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.5
image: docker.io/trustgraph/trustgraph-flow:0.11.6
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.5
image: docker.io/trustgraph/trustgraph-flow:0.11.6
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.5
image: docker.io/trustgraph/trustgraph-flow:0.11.6
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.5
image: docker.io/trustgraph/trustgraph-flow:0.11.6
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.5
image: docker.io/trustgraph/trustgraph-flow:0.11.6
restart: on-failure:100
volumes:
cassandra: {}

View file

@ -16,7 +16,7 @@ services:
reservations:
cpus: '0.1'
memory: 128M
image: docker.io/trustgraph/trustgraph-flow:0.11.5
image: docker.io/trustgraph/trustgraph-flow:0.11.6
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.5
image: docker.io/trustgraph/trustgraph-flow:0.11.6
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.5
image: docker.io/trustgraph/trustgraph-flow:0.11.6
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.5
image: docker.io/trustgraph/trustgraph-flow:0.11.6
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.5
image: docker.io/trustgraph/trustgraph-flow:0.11.6
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.5
image: docker.io/trustgraph/trustgraph-flow:0.11.6
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.5
image: docker.io/trustgraph/trustgraph-flow:0.11.6
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.5
image: docker.io/trustgraph/trustgraph-flow:0.11.6
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.5
image: docker.io/trustgraph/trustgraph-flow:0.11.6
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.5
image: docker.io/trustgraph/trustgraph-flow:0.11.6
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.5
image: docker.io/trustgraph/trustgraph-flow:0.11.6
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.5
image: docker.io/trustgraph/trustgraph-flow:0.11.6
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.5
image: docker.io/trustgraph/trustgraph-flow:0.11.6
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.5
image: docker.io/trustgraph/trustgraph-flow:0.11.6
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.5
image: docker.io/trustgraph/trustgraph-flow:0.11.6
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.5
image: docker.io/trustgraph/trustgraph-flow:0.11.6
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.5
image: docker.io/trustgraph/trustgraph-flow:0.11.6
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.5
image: docker.io/trustgraph/trustgraph-flow:0.11.6
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.5
image: docker.io/trustgraph/trustgraph-flow:0.11.6
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.5
image: docker.io/trustgraph/trustgraph-flow:0.11.6
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.5
image: docker.io/trustgraph/trustgraph-flow:0.11.6
restart: on-failure:100
volumes:
grafana-storage: {}

View file

@ -33,7 +33,7 @@ services:
reservations:
cpus: '0.1'
memory: 128M
image: docker.io/trustgraph/trustgraph-flow:0.11.5
image: docker.io/trustgraph/trustgraph-flow:0.11.6
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.5
image: docker.io/trustgraph/trustgraph-flow:0.11.6
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.5
image: docker.io/trustgraph/trustgraph-flow:0.11.6
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.5
image: docker.io/trustgraph/trustgraph-flow:0.11.6
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.5
image: docker.io/trustgraph/trustgraph-flow:0.11.6
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.5
image: docker.io/trustgraph/trustgraph-flow:0.11.6
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.5
image: docker.io/trustgraph/trustgraph-flow:0.11.6
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.5
image: docker.io/trustgraph/trustgraph-flow:0.11.6
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.5
image: docker.io/trustgraph/trustgraph-flow:0.11.6
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.5
image: docker.io/trustgraph/trustgraph-flow:0.11.6
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.5
image: docker.io/trustgraph/trustgraph-flow:0.11.6
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.5
image: docker.io/trustgraph/trustgraph-flow:0.11.6
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.5
image: docker.io/trustgraph/trustgraph-flow:0.11.6
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.5
image: docker.io/trustgraph/trustgraph-flow:0.11.6
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.5
image: docker.io/trustgraph/trustgraph-flow:0.11.6
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.5
image: docker.io/trustgraph/trustgraph-flow:0.11.6
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.5
image: docker.io/trustgraph/trustgraph-flow:0.11.6
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.5
image: docker.io/trustgraph/trustgraph-flow:0.11.6
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.5
image: docker.io/trustgraph/trustgraph-flow:0.11.6
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.5
image: docker.io/trustgraph/trustgraph-flow:0.11.6
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.5
image: docker.io/trustgraph/trustgraph-flow:0.11.6
restart: on-failure:100
volumes:
cassandra: {}

View file

@ -16,7 +16,7 @@ services:
reservations:
cpus: '0.1'
memory: 128M
image: docker.io/trustgraph/trustgraph-flow:0.11.5
image: docker.io/trustgraph/trustgraph-flow:0.11.6
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.5
image: docker.io/trustgraph/trustgraph-flow:0.11.6
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.5
image: docker.io/trustgraph/trustgraph-flow:0.11.6
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.5
image: docker.io/trustgraph/trustgraph-flow:0.11.6
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.5
image: docker.io/trustgraph/trustgraph-flow:0.11.6
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.5
image: docker.io/trustgraph/trustgraph-flow:0.11.6
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.5
image: docker.io/trustgraph/trustgraph-flow:0.11.6
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.5
image: docker.io/trustgraph/trustgraph-flow:0.11.6
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.5
image: docker.io/trustgraph/trustgraph-flow:0.11.6
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.5
image: docker.io/trustgraph/trustgraph-flow:0.11.6
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.5
image: docker.io/trustgraph/trustgraph-flow:0.11.6
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.5
image: docker.io/trustgraph/trustgraph-flow:0.11.6
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.5
image: docker.io/trustgraph/trustgraph-flow:0.11.6
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.5
image: docker.io/trustgraph/trustgraph-flow:0.11.6
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.5
image: docker.io/trustgraph/trustgraph-flow:0.11.6
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.5
image: docker.io/trustgraph/trustgraph-flow:0.11.6
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.5
image: docker.io/trustgraph/trustgraph-flow:0.11.6
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.5
image: docker.io/trustgraph/trustgraph-flow:0.11.6
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.5
image: docker.io/trustgraph/trustgraph-flow:0.11.6
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.5
image: docker.io/trustgraph/trustgraph-flow:0.11.6
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.5
image: docker.io/trustgraph/trustgraph-flow:0.11.6
restart: on-failure:100
volumes:
grafana-storage: {}

View file

@ -33,7 +33,7 @@ services:
reservations:
cpus: '0.1'
memory: 128M
image: docker.io/trustgraph/trustgraph-flow:0.11.5
image: docker.io/trustgraph/trustgraph-flow:0.11.6
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.5
image: docker.io/trustgraph/trustgraph-flow:0.11.6
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.5
image: docker.io/trustgraph/trustgraph-flow:0.11.6
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.5
image: docker.io/trustgraph/trustgraph-flow:0.11.6
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.5
image: docker.io/trustgraph/trustgraph-flow:0.11.6
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.5
image: docker.io/trustgraph/trustgraph-flow:0.11.6
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.5
image: docker.io/trustgraph/trustgraph-flow:0.11.6
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.5
image: docker.io/trustgraph/trustgraph-flow:0.11.6
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.5
image: docker.io/trustgraph/trustgraph-flow:0.11.6
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.5
image: docker.io/trustgraph/trustgraph-flow:0.11.6
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.5
image: docker.io/trustgraph/trustgraph-flow:0.11.6
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.5
image: docker.io/trustgraph/trustgraph-flow:0.11.6
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.5
image: docker.io/trustgraph/trustgraph-flow:0.11.6
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.5
image: docker.io/trustgraph/trustgraph-flow:0.11.6
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.5
image: docker.io/trustgraph/trustgraph-flow:0.11.6
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.5
image: docker.io/trustgraph/trustgraph-flow:0.11.6
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.5
image: docker.io/trustgraph/trustgraph-flow:0.11.6
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.5
image: docker.io/trustgraph/trustgraph-flow:0.11.6
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.5
image: docker.io/trustgraph/trustgraph-flow:0.11.6
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.5
image: docker.io/trustgraph/trustgraph-flow:0.11.6
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.5
image: docker.io/trustgraph/trustgraph-flow:0.11.6
restart: on-failure:100
volumes:
cassandra: {}

View file

@ -16,7 +16,7 @@ services:
reservations:
cpus: '0.1'
memory: 128M
image: docker.io/trustgraph/trustgraph-flow:0.11.5
image: docker.io/trustgraph/trustgraph-flow:0.11.6
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.5
image: docker.io/trustgraph/trustgraph-flow:0.11.6
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.5
image: docker.io/trustgraph/trustgraph-flow:0.11.6
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.5
image: docker.io/trustgraph/trustgraph-flow:0.11.6
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.5
image: docker.io/trustgraph/trustgraph-flow:0.11.6
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.5
image: docker.io/trustgraph/trustgraph-flow:0.11.6
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.5
image: docker.io/trustgraph/trustgraph-flow:0.11.6
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.5
image: docker.io/trustgraph/trustgraph-flow:0.11.6
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.5
image: docker.io/trustgraph/trustgraph-flow:0.11.6
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.5
image: docker.io/trustgraph/trustgraph-flow:0.11.6
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.5
image: docker.io/trustgraph/trustgraph-flow:0.11.6
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.5
image: docker.io/trustgraph/trustgraph-flow:0.11.6
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.5
image: docker.io/trustgraph/trustgraph-flow:0.11.6
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.5
image: docker.io/trustgraph/trustgraph-flow:0.11.6
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.5
image: docker.io/trustgraph/trustgraph-flow:0.11.6
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.5
image: docker.io/trustgraph/trustgraph-flow:0.11.6
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.5
image: docker.io/trustgraph/trustgraph-flow:0.11.6
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.5
image: docker.io/trustgraph/trustgraph-flow:0.11.6
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.5
image: docker.io/trustgraph/trustgraph-flow:0.11.6
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.5
image: docker.io/trustgraph/trustgraph-flow:0.11.6
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.5
image: docker.io/trustgraph/trustgraph-flow:0.11.6
restart: on-failure:100
volumes:
grafana-storage: {}

View file

@ -33,7 +33,7 @@ services:
reservations:
cpus: '0.1'
memory: 128M
image: docker.io/trustgraph/trustgraph-flow:0.11.5
image: docker.io/trustgraph/trustgraph-flow:0.11.6
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.5
image: docker.io/trustgraph/trustgraph-flow:0.11.6
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.5
image: docker.io/trustgraph/trustgraph-flow:0.11.6
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.5
image: docker.io/trustgraph/trustgraph-flow:0.11.6
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.5
image: docker.io/trustgraph/trustgraph-flow:0.11.6
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.5
image: docker.io/trustgraph/trustgraph-flow:0.11.6
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.5
image: docker.io/trustgraph/trustgraph-flow:0.11.6
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.5
image: docker.io/trustgraph/trustgraph-flow:0.11.6
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.5
image: docker.io/trustgraph/trustgraph-flow:0.11.6
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.5
image: docker.io/trustgraph/trustgraph-flow:0.11.6
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.5
image: docker.io/trustgraph/trustgraph-flow:0.11.6
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.5
image: docker.io/trustgraph/trustgraph-flow:0.11.6
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.5
image: docker.io/trustgraph/trustgraph-flow:0.11.6
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.5
image: docker.io/trustgraph/trustgraph-flow:0.11.6
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.5
image: docker.io/trustgraph/trustgraph-flow:0.11.6
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.5
image: docker.io/trustgraph/trustgraph-flow:0.11.6
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.5
image: docker.io/trustgraph/trustgraph-flow:0.11.6
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.5
image: docker.io/trustgraph/trustgraph-flow:0.11.6
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.5
image: docker.io/trustgraph/trustgraph-flow:0.11.6
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.5
image: docker.io/trustgraph/trustgraph-flow:0.11.6
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.5
image: docker.io/trustgraph/trustgraph-flow:0.11.6
restart: on-failure:100
volumes:
cassandra: {}

View file

@ -16,7 +16,7 @@ services:
reservations:
cpus: '0.1'
memory: 128M
image: docker.io/trustgraph/trustgraph-flow:0.11.5
image: docker.io/trustgraph/trustgraph-flow:0.11.6
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.5
image: docker.io/trustgraph/trustgraph-flow:0.11.6
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.5
image: docker.io/trustgraph/trustgraph-flow:0.11.6
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.5
image: docker.io/trustgraph/trustgraph-flow:0.11.6
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.5
image: docker.io/trustgraph/trustgraph-flow:0.11.6
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.5
image: docker.io/trustgraph/trustgraph-flow:0.11.6
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.5
image: docker.io/trustgraph/trustgraph-flow:0.11.6
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.5
image: docker.io/trustgraph/trustgraph-flow:0.11.6
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.5
image: docker.io/trustgraph/trustgraph-flow:0.11.6
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.5
image: docker.io/trustgraph/trustgraph-flow:0.11.6
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.5
image: docker.io/trustgraph/trustgraph-flow:0.11.6
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.5
image: docker.io/trustgraph/trustgraph-flow:0.11.6
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.5
image: docker.io/trustgraph/trustgraph-flow:0.11.6
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.5
image: docker.io/trustgraph/trustgraph-flow:0.11.6
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.5
image: docker.io/trustgraph/trustgraph-flow:0.11.6
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.5
image: docker.io/trustgraph/trustgraph-flow:0.11.6
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.5
image: docker.io/trustgraph/trustgraph-flow:0.11.6
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.5
image: docker.io/trustgraph/trustgraph-flow:0.11.6
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.5
image: docker.io/trustgraph/trustgraph-flow:0.11.6
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.5
image: docker.io/trustgraph/trustgraph-flow:0.11.6
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.5
image: docker.io/trustgraph/trustgraph-flow:0.11.6
restart: on-failure:100
volumes:
grafana-storage: {}

View file

@ -33,7 +33,7 @@ services:
reservations:
cpus: '0.1'
memory: 128M
image: docker.io/trustgraph/trustgraph-flow:0.11.5
image: docker.io/trustgraph/trustgraph-flow:0.11.6
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.5
image: docker.io/trustgraph/trustgraph-flow:0.11.6
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.5
image: docker.io/trustgraph/trustgraph-flow:0.11.6
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.5
image: docker.io/trustgraph/trustgraph-flow:0.11.6
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.5
image: docker.io/trustgraph/trustgraph-flow:0.11.6
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.5
image: docker.io/trustgraph/trustgraph-flow:0.11.6
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.5
image: docker.io/trustgraph/trustgraph-flow:0.11.6
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.5
image: docker.io/trustgraph/trustgraph-flow:0.11.6
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.5
image: docker.io/trustgraph/trustgraph-flow:0.11.6
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.5
image: docker.io/trustgraph/trustgraph-flow:0.11.6
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.5
image: docker.io/trustgraph/trustgraph-flow:0.11.6
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.5
image: docker.io/trustgraph/trustgraph-flow:0.11.6
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.5
image: docker.io/trustgraph/trustgraph-flow:0.11.6
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.5
image: docker.io/trustgraph/trustgraph-flow:0.11.6
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.5
image: docker.io/trustgraph/trustgraph-flow:0.11.6
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.5
image: docker.io/trustgraph/trustgraph-flow:0.11.6
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.5
image: docker.io/trustgraph/trustgraph-flow:0.11.6
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.5
image: docker.io/trustgraph/trustgraph-flow:0.11.6
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.5
image: docker.io/trustgraph/trustgraph-flow:0.11.6
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.5
image: docker.io/trustgraph/trustgraph-flow:0.11.6
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.5
image: docker.io/trustgraph/trustgraph-flow:0.11.6
restart: on-failure:100
volumes:
cassandra: {}

View file

@ -16,7 +16,7 @@ services:
reservations:
cpus: '0.1'
memory: 128M
image: docker.io/trustgraph/trustgraph-flow:0.11.5
image: docker.io/trustgraph/trustgraph-flow:0.11.6
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.5
image: docker.io/trustgraph/trustgraph-flow:0.11.6
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.5
image: docker.io/trustgraph/trustgraph-flow:0.11.6
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.5
image: docker.io/trustgraph/trustgraph-flow:0.11.6
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.5
image: docker.io/trustgraph/trustgraph-flow:0.11.6
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.5
image: docker.io/trustgraph/trustgraph-flow:0.11.6
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.5
image: docker.io/trustgraph/trustgraph-flow:0.11.6
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.5
image: docker.io/trustgraph/trustgraph-flow:0.11.6
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.5
image: docker.io/trustgraph/trustgraph-flow:0.11.6
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.5
image: docker.io/trustgraph/trustgraph-flow:0.11.6
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.5
image: docker.io/trustgraph/trustgraph-flow:0.11.6
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.5
image: docker.io/trustgraph/trustgraph-flow:0.11.6
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.5
image: docker.io/trustgraph/trustgraph-flow:0.11.6
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.5
image: docker.io/trustgraph/trustgraph-flow:0.11.6
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.5
image: docker.io/trustgraph/trustgraph-flow:0.11.6
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.5
image: docker.io/trustgraph/trustgraph-flow:0.11.6
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.5
image: docker.io/trustgraph/trustgraph-flow:0.11.6
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.5
image: docker.io/trustgraph/trustgraph-flow:0.11.6
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.5
image: docker.io/trustgraph/trustgraph-flow:0.11.6
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.5
image: docker.io/trustgraph/trustgraph-flow:0.11.6
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.5
image: docker.io/trustgraph/trustgraph-flow:0.11.6
restart: on-failure:100
volumes:
grafana-storage: {}

View file

@ -49,7 +49,7 @@ services:
reservations:
cpus: '0.1'
memory: 128M
image: docker.io/trustgraph/trustgraph-flow:0.11.5
image: docker.io/trustgraph/trustgraph-flow:0.11.6
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.5
image: docker.io/trustgraph/trustgraph-flow:0.11.6
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.5
image: docker.io/trustgraph/trustgraph-flow:0.11.6
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.5
image: docker.io/trustgraph/trustgraph-flow:0.11.6
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.5
image: docker.io/trustgraph/trustgraph-flow:0.11.6
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.5
image: docker.io/trustgraph/trustgraph-flow:0.11.6
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.5
image: docker.io/trustgraph/trustgraph-flow:0.11.6
restart: on-failure:100
volumes:
cassandra: {}

View file

@ -32,7 +32,7 @@ services:
reservations:
cpus: '0.1'
memory: 128M
image: docker.io/trustgraph/trustgraph-flow:0.11.5
image: docker.io/trustgraph/trustgraph-flow:0.11.6
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.5
image: docker.io/trustgraph/trustgraph-flow:0.11.6
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.5
image: docker.io/trustgraph/trustgraph-flow:0.11.6
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.5
image: docker.io/trustgraph/trustgraph-flow:0.11.6
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.5
image: docker.io/trustgraph/trustgraph-flow:0.11.6
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.5
image: docker.io/trustgraph/trustgraph-flow:0.11.6
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.5
image: docker.io/trustgraph/trustgraph-flow:0.11.6
restart: on-failure:100
volumes:
grafana-storage: {}

View file

@ -0,0 +1,6 @@
#!/usr/bin/env python3
from trustgraph.core.chunking.recursive import run
run()

View file

@ -0,0 +1,6 @@
#!/usr/bin/env python3
from trustgraph.core.chunking.token import run
run()

View file

@ -0,0 +1,6 @@
#!/usr/bin/env python3
from trustgraph.core.query.doc_embeddings.milvus import run
run()

View file

@ -0,0 +1,6 @@
#!/usr/bin/env python3
from trustgraph.core.query.doc_embeddings.qdrant import run
run()

View file

@ -0,0 +1,6 @@
#!/usr/bin/env python3
from trustgraph.core.storage.doc_embeddings.milvus import run
run()

View file

@ -0,0 +1,6 @@
#!/usr/bin/env python3
from trustgraph.core.storage.doc_embeddings.qdrant import run
run()

View file

@ -0,0 +1,6 @@
#!/usr/bin/env python3
from trustgraph.core.retrieval.document_rag import run
run()

View file

@ -0,0 +1,6 @@
#!/usr/bin/env python3
from trustgraph.core.embeddings.ollama import run
run()

View file

@ -0,0 +1,6 @@
#!/usr/bin/env python3
from trustgraph.core.embeddings.vectorize import run
run()

View file

@ -0,0 +1,6 @@
#!/usr/bin/env python3
from trustgraph.core.dump.graph_embeddings.parquet import run
run()

View file

@ -0,0 +1,6 @@
#!/usr/bin/env python3
from trustgraph.core.query.graph_embeddings.milvus import run
run()

View file

@ -0,0 +1,6 @@
#!/usr/bin/env python3
from trustgraph.core.query.graph_embeddings.qdrant import run
run()

View file

@ -0,0 +1,6 @@
#!/usr/bin/env python3
from trustgraph.core.storage.graph_embeddings.milvus import run
run()

View file

@ -0,0 +1,6 @@
#!/usr/bin/env python3
from trustgraph.core.storage.graph_embeddings.qdrant import run
run()

View file

@ -0,0 +1,6 @@
#!/usr/bin/env python3
from trustgraph.core.retrieval.graph_rag import run
run()

View file

@ -6,7 +6,7 @@ Connects to the graph query service and dumps all graph edges.
import argparse
import os
from trustgraph.clients.triples_query_client import TriplesQueryClient
from trustgraph.core.clients.triples_query_client import TriplesQueryClient
default_pulsar_host = os.getenv("PULSAR_HOST", 'pulsar://localhost:6650')

View file

@ -6,7 +6,7 @@ Connects to the graph query service and dumps all graph edges.
import argparse
import os
from trustgraph.clients.triples_query_client import TriplesQueryClient
from trustgraph.core.clients.triples_query_client import TriplesQueryClient
import rdflib
import io
import sys

View file

@ -0,0 +1,6 @@
#!/usr/bin/env python3
from trustgraph.core.extract.kg.definitions import run
run()

View file

@ -0,0 +1,6 @@
#!/usr/bin/env python3
from trustgraph.core.extract.kg.relationships import run
run()

View file

@ -0,0 +1,6 @@
#!/usr/bin/env python3
from trustgraph.core.extract.kg.topics import run
run()

View file

@ -6,15 +6,15 @@ Loads Graph embeddings into TrustGraph processing.
import pulsar
from pulsar.schema import JsonSchema
from trustgraph.schema import GraphEmbeddings, Value
from trustgraph.schema import graph_embeddings_store_queue
from trustgraph.core.schema import GraphEmbeddings, Value
from trustgraph.core.schema import graph_embeddings_store_queue
import argparse
import os
import time
import pyarrow as pa
import pyarrow.parquet as pq
from trustgraph.log_level import LogLevel
from trustgraph.core.log_level import LogLevel
class Loader:

View file

@ -6,14 +6,14 @@ Loads a PDF document into TrustGraph processing.
import pulsar
from pulsar.schema import JsonSchema
from trustgraph.schema import Document, Source, document_ingest_queue
from trustgraph.core.schema import Document, Source, document_ingest_queue
import base64
import hashlib
import argparse
import os
import time
from trustgraph.log_level import LogLevel
from trustgraph.core.log_level import LogLevel
class Loader:

View file

@ -6,14 +6,14 @@ Loads a text document into TrustGraph processing.
import pulsar
from pulsar.schema import JsonSchema
from trustgraph.schema import TextDocument, Source, text_ingest_queue
from trustgraph.core.schema import TextDocument, Source, text_ingest_queue
import base64
import hashlib
import argparse
import os
import time
from trustgraph.log_level import LogLevel
from trustgraph.core.log_level import LogLevel
class Loader:

View file

@ -6,15 +6,15 @@ Loads Graph embeddings into TrustGraph processing.
import pulsar
from pulsar.schema import JsonSchema
from trustgraph.schema import Triple, Value
from trustgraph.schema import triples_store_queue
from trustgraph.core.schema import Triple, Value
from trustgraph.core.schema import triples_store_queue
import argparse
import os
import time
import pyarrow as pa
import pyarrow.parquet as pq
from trustgraph.log_level import LogLevel
from trustgraph.core.log_level import LogLevel
class Loader:

View file

@ -0,0 +1,5 @@
#!/usr/bin/env python3
from trustgraph.core.metering import run
run()

View file

@ -0,0 +1,6 @@
#!/usr/bin/env python3
from trustgraph.core.extract.object.row import run
run()

View file

@ -0,0 +1,6 @@
#!/usr/bin/env python3
from trustgraph.core.storage.object_embeddings.milvus import run
run()

View file

@ -0,0 +1,6 @@
#!/usr/bin/env python3
from trustgraph.core.decoding.pdf import run
run()

View file

@ -0,0 +1,6 @@
#!/usr/bin/env python3
from trustgraph.core.model.prompt.generic import run
run()

View file

@ -0,0 +1,6 @@
#!/usr/bin/env python3
from trustgraph.core.model.prompt.template import run
run()

View file

@ -6,7 +6,7 @@ Uses the Document RAG service to answer a query
import argparse
import os
from trustgraph.clients.document_rag_client import DocumentRagClient
from trustgraph.core.clients.document_rag_client import DocumentRagClient
default_pulsar_host = os.getenv("PULSAR_HOST", 'pulsar://localhost:6650')

View file

@ -6,7 +6,7 @@ Uses the GraphRAG service to answer a query
import argparse
import os
from trustgraph.clients.graph_rag_client import GraphRagClient
from trustgraph.core.clients.graph_rag_client import GraphRagClient
default_pulsar_host = os.getenv("PULSAR_HOST", 'pulsar://localhost:6650')

View file

@ -0,0 +1,6 @@
#!/usr/bin/env python3
from trustgraph.core.storage.rows.cassandra import run
run()

View file

@ -0,0 +1,6 @@
#!/usr/bin/env python3
from trustgraph.core.processing import run
run()

View file

@ -0,0 +1,6 @@
#!/usr/bin/env python3
from trustgraph.core.model.text_completion.azure import run
run()

View file

@ -0,0 +1,6 @@
#!/usr/bin/env python3
from trustgraph.core.model.text_completion.bedrock import run
run()

View file

@ -0,0 +1,6 @@
#!/usr/bin/env python3
from trustgraph.core.model.text_completion.claude import run
run()

Some files were not shown because too many files have changed in this diff Show more