mirror of
https://github.com/trustgraph-ai/trustgraph.git
synced 2026-04-25 00:16:23 +02:00
Feature/pkgsplit (#83)
* Starting to spawn base package * More package hacking * Bedrock and VertexAI * Parquet split * Updated templates * Utils
This commit is contained in:
parent
3fb75c617b
commit
9b91d5eee3
262 changed files with 630 additions and 420 deletions
|
|
@ -28,18 +28,36 @@ RUN pip3 install anthropic boto3 cohere openai google-cloud-aiplatform ollama \
|
|||
|
||||
FROM ai AS build
|
||||
|
||||
env PACKAGE_VERSION=0.0.0
|
||||
COPY trustgraph-base/ /root/build/trustgraph-base/
|
||||
COPY README.md /root/build/trustgraph-base/
|
||||
|
||||
COPY trustgraph-core/ /root/build/trustgraph-core/
|
||||
COPY README.md /root/build/trustgraph-core/
|
||||
COPY trustgraph-flow/ /root/build/trustgraph-flow/
|
||||
COPY README.md /root/build/trustgraph-flow/
|
||||
|
||||
COPY trustgraph-vertexai/ /root/build/trustgraph-vertexai/
|
||||
COPY README.md /root/build/trustgraph-vertexai/
|
||||
|
||||
COPY trustgraph-bedrock/ /root/build/trustgraph-bedrock/
|
||||
COPY README.md /root/build/trustgraph-bedrock/
|
||||
|
||||
COPY trustgraph-parquet/ /root/build/trustgraph-parquet/
|
||||
COPY README.md /root/build/trustgraph-parquet/
|
||||
|
||||
COPY trustgraph-embeddings-hf/ /root/build/trustgraph-embeddings-hf/
|
||||
COPY README.md /root/build/trustgraph-embeddings-hf/
|
||||
|
||||
COPY trustgraph-utils/ /root/build/trustgraph-utils/
|
||||
COPY README.md /root/build/trustgraph-utils/
|
||||
|
||||
WORKDIR /root/build/
|
||||
|
||||
RUN pip3 wheel -w /root/wheels/ --no-deps ./trustgraph-core/
|
||||
RUN pip3 wheel -w /root/wheels/ --no-deps ./trustgraph-base/
|
||||
RUN pip3 wheel -w /root/wheels/ --no-deps ./trustgraph-flow/
|
||||
RUN pip3 wheel -w /root/wheels/ --no-deps ./trustgraph-vertexai/
|
||||
RUN pip3 wheel -w /root/wheels/ --no-deps ./trustgraph-bedrock/
|
||||
RUN pip3 wheel -w /root/wheels/ --no-deps ./trustgraph-parquet/
|
||||
RUN pip3 wheel -w /root/wheels/ --no-deps ./trustgraph-embeddings-hf/
|
||||
RUN pip3 wheel -w /root/wheels/ --no-deps ./trustgraph-utils/
|
||||
|
||||
RUN ls /root/wheels
|
||||
|
||||
|
|
@ -52,8 +70,13 @@ FROM ai
|
|||
COPY --from=build /root/wheels /root/wheels
|
||||
|
||||
RUN \
|
||||
pip3 install /root/wheels/trustgraph_core-* && \
|
||||
pip3 install /root/wheels/trustgraph_base-* && \
|
||||
pip3 install /root/wheels/trustgraph_flow-* && \
|
||||
pip3 install /root/wheels/trustgraph_vertexai-* && \
|
||||
pip3 install /root/wheels/trustgraph_bedrock-* && \
|
||||
pip3 install /root/wheels/trustgraph_parquet-* && \
|
||||
pip3 install /root/wheels/trustgraph_embeddings_hf-* && \
|
||||
pip3 install /root/wheels/trustgraph_utils-* && \
|
||||
pip3 cache purge && \
|
||||
rm -rf /root/wheels
|
||||
|
||||
|
|
|
|||
54
Makefile
54
Makefile
|
|
@ -1,20 +1,31 @@
|
|||
|
||||
# VERSION=$(shell git describe | sed 's/^v//')
|
||||
VERSION=0.11.8
|
||||
VERSION=0.11.9
|
||||
|
||||
DOCKER=podman
|
||||
|
||||
all: container
|
||||
|
||||
pkgs:
|
||||
pip3 wheel --no-deps --wheel-dir dist trustgraph-core/
|
||||
pip3 wheel --no-deps --wheel-dir dist trustgraph-base/
|
||||
pip3 wheel --no-deps --wheel-dir dist trustgraph-flow/
|
||||
pip3 wheel --no-deps --wheel-dir dist trustgraph-vertexai/
|
||||
pip3 wheel --no-deps --wheel-dir dist trustgraph-bedrock/
|
||||
pip3 wheel --no-deps --wheel-dir dist trustgraph-parquet/
|
||||
pip3 wheel --no-deps --wheel-dir dist trustgraph-embeddings-hf/
|
||||
pip3 wheel --no-deps --wheel-dir dist trustgraph-utils/
|
||||
|
||||
CONTAINER=docker.io/trustgraph/trustgraph-flow
|
||||
|
||||
update-package-versions:
|
||||
echo __version__ = \"${VERSION}\" > trustgraph-core/trustgraph/core_version.py
|
||||
mkdir -p trustgraph-utils/trustgraph
|
||||
echo __version__ = \"${VERSION}\" > trustgraph-base/trustgraph/base_version.py
|
||||
echo __version__ = \"${VERSION}\" > trustgraph-flow/trustgraph/flow_version.py
|
||||
echo __version__ = \"${VERSION}\" > trustgraph-vertexai/trustgraph/vertexai_version.py
|
||||
echo __version__ = \"${VERSION}\" > trustgraph-bedrock/trustgraph/bedrock_version.py
|
||||
echo __version__ = \"${VERSION}\" > trustgraph-parquet/trustgraph/parquet_version.py
|
||||
echo __version__ = \"${VERSION}\" > trustgraph-embeddings-hf/trustgraph/embeddings_hf_version.py
|
||||
echo __version__ = \"${VERSION}\" > trustgraph-utils/trustgraph/utils_version.py
|
||||
|
||||
container: update-package-versions
|
||||
${DOCKER} build -f Containerfile -t ${CONTAINER}:${VERSION} \
|
||||
|
|
@ -23,17 +34,6 @@ container: update-package-versions
|
|||
push:
|
||||
${DOCKER} push ${CONTAINER}:${VERSION}
|
||||
|
||||
start:
|
||||
${DOCKER} run -i -t --name ${NAME} \
|
||||
-i -t \
|
||||
-p 8081:8081 \
|
||||
-v $$(pwd)/keys:/keys \
|
||||
-v $$(pwd)/configs:/configs \
|
||||
${CONTAINER}:${VERSION}
|
||||
|
||||
stop:
|
||||
${DOCKER} rm -f ${NAME}
|
||||
|
||||
clean:
|
||||
rm -rf wheels/
|
||||
|
||||
|
|
@ -61,10 +61,8 @@ JSONNET_FLAGS=-J templates -J .
|
|||
# is going away in 0.11.
|
||||
|
||||
update-templates: update-dcs
|
||||
# update-minikubes
|
||||
|
||||
JSON_TO_YAML=python3 -c 'import sys, yaml, json; j=json.loads(sys.stdin.read()); print(yaml.safe_dump(j))'
|
||||
# JSON_TO_YAML=cat
|
||||
|
||||
update-dcs: set-version
|
||||
for graph in ${GRAPHS}; do \
|
||||
|
|
@ -88,31 +86,7 @@ update-dcs: set-version
|
|||
done; \
|
||||
done
|
||||
|
||||
update-minikubes: set-version
|
||||
rm -rf deploy/minikube
|
||||
mkdir -p deploy/minikube
|
||||
for model in ${MODELS}; do \
|
||||
for graph in ${GRAPHS}; do \
|
||||
cm=$${graph},pulsar,${VECTORDB},embeddings-hf,graph-rag,grafana,trustgraph,$${model}; \
|
||||
input=templates/opts-to-minikube-k8s.jsonnet; \
|
||||
output=deploy/minikube/tg-launch-$${model}-$${graph}.yaml; \
|
||||
echo $${model} + $${graph} '->' $${output}; \
|
||||
jsonnet ${JSONNET_FLAGS} \
|
||||
--ext-str options=$${cm} $${input} | \
|
||||
${JSON_TO_YAML} > $${output}; \
|
||||
done; \
|
||||
done
|
||||
|
||||
docker-hub-login:
|
||||
cat docker-token.txt | \
|
||||
docker login -u trustgraph --password-stdin registry-1.docker.io
|
||||
|
||||
FORCE:
|
||||
|
||||
IGNOREconfig.yaml: config.json FORCE
|
||||
jsonnet -J . -J templates/ templates/config-to-gcp-k8s.jsonnet | \
|
||||
python3 -c 'import sys, yaml, json; j=json.loads(sys.stdin.read()); print(yaml.safe_dump(j))' > $@
|
||||
|
||||
config.yaml: config.json FORCE
|
||||
jsonnet -J . -J templates/ templates/config-to-minikube-k8s.jsonnet | \
|
||||
python3 -c 'import sys, yaml, json; j=json.loads(sys.stdin.read()); print(yaml.safe_dump(j))' > $@
|
||||
|
|
|
|||
|
|
@ -33,7 +33,7 @@ services:
|
|||
reservations:
|
||||
cpus: '0.1'
|
||||
memory: 128M
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.8
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.9
|
||||
restart: on-failure:100
|
||||
embeddings:
|
||||
command:
|
||||
|
|
@ -50,7 +50,7 @@ services:
|
|||
reservations:
|
||||
cpus: '0.5'
|
||||
memory: 400M
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.8
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.9
|
||||
restart: on-failure:100
|
||||
grafana:
|
||||
deploy:
|
||||
|
|
@ -95,7 +95,7 @@ services:
|
|||
reservations:
|
||||
cpus: '0.1'
|
||||
memory: 128M
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.8
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.9
|
||||
restart: on-failure:100
|
||||
init-pulsar:
|
||||
command:
|
||||
|
|
@ -110,7 +110,7 @@ services:
|
|||
reservations:
|
||||
cpus: '0.1'
|
||||
memory: 128M
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.8
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.9
|
||||
restart: on-failure:100
|
||||
kg-extract-definitions:
|
||||
command:
|
||||
|
|
@ -125,7 +125,7 @@ services:
|
|||
reservations:
|
||||
cpus: '0.1'
|
||||
memory: 128M
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.8
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.9
|
||||
restart: on-failure:100
|
||||
kg-extract-relationships:
|
||||
command:
|
||||
|
|
@ -140,7 +140,7 @@ services:
|
|||
reservations:
|
||||
cpus: '0.1'
|
||||
memory: 128M
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.8
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.9
|
||||
restart: on-failure:100
|
||||
kg-extract-topics:
|
||||
command:
|
||||
|
|
@ -155,7 +155,7 @@ services:
|
|||
reservations:
|
||||
cpus: '0.1'
|
||||
memory: 128M
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.8
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.9
|
||||
restart: on-failure:100
|
||||
metering:
|
||||
command:
|
||||
|
|
@ -170,7 +170,7 @@ services:
|
|||
reservations:
|
||||
cpus: '0.1'
|
||||
memory: 128M
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.8
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.9
|
||||
restart: on-failure:100
|
||||
metering-rag:
|
||||
command:
|
||||
|
|
@ -187,7 +187,7 @@ services:
|
|||
reservations:
|
||||
cpus: '0.1'
|
||||
memory: 128M
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.8
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.9
|
||||
restart: on-failure:100
|
||||
pdf-decoder:
|
||||
command:
|
||||
|
|
@ -202,7 +202,7 @@ services:
|
|||
reservations:
|
||||
cpus: '0.1'
|
||||
memory: 128M
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.8
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.9
|
||||
restart: on-failure:100
|
||||
prometheus:
|
||||
deploy:
|
||||
|
|
@ -392,7 +392,7 @@ services:
|
|||
reservations:
|
||||
cpus: '0.1'
|
||||
memory: 128M
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.8
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.9
|
||||
restart: on-failure:100
|
||||
prompt-rag:
|
||||
command:
|
||||
|
|
@ -570,7 +570,7 @@ services:
|
|||
reservations:
|
||||
cpus: '0.1'
|
||||
memory: 128M
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.8
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.9
|
||||
restart: on-failure:100
|
||||
pulsar:
|
||||
command:
|
||||
|
|
@ -624,7 +624,7 @@ services:
|
|||
reservations:
|
||||
cpus: '0.1'
|
||||
memory: 128M
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.8
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.9
|
||||
restart: on-failure:100
|
||||
query-graph-embeddings:
|
||||
command:
|
||||
|
|
@ -641,7 +641,7 @@ services:
|
|||
reservations:
|
||||
cpus: '0.1'
|
||||
memory: 128M
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.8
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.9
|
||||
restart: on-failure:100
|
||||
query-triples:
|
||||
command:
|
||||
|
|
@ -658,7 +658,7 @@ services:
|
|||
reservations:
|
||||
cpus: '0.1'
|
||||
memory: 512M
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.8
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.9
|
||||
restart: on-failure:100
|
||||
store-doc-embeddings:
|
||||
command:
|
||||
|
|
@ -675,7 +675,7 @@ services:
|
|||
reservations:
|
||||
cpus: '0.1'
|
||||
memory: 128M
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.8
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.9
|
||||
restart: on-failure:100
|
||||
store-graph-embeddings:
|
||||
command:
|
||||
|
|
@ -692,7 +692,7 @@ services:
|
|||
reservations:
|
||||
cpus: '0.1'
|
||||
memory: 128M
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.8
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.9
|
||||
restart: on-failure:100
|
||||
store-triples:
|
||||
command:
|
||||
|
|
@ -709,7 +709,7 @@ services:
|
|||
reservations:
|
||||
cpus: '0.1'
|
||||
memory: 128M
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.8
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.9
|
||||
restart: on-failure:100
|
||||
text-completion:
|
||||
command:
|
||||
|
|
@ -732,7 +732,7 @@ services:
|
|||
reservations:
|
||||
cpus: '0.1'
|
||||
memory: 128M
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.8
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.9
|
||||
restart: on-failure:100
|
||||
text-completion-rag:
|
||||
command:
|
||||
|
|
@ -759,7 +759,7 @@ services:
|
|||
reservations:
|
||||
cpus: '0.1'
|
||||
memory: 128M
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.8
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.9
|
||||
restart: on-failure:100
|
||||
vectorize:
|
||||
command:
|
||||
|
|
@ -774,7 +774,7 @@ services:
|
|||
reservations:
|
||||
cpus: '0.5'
|
||||
memory: 512M
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.8
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.9
|
||||
restart: on-failure:100
|
||||
volumes:
|
||||
cassandra: {}
|
||||
|
|
|
|||
|
|
@ -16,7 +16,7 @@ services:
|
|||
reservations:
|
||||
cpus: '0.1'
|
||||
memory: 128M
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.8
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.9
|
||||
restart: on-failure:100
|
||||
embeddings:
|
||||
command:
|
||||
|
|
@ -33,7 +33,7 @@ services:
|
|||
reservations:
|
||||
cpus: '0.5'
|
||||
memory: 400M
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.8
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.9
|
||||
restart: on-failure:100
|
||||
grafana:
|
||||
deploy:
|
||||
|
|
@ -78,7 +78,7 @@ services:
|
|||
reservations:
|
||||
cpus: '0.1'
|
||||
memory: 128M
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.8
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.9
|
||||
restart: on-failure:100
|
||||
init-pulsar:
|
||||
command:
|
||||
|
|
@ -93,7 +93,7 @@ services:
|
|||
reservations:
|
||||
cpus: '0.1'
|
||||
memory: 128M
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.8
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.9
|
||||
restart: on-failure:100
|
||||
kg-extract-definitions:
|
||||
command:
|
||||
|
|
@ -108,7 +108,7 @@ services:
|
|||
reservations:
|
||||
cpus: '0.1'
|
||||
memory: 128M
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.8
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.9
|
||||
restart: on-failure:100
|
||||
kg-extract-relationships:
|
||||
command:
|
||||
|
|
@ -123,7 +123,7 @@ services:
|
|||
reservations:
|
||||
cpus: '0.1'
|
||||
memory: 128M
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.8
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.9
|
||||
restart: on-failure:100
|
||||
kg-extract-topics:
|
||||
command:
|
||||
|
|
@ -138,7 +138,7 @@ services:
|
|||
reservations:
|
||||
cpus: '0.1'
|
||||
memory: 128M
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.8
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.9
|
||||
restart: on-failure:100
|
||||
metering:
|
||||
command:
|
||||
|
|
@ -153,7 +153,7 @@ services:
|
|||
reservations:
|
||||
cpus: '0.1'
|
||||
memory: 128M
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.8
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.9
|
||||
restart: on-failure:100
|
||||
metering-rag:
|
||||
command:
|
||||
|
|
@ -170,7 +170,7 @@ services:
|
|||
reservations:
|
||||
cpus: '0.1'
|
||||
memory: 128M
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.8
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.9
|
||||
restart: on-failure:100
|
||||
neo4j:
|
||||
deploy:
|
||||
|
|
@ -203,7 +203,7 @@ services:
|
|||
reservations:
|
||||
cpus: '0.1'
|
||||
memory: 128M
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.8
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.9
|
||||
restart: on-failure:100
|
||||
prometheus:
|
||||
deploy:
|
||||
|
|
@ -393,7 +393,7 @@ services:
|
|||
reservations:
|
||||
cpus: '0.1'
|
||||
memory: 128M
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.8
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.9
|
||||
restart: on-failure:100
|
||||
prompt-rag:
|
||||
command:
|
||||
|
|
@ -571,7 +571,7 @@ services:
|
|||
reservations:
|
||||
cpus: '0.1'
|
||||
memory: 128M
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.8
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.9
|
||||
restart: on-failure:100
|
||||
pulsar:
|
||||
command:
|
||||
|
|
@ -625,7 +625,7 @@ services:
|
|||
reservations:
|
||||
cpus: '0.1'
|
||||
memory: 128M
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.8
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.9
|
||||
restart: on-failure:100
|
||||
query-graph-embeddings:
|
||||
command:
|
||||
|
|
@ -642,7 +642,7 @@ services:
|
|||
reservations:
|
||||
cpus: '0.1'
|
||||
memory: 128M
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.8
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.9
|
||||
restart: on-failure:100
|
||||
query-triples:
|
||||
command:
|
||||
|
|
@ -659,7 +659,7 @@ services:
|
|||
reservations:
|
||||
cpus: '0.1'
|
||||
memory: 128M
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.8
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.9
|
||||
restart: on-failure:100
|
||||
store-doc-embeddings:
|
||||
command:
|
||||
|
|
@ -676,7 +676,7 @@ services:
|
|||
reservations:
|
||||
cpus: '0.1'
|
||||
memory: 128M
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.8
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.9
|
||||
restart: on-failure:100
|
||||
store-graph-embeddings:
|
||||
command:
|
||||
|
|
@ -693,7 +693,7 @@ services:
|
|||
reservations:
|
||||
cpus: '0.1'
|
||||
memory: 128M
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.8
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.9
|
||||
restart: on-failure:100
|
||||
store-triples:
|
||||
command:
|
||||
|
|
@ -710,7 +710,7 @@ services:
|
|||
reservations:
|
||||
cpus: '0.1'
|
||||
memory: 128M
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.8
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.9
|
||||
restart: on-failure:100
|
||||
text-completion:
|
||||
command:
|
||||
|
|
@ -733,7 +733,7 @@ services:
|
|||
reservations:
|
||||
cpus: '0.1'
|
||||
memory: 128M
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.8
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.9
|
||||
restart: on-failure:100
|
||||
text-completion-rag:
|
||||
command:
|
||||
|
|
@ -760,7 +760,7 @@ services:
|
|||
reservations:
|
||||
cpus: '0.1'
|
||||
memory: 128M
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.8
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.9
|
||||
restart: on-failure:100
|
||||
vectorize:
|
||||
command:
|
||||
|
|
@ -775,7 +775,7 @@ services:
|
|||
reservations:
|
||||
cpus: '0.5'
|
||||
memory: 512M
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.8
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.9
|
||||
restart: on-failure:100
|
||||
volumes:
|
||||
grafana-storage: {}
|
||||
|
|
|
|||
|
|
@ -33,7 +33,7 @@ services:
|
|||
reservations:
|
||||
cpus: '0.1'
|
||||
memory: 128M
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.8
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.9
|
||||
restart: on-failure:100
|
||||
embeddings:
|
||||
command:
|
||||
|
|
@ -50,7 +50,7 @@ services:
|
|||
reservations:
|
||||
cpus: '0.5'
|
||||
memory: 400M
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.8
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.9
|
||||
restart: on-failure:100
|
||||
grafana:
|
||||
deploy:
|
||||
|
|
@ -95,7 +95,7 @@ services:
|
|||
reservations:
|
||||
cpus: '0.1'
|
||||
memory: 128M
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.8
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.9
|
||||
restart: on-failure:100
|
||||
init-pulsar:
|
||||
command:
|
||||
|
|
@ -110,7 +110,7 @@ services:
|
|||
reservations:
|
||||
cpus: '0.1'
|
||||
memory: 128M
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.8
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.9
|
||||
restart: on-failure:100
|
||||
kg-extract-definitions:
|
||||
command:
|
||||
|
|
@ -125,7 +125,7 @@ services:
|
|||
reservations:
|
||||
cpus: '0.1'
|
||||
memory: 128M
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.8
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.9
|
||||
restart: on-failure:100
|
||||
kg-extract-relationships:
|
||||
command:
|
||||
|
|
@ -140,7 +140,7 @@ services:
|
|||
reservations:
|
||||
cpus: '0.1'
|
||||
memory: 128M
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.8
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.9
|
||||
restart: on-failure:100
|
||||
kg-extract-topics:
|
||||
command:
|
||||
|
|
@ -155,7 +155,7 @@ services:
|
|||
reservations:
|
||||
cpus: '0.1'
|
||||
memory: 128M
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.8
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.9
|
||||
restart: on-failure:100
|
||||
metering:
|
||||
command:
|
||||
|
|
@ -170,7 +170,7 @@ services:
|
|||
reservations:
|
||||
cpus: '0.1'
|
||||
memory: 128M
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.8
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.9
|
||||
restart: on-failure:100
|
||||
metering-rag:
|
||||
command:
|
||||
|
|
@ -187,7 +187,7 @@ services:
|
|||
reservations:
|
||||
cpus: '0.1'
|
||||
memory: 128M
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.8
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.9
|
||||
restart: on-failure:100
|
||||
pdf-decoder:
|
||||
command:
|
||||
|
|
@ -202,7 +202,7 @@ services:
|
|||
reservations:
|
||||
cpus: '0.1'
|
||||
memory: 128M
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.8
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.9
|
||||
restart: on-failure:100
|
||||
prometheus:
|
||||
deploy:
|
||||
|
|
@ -392,7 +392,7 @@ services:
|
|||
reservations:
|
||||
cpus: '0.1'
|
||||
memory: 128M
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.8
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.9
|
||||
restart: on-failure:100
|
||||
prompt-rag:
|
||||
command:
|
||||
|
|
@ -570,7 +570,7 @@ services:
|
|||
reservations:
|
||||
cpus: '0.1'
|
||||
memory: 128M
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.8
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.9
|
||||
restart: on-failure:100
|
||||
pulsar:
|
||||
command:
|
||||
|
|
@ -624,7 +624,7 @@ services:
|
|||
reservations:
|
||||
cpus: '0.1'
|
||||
memory: 128M
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.8
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.9
|
||||
restart: on-failure:100
|
||||
query-graph-embeddings:
|
||||
command:
|
||||
|
|
@ -641,7 +641,7 @@ services:
|
|||
reservations:
|
||||
cpus: '0.1'
|
||||
memory: 128M
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.8
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.9
|
||||
restart: on-failure:100
|
||||
query-triples:
|
||||
command:
|
||||
|
|
@ -658,7 +658,7 @@ services:
|
|||
reservations:
|
||||
cpus: '0.1'
|
||||
memory: 512M
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.8
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.9
|
||||
restart: on-failure:100
|
||||
store-doc-embeddings:
|
||||
command:
|
||||
|
|
@ -675,7 +675,7 @@ services:
|
|||
reservations:
|
||||
cpus: '0.1'
|
||||
memory: 128M
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.8
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.9
|
||||
restart: on-failure:100
|
||||
store-graph-embeddings:
|
||||
command:
|
||||
|
|
@ -692,7 +692,7 @@ services:
|
|||
reservations:
|
||||
cpus: '0.1'
|
||||
memory: 128M
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.8
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.9
|
||||
restart: on-failure:100
|
||||
store-triples:
|
||||
command:
|
||||
|
|
@ -709,7 +709,7 @@ services:
|
|||
reservations:
|
||||
cpus: '0.1'
|
||||
memory: 128M
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.8
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.9
|
||||
restart: on-failure:100
|
||||
text-completion:
|
||||
command:
|
||||
|
|
@ -736,7 +736,7 @@ services:
|
|||
reservations:
|
||||
cpus: '0.1'
|
||||
memory: 128M
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.8
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.9
|
||||
restart: on-failure:100
|
||||
text-completion-rag:
|
||||
command:
|
||||
|
|
@ -767,7 +767,7 @@ services:
|
|||
reservations:
|
||||
cpus: '0.1'
|
||||
memory: 128M
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.8
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.9
|
||||
restart: on-failure:100
|
||||
vectorize:
|
||||
command:
|
||||
|
|
@ -782,7 +782,7 @@ services:
|
|||
reservations:
|
||||
cpus: '0.5'
|
||||
memory: 512M
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.8
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.9
|
||||
restart: on-failure:100
|
||||
volumes:
|
||||
cassandra: {}
|
||||
|
|
|
|||
|
|
@ -16,7 +16,7 @@ services:
|
|||
reservations:
|
||||
cpus: '0.1'
|
||||
memory: 128M
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.8
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.9
|
||||
restart: on-failure:100
|
||||
embeddings:
|
||||
command:
|
||||
|
|
@ -33,7 +33,7 @@ services:
|
|||
reservations:
|
||||
cpus: '0.5'
|
||||
memory: 400M
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.8
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.9
|
||||
restart: on-failure:100
|
||||
grafana:
|
||||
deploy:
|
||||
|
|
@ -78,7 +78,7 @@ services:
|
|||
reservations:
|
||||
cpus: '0.1'
|
||||
memory: 128M
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.8
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.9
|
||||
restart: on-failure:100
|
||||
init-pulsar:
|
||||
command:
|
||||
|
|
@ -93,7 +93,7 @@ services:
|
|||
reservations:
|
||||
cpus: '0.1'
|
||||
memory: 128M
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.8
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.9
|
||||
restart: on-failure:100
|
||||
kg-extract-definitions:
|
||||
command:
|
||||
|
|
@ -108,7 +108,7 @@ services:
|
|||
reservations:
|
||||
cpus: '0.1'
|
||||
memory: 128M
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.8
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.9
|
||||
restart: on-failure:100
|
||||
kg-extract-relationships:
|
||||
command:
|
||||
|
|
@ -123,7 +123,7 @@ services:
|
|||
reservations:
|
||||
cpus: '0.1'
|
||||
memory: 128M
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.8
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.9
|
||||
restart: on-failure:100
|
||||
kg-extract-topics:
|
||||
command:
|
||||
|
|
@ -138,7 +138,7 @@ services:
|
|||
reservations:
|
||||
cpus: '0.1'
|
||||
memory: 128M
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.8
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.9
|
||||
restart: on-failure:100
|
||||
metering:
|
||||
command:
|
||||
|
|
@ -153,7 +153,7 @@ services:
|
|||
reservations:
|
||||
cpus: '0.1'
|
||||
memory: 128M
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.8
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.9
|
||||
restart: on-failure:100
|
||||
metering-rag:
|
||||
command:
|
||||
|
|
@ -170,7 +170,7 @@ services:
|
|||
reservations:
|
||||
cpus: '0.1'
|
||||
memory: 128M
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.8
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.9
|
||||
restart: on-failure:100
|
||||
neo4j:
|
||||
deploy:
|
||||
|
|
@ -203,7 +203,7 @@ services:
|
|||
reservations:
|
||||
cpus: '0.1'
|
||||
memory: 128M
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.8
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.9
|
||||
restart: on-failure:100
|
||||
prometheus:
|
||||
deploy:
|
||||
|
|
@ -393,7 +393,7 @@ services:
|
|||
reservations:
|
||||
cpus: '0.1'
|
||||
memory: 128M
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.8
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.9
|
||||
restart: on-failure:100
|
||||
prompt-rag:
|
||||
command:
|
||||
|
|
@ -571,7 +571,7 @@ services:
|
|||
reservations:
|
||||
cpus: '0.1'
|
||||
memory: 128M
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.8
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.9
|
||||
restart: on-failure:100
|
||||
pulsar:
|
||||
command:
|
||||
|
|
@ -625,7 +625,7 @@ services:
|
|||
reservations:
|
||||
cpus: '0.1'
|
||||
memory: 128M
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.8
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.9
|
||||
restart: on-failure:100
|
||||
query-graph-embeddings:
|
||||
command:
|
||||
|
|
@ -642,7 +642,7 @@ services:
|
|||
reservations:
|
||||
cpus: '0.1'
|
||||
memory: 128M
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.8
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.9
|
||||
restart: on-failure:100
|
||||
query-triples:
|
||||
command:
|
||||
|
|
@ -659,7 +659,7 @@ services:
|
|||
reservations:
|
||||
cpus: '0.1'
|
||||
memory: 128M
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.8
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.9
|
||||
restart: on-failure:100
|
||||
store-doc-embeddings:
|
||||
command:
|
||||
|
|
@ -676,7 +676,7 @@ services:
|
|||
reservations:
|
||||
cpus: '0.1'
|
||||
memory: 128M
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.8
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.9
|
||||
restart: on-failure:100
|
||||
store-graph-embeddings:
|
||||
command:
|
||||
|
|
@ -693,7 +693,7 @@ services:
|
|||
reservations:
|
||||
cpus: '0.1'
|
||||
memory: 128M
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.8
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.9
|
||||
restart: on-failure:100
|
||||
store-triples:
|
||||
command:
|
||||
|
|
@ -710,7 +710,7 @@ services:
|
|||
reservations:
|
||||
cpus: '0.1'
|
||||
memory: 128M
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.8
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.9
|
||||
restart: on-failure:100
|
||||
text-completion:
|
||||
command:
|
||||
|
|
@ -737,7 +737,7 @@ services:
|
|||
reservations:
|
||||
cpus: '0.1'
|
||||
memory: 128M
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.8
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.9
|
||||
restart: on-failure:100
|
||||
text-completion-rag:
|
||||
command:
|
||||
|
|
@ -768,7 +768,7 @@ services:
|
|||
reservations:
|
||||
cpus: '0.1'
|
||||
memory: 128M
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.8
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.9
|
||||
restart: on-failure:100
|
||||
vectorize:
|
||||
command:
|
||||
|
|
@ -783,7 +783,7 @@ services:
|
|||
reservations:
|
||||
cpus: '0.5'
|
||||
memory: 512M
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.8
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.9
|
||||
restart: on-failure:100
|
||||
volumes:
|
||||
grafana-storage: {}
|
||||
|
|
|
|||
|
|
@ -33,7 +33,7 @@ services:
|
|||
reservations:
|
||||
cpus: '0.1'
|
||||
memory: 128M
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.8
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.9
|
||||
restart: on-failure:100
|
||||
embeddings:
|
||||
command:
|
||||
|
|
@ -50,7 +50,7 @@ services:
|
|||
reservations:
|
||||
cpus: '0.5'
|
||||
memory: 400M
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.8
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.9
|
||||
restart: on-failure:100
|
||||
grafana:
|
||||
deploy:
|
||||
|
|
@ -95,7 +95,7 @@ services:
|
|||
reservations:
|
||||
cpus: '0.1'
|
||||
memory: 128M
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.8
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.9
|
||||
restart: on-failure:100
|
||||
init-pulsar:
|
||||
command:
|
||||
|
|
@ -110,7 +110,7 @@ services:
|
|||
reservations:
|
||||
cpus: '0.1'
|
||||
memory: 128M
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.8
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.9
|
||||
restart: on-failure:100
|
||||
kg-extract-definitions:
|
||||
command:
|
||||
|
|
@ -125,7 +125,7 @@ services:
|
|||
reservations:
|
||||
cpus: '0.1'
|
||||
memory: 128M
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.8
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.9
|
||||
restart: on-failure:100
|
||||
kg-extract-relationships:
|
||||
command:
|
||||
|
|
@ -140,7 +140,7 @@ services:
|
|||
reservations:
|
||||
cpus: '0.1'
|
||||
memory: 128M
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.8
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.9
|
||||
restart: on-failure:100
|
||||
kg-extract-topics:
|
||||
command:
|
||||
|
|
@ -155,7 +155,7 @@ services:
|
|||
reservations:
|
||||
cpus: '0.1'
|
||||
memory: 128M
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.8
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.9
|
||||
restart: on-failure:100
|
||||
metering:
|
||||
command:
|
||||
|
|
@ -170,7 +170,7 @@ services:
|
|||
reservations:
|
||||
cpus: '0.1'
|
||||
memory: 128M
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.8
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.9
|
||||
restart: on-failure:100
|
||||
metering-rag:
|
||||
command:
|
||||
|
|
@ -187,7 +187,7 @@ services:
|
|||
reservations:
|
||||
cpus: '0.1'
|
||||
memory: 128M
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.8
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.9
|
||||
restart: on-failure:100
|
||||
pdf-decoder:
|
||||
command:
|
||||
|
|
@ -202,7 +202,7 @@ services:
|
|||
reservations:
|
||||
cpus: '0.1'
|
||||
memory: 128M
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.8
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.9
|
||||
restart: on-failure:100
|
||||
prometheus:
|
||||
deploy:
|
||||
|
|
@ -392,7 +392,7 @@ services:
|
|||
reservations:
|
||||
cpus: '0.1'
|
||||
memory: 128M
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.8
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.9
|
||||
restart: on-failure:100
|
||||
prompt-rag:
|
||||
command:
|
||||
|
|
@ -570,7 +570,7 @@ services:
|
|||
reservations:
|
||||
cpus: '0.1'
|
||||
memory: 128M
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.8
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.9
|
||||
restart: on-failure:100
|
||||
pulsar:
|
||||
command:
|
||||
|
|
@ -624,7 +624,7 @@ services:
|
|||
reservations:
|
||||
cpus: '0.1'
|
||||
memory: 128M
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.8
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.9
|
||||
restart: on-failure:100
|
||||
query-graph-embeddings:
|
||||
command:
|
||||
|
|
@ -641,7 +641,7 @@ services:
|
|||
reservations:
|
||||
cpus: '0.1'
|
||||
memory: 128M
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.8
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.9
|
||||
restart: on-failure:100
|
||||
query-triples:
|
||||
command:
|
||||
|
|
@ -658,7 +658,7 @@ services:
|
|||
reservations:
|
||||
cpus: '0.1'
|
||||
memory: 512M
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.8
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.9
|
||||
restart: on-failure:100
|
||||
store-doc-embeddings:
|
||||
command:
|
||||
|
|
@ -675,7 +675,7 @@ services:
|
|||
reservations:
|
||||
cpus: '0.1'
|
||||
memory: 128M
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.8
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.9
|
||||
restart: on-failure:100
|
||||
store-graph-embeddings:
|
||||
command:
|
||||
|
|
@ -692,7 +692,7 @@ services:
|
|||
reservations:
|
||||
cpus: '0.1'
|
||||
memory: 128M
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.8
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.9
|
||||
restart: on-failure:100
|
||||
store-triples:
|
||||
command:
|
||||
|
|
@ -709,7 +709,7 @@ services:
|
|||
reservations:
|
||||
cpus: '0.1'
|
||||
memory: 128M
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.8
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.9
|
||||
restart: on-failure:100
|
||||
text-completion:
|
||||
command:
|
||||
|
|
@ -730,7 +730,7 @@ services:
|
|||
reservations:
|
||||
cpus: '0.1'
|
||||
memory: 128M
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.8
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.9
|
||||
restart: on-failure:100
|
||||
text-completion-rag:
|
||||
command:
|
||||
|
|
@ -755,7 +755,7 @@ services:
|
|||
reservations:
|
||||
cpus: '0.1'
|
||||
memory: 128M
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.8
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.9
|
||||
restart: on-failure:100
|
||||
vectorize:
|
||||
command:
|
||||
|
|
@ -770,7 +770,7 @@ services:
|
|||
reservations:
|
||||
cpus: '0.5'
|
||||
memory: 512M
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.8
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.9
|
||||
restart: on-failure:100
|
||||
volumes:
|
||||
cassandra: {}
|
||||
|
|
|
|||
|
|
@ -16,7 +16,7 @@ services:
|
|||
reservations:
|
||||
cpus: '0.1'
|
||||
memory: 128M
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.8
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.9
|
||||
restart: on-failure:100
|
||||
embeddings:
|
||||
command:
|
||||
|
|
@ -33,7 +33,7 @@ services:
|
|||
reservations:
|
||||
cpus: '0.5'
|
||||
memory: 400M
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.8
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.9
|
||||
restart: on-failure:100
|
||||
grafana:
|
||||
deploy:
|
||||
|
|
@ -78,7 +78,7 @@ services:
|
|||
reservations:
|
||||
cpus: '0.1'
|
||||
memory: 128M
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.8
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.9
|
||||
restart: on-failure:100
|
||||
init-pulsar:
|
||||
command:
|
||||
|
|
@ -93,7 +93,7 @@ services:
|
|||
reservations:
|
||||
cpus: '0.1'
|
||||
memory: 128M
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.8
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.9
|
||||
restart: on-failure:100
|
||||
kg-extract-definitions:
|
||||
command:
|
||||
|
|
@ -108,7 +108,7 @@ services:
|
|||
reservations:
|
||||
cpus: '0.1'
|
||||
memory: 128M
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.8
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.9
|
||||
restart: on-failure:100
|
||||
kg-extract-relationships:
|
||||
command:
|
||||
|
|
@ -123,7 +123,7 @@ services:
|
|||
reservations:
|
||||
cpus: '0.1'
|
||||
memory: 128M
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.8
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.9
|
||||
restart: on-failure:100
|
||||
kg-extract-topics:
|
||||
command:
|
||||
|
|
@ -138,7 +138,7 @@ services:
|
|||
reservations:
|
||||
cpus: '0.1'
|
||||
memory: 128M
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.8
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.9
|
||||
restart: on-failure:100
|
||||
metering:
|
||||
command:
|
||||
|
|
@ -153,7 +153,7 @@ services:
|
|||
reservations:
|
||||
cpus: '0.1'
|
||||
memory: 128M
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.8
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.9
|
||||
restart: on-failure:100
|
||||
metering-rag:
|
||||
command:
|
||||
|
|
@ -170,7 +170,7 @@ services:
|
|||
reservations:
|
||||
cpus: '0.1'
|
||||
memory: 128M
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.8
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.9
|
||||
restart: on-failure:100
|
||||
neo4j:
|
||||
deploy:
|
||||
|
|
@ -203,7 +203,7 @@ services:
|
|||
reservations:
|
||||
cpus: '0.1'
|
||||
memory: 128M
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.8
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.9
|
||||
restart: on-failure:100
|
||||
prometheus:
|
||||
deploy:
|
||||
|
|
@ -393,7 +393,7 @@ services:
|
|||
reservations:
|
||||
cpus: '0.1'
|
||||
memory: 128M
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.8
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.9
|
||||
restart: on-failure:100
|
||||
prompt-rag:
|
||||
command:
|
||||
|
|
@ -571,7 +571,7 @@ services:
|
|||
reservations:
|
||||
cpus: '0.1'
|
||||
memory: 128M
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.8
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.9
|
||||
restart: on-failure:100
|
||||
pulsar:
|
||||
command:
|
||||
|
|
@ -625,7 +625,7 @@ services:
|
|||
reservations:
|
||||
cpus: '0.1'
|
||||
memory: 128M
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.8
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.9
|
||||
restart: on-failure:100
|
||||
query-graph-embeddings:
|
||||
command:
|
||||
|
|
@ -642,7 +642,7 @@ services:
|
|||
reservations:
|
||||
cpus: '0.1'
|
||||
memory: 128M
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.8
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.9
|
||||
restart: on-failure:100
|
||||
query-triples:
|
||||
command:
|
||||
|
|
@ -659,7 +659,7 @@ services:
|
|||
reservations:
|
||||
cpus: '0.1'
|
||||
memory: 128M
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.8
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.9
|
||||
restart: on-failure:100
|
||||
store-doc-embeddings:
|
||||
command:
|
||||
|
|
@ -676,7 +676,7 @@ services:
|
|||
reservations:
|
||||
cpus: '0.1'
|
||||
memory: 128M
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.8
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.9
|
||||
restart: on-failure:100
|
||||
store-graph-embeddings:
|
||||
command:
|
||||
|
|
@ -693,7 +693,7 @@ services:
|
|||
reservations:
|
||||
cpus: '0.1'
|
||||
memory: 128M
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.8
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.9
|
||||
restart: on-failure:100
|
||||
store-triples:
|
||||
command:
|
||||
|
|
@ -710,7 +710,7 @@ services:
|
|||
reservations:
|
||||
cpus: '0.1'
|
||||
memory: 128M
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.8
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.9
|
||||
restart: on-failure:100
|
||||
text-completion:
|
||||
command:
|
||||
|
|
@ -731,7 +731,7 @@ services:
|
|||
reservations:
|
||||
cpus: '0.1'
|
||||
memory: 128M
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.8
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.9
|
||||
restart: on-failure:100
|
||||
text-completion-rag:
|
||||
command:
|
||||
|
|
@ -756,7 +756,7 @@ services:
|
|||
reservations:
|
||||
cpus: '0.1'
|
||||
memory: 128M
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.8
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.9
|
||||
restart: on-failure:100
|
||||
vectorize:
|
||||
command:
|
||||
|
|
@ -771,7 +771,7 @@ services:
|
|||
reservations:
|
||||
cpus: '0.5'
|
||||
memory: 512M
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.8
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.9
|
||||
restart: on-failure:100
|
||||
volumes:
|
||||
grafana-storage: {}
|
||||
|
|
|
|||
|
|
@ -33,7 +33,7 @@ services:
|
|||
reservations:
|
||||
cpus: '0.1'
|
||||
memory: 128M
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.8
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.9
|
||||
restart: on-failure:100
|
||||
embeddings:
|
||||
command:
|
||||
|
|
@ -50,7 +50,7 @@ services:
|
|||
reservations:
|
||||
cpus: '0.5'
|
||||
memory: 400M
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.8
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.9
|
||||
restart: on-failure:100
|
||||
grafana:
|
||||
deploy:
|
||||
|
|
@ -95,7 +95,7 @@ services:
|
|||
reservations:
|
||||
cpus: '0.1'
|
||||
memory: 128M
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.8
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.9
|
||||
restart: on-failure:100
|
||||
init-pulsar:
|
||||
command:
|
||||
|
|
@ -110,7 +110,7 @@ services:
|
|||
reservations:
|
||||
cpus: '0.1'
|
||||
memory: 128M
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.8
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.9
|
||||
restart: on-failure:100
|
||||
kg-extract-definitions:
|
||||
command:
|
||||
|
|
@ -125,7 +125,7 @@ services:
|
|||
reservations:
|
||||
cpus: '0.1'
|
||||
memory: 128M
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.8
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.9
|
||||
restart: on-failure:100
|
||||
kg-extract-relationships:
|
||||
command:
|
||||
|
|
@ -140,7 +140,7 @@ services:
|
|||
reservations:
|
||||
cpus: '0.1'
|
||||
memory: 128M
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.8
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.9
|
||||
restart: on-failure:100
|
||||
kg-extract-topics:
|
||||
command:
|
||||
|
|
@ -155,7 +155,7 @@ services:
|
|||
reservations:
|
||||
cpus: '0.1'
|
||||
memory: 128M
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.8
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.9
|
||||
restart: on-failure:100
|
||||
metering:
|
||||
command:
|
||||
|
|
@ -170,7 +170,7 @@ services:
|
|||
reservations:
|
||||
cpus: '0.1'
|
||||
memory: 128M
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.8
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.9
|
||||
restart: on-failure:100
|
||||
metering-rag:
|
||||
command:
|
||||
|
|
@ -187,7 +187,7 @@ services:
|
|||
reservations:
|
||||
cpus: '0.1'
|
||||
memory: 128M
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.8
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.9
|
||||
restart: on-failure:100
|
||||
pdf-decoder:
|
||||
command:
|
||||
|
|
@ -202,7 +202,7 @@ services:
|
|||
reservations:
|
||||
cpus: '0.1'
|
||||
memory: 128M
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.8
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.9
|
||||
restart: on-failure:100
|
||||
prometheus:
|
||||
deploy:
|
||||
|
|
@ -392,7 +392,7 @@ services:
|
|||
reservations:
|
||||
cpus: '0.1'
|
||||
memory: 128M
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.8
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.9
|
||||
restart: on-failure:100
|
||||
prompt-rag:
|
||||
command:
|
||||
|
|
@ -570,7 +570,7 @@ services:
|
|||
reservations:
|
||||
cpus: '0.1'
|
||||
memory: 128M
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.8
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.9
|
||||
restart: on-failure:100
|
||||
pulsar:
|
||||
command:
|
||||
|
|
@ -624,7 +624,7 @@ services:
|
|||
reservations:
|
||||
cpus: '0.1'
|
||||
memory: 128M
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.8
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.9
|
||||
restart: on-failure:100
|
||||
query-graph-embeddings:
|
||||
command:
|
||||
|
|
@ -641,7 +641,7 @@ services:
|
|||
reservations:
|
||||
cpus: '0.1'
|
||||
memory: 128M
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.8
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.9
|
||||
restart: on-failure:100
|
||||
query-triples:
|
||||
command:
|
||||
|
|
@ -658,7 +658,7 @@ services:
|
|||
reservations:
|
||||
cpus: '0.1'
|
||||
memory: 512M
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.8
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.9
|
||||
restart: on-failure:100
|
||||
store-doc-embeddings:
|
||||
command:
|
||||
|
|
@ -675,7 +675,7 @@ services:
|
|||
reservations:
|
||||
cpus: '0.1'
|
||||
memory: 128M
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.8
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.9
|
||||
restart: on-failure:100
|
||||
store-graph-embeddings:
|
||||
command:
|
||||
|
|
@ -692,7 +692,7 @@ services:
|
|||
reservations:
|
||||
cpus: '0.1'
|
||||
memory: 128M
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.8
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.9
|
||||
restart: on-failure:100
|
||||
store-triples:
|
||||
command:
|
||||
|
|
@ -709,7 +709,7 @@ services:
|
|||
reservations:
|
||||
cpus: '0.1'
|
||||
memory: 128M
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.8
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.9
|
||||
restart: on-failure:100
|
||||
text-completion:
|
||||
command:
|
||||
|
|
@ -728,7 +728,7 @@ services:
|
|||
reservations:
|
||||
cpus: '0.1'
|
||||
memory: 128M
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.8
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.9
|
||||
restart: on-failure:100
|
||||
text-completion-rag:
|
||||
command:
|
||||
|
|
@ -751,7 +751,7 @@ services:
|
|||
reservations:
|
||||
cpus: '0.1'
|
||||
memory: 128M
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.8
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.9
|
||||
restart: on-failure:100
|
||||
vectorize:
|
||||
command:
|
||||
|
|
@ -766,7 +766,7 @@ services:
|
|||
reservations:
|
||||
cpus: '0.5'
|
||||
memory: 512M
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.8
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.9
|
||||
restart: on-failure:100
|
||||
volumes:
|
||||
cassandra: {}
|
||||
|
|
|
|||
|
|
@ -16,7 +16,7 @@ services:
|
|||
reservations:
|
||||
cpus: '0.1'
|
||||
memory: 128M
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.8
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.9
|
||||
restart: on-failure:100
|
||||
embeddings:
|
||||
command:
|
||||
|
|
@ -33,7 +33,7 @@ services:
|
|||
reservations:
|
||||
cpus: '0.5'
|
||||
memory: 400M
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.8
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.9
|
||||
restart: on-failure:100
|
||||
grafana:
|
||||
deploy:
|
||||
|
|
@ -78,7 +78,7 @@ services:
|
|||
reservations:
|
||||
cpus: '0.1'
|
||||
memory: 128M
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.8
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.9
|
||||
restart: on-failure:100
|
||||
init-pulsar:
|
||||
command:
|
||||
|
|
@ -93,7 +93,7 @@ services:
|
|||
reservations:
|
||||
cpus: '0.1'
|
||||
memory: 128M
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.8
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.9
|
||||
restart: on-failure:100
|
||||
kg-extract-definitions:
|
||||
command:
|
||||
|
|
@ -108,7 +108,7 @@ services:
|
|||
reservations:
|
||||
cpus: '0.1'
|
||||
memory: 128M
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.8
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.9
|
||||
restart: on-failure:100
|
||||
kg-extract-relationships:
|
||||
command:
|
||||
|
|
@ -123,7 +123,7 @@ services:
|
|||
reservations:
|
||||
cpus: '0.1'
|
||||
memory: 128M
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.8
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.9
|
||||
restart: on-failure:100
|
||||
kg-extract-topics:
|
||||
command:
|
||||
|
|
@ -138,7 +138,7 @@ services:
|
|||
reservations:
|
||||
cpus: '0.1'
|
||||
memory: 128M
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.8
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.9
|
||||
restart: on-failure:100
|
||||
metering:
|
||||
command:
|
||||
|
|
@ -153,7 +153,7 @@ services:
|
|||
reservations:
|
||||
cpus: '0.1'
|
||||
memory: 128M
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.8
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.9
|
||||
restart: on-failure:100
|
||||
metering-rag:
|
||||
command:
|
||||
|
|
@ -170,7 +170,7 @@ services:
|
|||
reservations:
|
||||
cpus: '0.1'
|
||||
memory: 128M
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.8
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.9
|
||||
restart: on-failure:100
|
||||
neo4j:
|
||||
deploy:
|
||||
|
|
@ -203,7 +203,7 @@ services:
|
|||
reservations:
|
||||
cpus: '0.1'
|
||||
memory: 128M
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.8
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.9
|
||||
restart: on-failure:100
|
||||
prometheus:
|
||||
deploy:
|
||||
|
|
@ -393,7 +393,7 @@ services:
|
|||
reservations:
|
||||
cpus: '0.1'
|
||||
memory: 128M
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.8
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.9
|
||||
restart: on-failure:100
|
||||
prompt-rag:
|
||||
command:
|
||||
|
|
@ -571,7 +571,7 @@ services:
|
|||
reservations:
|
||||
cpus: '0.1'
|
||||
memory: 128M
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.8
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.9
|
||||
restart: on-failure:100
|
||||
pulsar:
|
||||
command:
|
||||
|
|
@ -625,7 +625,7 @@ services:
|
|||
reservations:
|
||||
cpus: '0.1'
|
||||
memory: 128M
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.8
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.9
|
||||
restart: on-failure:100
|
||||
query-graph-embeddings:
|
||||
command:
|
||||
|
|
@ -642,7 +642,7 @@ services:
|
|||
reservations:
|
||||
cpus: '0.1'
|
||||
memory: 128M
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.8
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.9
|
||||
restart: on-failure:100
|
||||
query-triples:
|
||||
command:
|
||||
|
|
@ -659,7 +659,7 @@ services:
|
|||
reservations:
|
||||
cpus: '0.1'
|
||||
memory: 128M
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.8
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.9
|
||||
restart: on-failure:100
|
||||
store-doc-embeddings:
|
||||
command:
|
||||
|
|
@ -676,7 +676,7 @@ services:
|
|||
reservations:
|
||||
cpus: '0.1'
|
||||
memory: 128M
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.8
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.9
|
||||
restart: on-failure:100
|
||||
store-graph-embeddings:
|
||||
command:
|
||||
|
|
@ -693,7 +693,7 @@ services:
|
|||
reservations:
|
||||
cpus: '0.1'
|
||||
memory: 128M
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.8
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.9
|
||||
restart: on-failure:100
|
||||
store-triples:
|
||||
command:
|
||||
|
|
@ -710,7 +710,7 @@ services:
|
|||
reservations:
|
||||
cpus: '0.1'
|
||||
memory: 128M
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.8
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.9
|
||||
restart: on-failure:100
|
||||
text-completion:
|
||||
command:
|
||||
|
|
@ -729,7 +729,7 @@ services:
|
|||
reservations:
|
||||
cpus: '0.1'
|
||||
memory: 128M
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.8
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.9
|
||||
restart: on-failure:100
|
||||
text-completion-rag:
|
||||
command:
|
||||
|
|
@ -752,7 +752,7 @@ services:
|
|||
reservations:
|
||||
cpus: '0.1'
|
||||
memory: 128M
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.8
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.9
|
||||
restart: on-failure:100
|
||||
vectorize:
|
||||
command:
|
||||
|
|
@ -767,7 +767,7 @@ services:
|
|||
reservations:
|
||||
cpus: '0.5'
|
||||
memory: 512M
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.8
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.9
|
||||
restart: on-failure:100
|
||||
volumes:
|
||||
grafana-storage: {}
|
||||
|
|
|
|||
|
|
@ -33,7 +33,7 @@ services:
|
|||
reservations:
|
||||
cpus: '0.1'
|
||||
memory: 128M
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.8
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.9
|
||||
restart: on-failure:100
|
||||
embeddings:
|
||||
command:
|
||||
|
|
@ -50,7 +50,7 @@ services:
|
|||
reservations:
|
||||
cpus: '0.5'
|
||||
memory: 400M
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.8
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.9
|
||||
restart: on-failure:100
|
||||
grafana:
|
||||
deploy:
|
||||
|
|
@ -95,7 +95,7 @@ services:
|
|||
reservations:
|
||||
cpus: '0.1'
|
||||
memory: 128M
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.8
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.9
|
||||
restart: on-failure:100
|
||||
init-pulsar:
|
||||
command:
|
||||
|
|
@ -110,7 +110,7 @@ services:
|
|||
reservations:
|
||||
cpus: '0.1'
|
||||
memory: 128M
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.8
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.9
|
||||
restart: on-failure:100
|
||||
kg-extract-definitions:
|
||||
command:
|
||||
|
|
@ -125,7 +125,7 @@ services:
|
|||
reservations:
|
||||
cpus: '0.1'
|
||||
memory: 128M
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.8
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.9
|
||||
restart: on-failure:100
|
||||
kg-extract-relationships:
|
||||
command:
|
||||
|
|
@ -140,7 +140,7 @@ services:
|
|||
reservations:
|
||||
cpus: '0.1'
|
||||
memory: 128M
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.8
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.9
|
||||
restart: on-failure:100
|
||||
kg-extract-topics:
|
||||
command:
|
||||
|
|
@ -155,7 +155,7 @@ services:
|
|||
reservations:
|
||||
cpus: '0.1'
|
||||
memory: 128M
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.8
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.9
|
||||
restart: on-failure:100
|
||||
metering:
|
||||
command:
|
||||
|
|
@ -170,7 +170,7 @@ services:
|
|||
reservations:
|
||||
cpus: '0.1'
|
||||
memory: 128M
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.8
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.9
|
||||
restart: on-failure:100
|
||||
metering-rag:
|
||||
command:
|
||||
|
|
@ -187,7 +187,7 @@ services:
|
|||
reservations:
|
||||
cpus: '0.1'
|
||||
memory: 128M
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.8
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.9
|
||||
restart: on-failure:100
|
||||
pdf-decoder:
|
||||
command:
|
||||
|
|
@ -202,7 +202,7 @@ services:
|
|||
reservations:
|
||||
cpus: '0.1'
|
||||
memory: 128M
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.8
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.9
|
||||
restart: on-failure:100
|
||||
prometheus:
|
||||
deploy:
|
||||
|
|
@ -237,7 +237,7 @@ services:
|
|||
reservations:
|
||||
cpus: '0.1'
|
||||
memory: 128M
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.8
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.9
|
||||
restart: on-failure:100
|
||||
prompt-rag:
|
||||
command:
|
||||
|
|
@ -260,7 +260,7 @@ services:
|
|||
reservations:
|
||||
cpus: '0.1'
|
||||
memory: 128M
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.8
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.9
|
||||
restart: on-failure:100
|
||||
pulsar:
|
||||
command:
|
||||
|
|
@ -314,7 +314,7 @@ services:
|
|||
reservations:
|
||||
cpus: '0.1'
|
||||
memory: 128M
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.8
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.9
|
||||
restart: on-failure:100
|
||||
query-graph-embeddings:
|
||||
command:
|
||||
|
|
@ -331,7 +331,7 @@ services:
|
|||
reservations:
|
||||
cpus: '0.1'
|
||||
memory: 128M
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.8
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.9
|
||||
restart: on-failure:100
|
||||
query-triples:
|
||||
command:
|
||||
|
|
@ -348,7 +348,7 @@ services:
|
|||
reservations:
|
||||
cpus: '0.1'
|
||||
memory: 512M
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.8
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.9
|
||||
restart: on-failure:100
|
||||
store-doc-embeddings:
|
||||
command:
|
||||
|
|
@ -365,7 +365,7 @@ services:
|
|||
reservations:
|
||||
cpus: '0.1'
|
||||
memory: 128M
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.8
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.9
|
||||
restart: on-failure:100
|
||||
store-graph-embeddings:
|
||||
command:
|
||||
|
|
@ -382,7 +382,7 @@ services:
|
|||
reservations:
|
||||
cpus: '0.1'
|
||||
memory: 128M
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.8
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.9
|
||||
restart: on-failure:100
|
||||
store-triples:
|
||||
command:
|
||||
|
|
@ -399,7 +399,7 @@ services:
|
|||
reservations:
|
||||
cpus: '0.1'
|
||||
memory: 128M
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.8
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.9
|
||||
restart: on-failure:100
|
||||
text-completion:
|
||||
command:
|
||||
|
|
@ -418,7 +418,7 @@ services:
|
|||
reservations:
|
||||
cpus: '0.1'
|
||||
memory: 128M
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.8
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.9
|
||||
restart: on-failure:100
|
||||
text-completion-rag:
|
||||
command:
|
||||
|
|
@ -441,7 +441,7 @@ services:
|
|||
reservations:
|
||||
cpus: '0.1'
|
||||
memory: 128M
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.8
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.9
|
||||
restart: on-failure:100
|
||||
vectorize:
|
||||
command:
|
||||
|
|
@ -456,7 +456,7 @@ services:
|
|||
reservations:
|
||||
cpus: '0.5'
|
||||
memory: 512M
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.8
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.9
|
||||
restart: on-failure:100
|
||||
volumes:
|
||||
cassandra: {}
|
||||
|
|
|
|||
|
|
@ -16,7 +16,7 @@ services:
|
|||
reservations:
|
||||
cpus: '0.1'
|
||||
memory: 128M
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.8
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.9
|
||||
restart: on-failure:100
|
||||
embeddings:
|
||||
command:
|
||||
|
|
@ -33,7 +33,7 @@ services:
|
|||
reservations:
|
||||
cpus: '0.5'
|
||||
memory: 400M
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.8
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.9
|
||||
restart: on-failure:100
|
||||
grafana:
|
||||
deploy:
|
||||
|
|
@ -78,7 +78,7 @@ services:
|
|||
reservations:
|
||||
cpus: '0.1'
|
||||
memory: 128M
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.8
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.9
|
||||
restart: on-failure:100
|
||||
init-pulsar:
|
||||
command:
|
||||
|
|
@ -93,7 +93,7 @@ services:
|
|||
reservations:
|
||||
cpus: '0.1'
|
||||
memory: 128M
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.8
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.9
|
||||
restart: on-failure:100
|
||||
kg-extract-definitions:
|
||||
command:
|
||||
|
|
@ -108,7 +108,7 @@ services:
|
|||
reservations:
|
||||
cpus: '0.1'
|
||||
memory: 128M
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.8
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.9
|
||||
restart: on-failure:100
|
||||
kg-extract-relationships:
|
||||
command:
|
||||
|
|
@ -123,7 +123,7 @@ services:
|
|||
reservations:
|
||||
cpus: '0.1'
|
||||
memory: 128M
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.8
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.9
|
||||
restart: on-failure:100
|
||||
kg-extract-topics:
|
||||
command:
|
||||
|
|
@ -138,7 +138,7 @@ services:
|
|||
reservations:
|
||||
cpus: '0.1'
|
||||
memory: 128M
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.8
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.9
|
||||
restart: on-failure:100
|
||||
metering:
|
||||
command:
|
||||
|
|
@ -153,7 +153,7 @@ services:
|
|||
reservations:
|
||||
cpus: '0.1'
|
||||
memory: 128M
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.8
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.9
|
||||
restart: on-failure:100
|
||||
metering-rag:
|
||||
command:
|
||||
|
|
@ -170,7 +170,7 @@ services:
|
|||
reservations:
|
||||
cpus: '0.1'
|
||||
memory: 128M
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.8
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.9
|
||||
restart: on-failure:100
|
||||
neo4j:
|
||||
deploy:
|
||||
|
|
@ -203,7 +203,7 @@ services:
|
|||
reservations:
|
||||
cpus: '0.1'
|
||||
memory: 128M
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.8
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.9
|
||||
restart: on-failure:100
|
||||
prometheus:
|
||||
deploy:
|
||||
|
|
@ -238,7 +238,7 @@ services:
|
|||
reservations:
|
||||
cpus: '0.1'
|
||||
memory: 128M
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.8
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.9
|
||||
restart: on-failure:100
|
||||
prompt-rag:
|
||||
command:
|
||||
|
|
@ -261,7 +261,7 @@ services:
|
|||
reservations:
|
||||
cpus: '0.1'
|
||||
memory: 128M
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.8
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.9
|
||||
restart: on-failure:100
|
||||
pulsar:
|
||||
command:
|
||||
|
|
@ -315,7 +315,7 @@ services:
|
|||
reservations:
|
||||
cpus: '0.1'
|
||||
memory: 128M
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.8
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.9
|
||||
restart: on-failure:100
|
||||
query-graph-embeddings:
|
||||
command:
|
||||
|
|
@ -332,7 +332,7 @@ services:
|
|||
reservations:
|
||||
cpus: '0.1'
|
||||
memory: 128M
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.8
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.9
|
||||
restart: on-failure:100
|
||||
query-triples:
|
||||
command:
|
||||
|
|
@ -349,7 +349,7 @@ services:
|
|||
reservations:
|
||||
cpus: '0.1'
|
||||
memory: 128M
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.8
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.9
|
||||
restart: on-failure:100
|
||||
store-doc-embeddings:
|
||||
command:
|
||||
|
|
@ -366,7 +366,7 @@ services:
|
|||
reservations:
|
||||
cpus: '0.1'
|
||||
memory: 128M
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.8
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.9
|
||||
restart: on-failure:100
|
||||
store-graph-embeddings:
|
||||
command:
|
||||
|
|
@ -383,7 +383,7 @@ services:
|
|||
reservations:
|
||||
cpus: '0.1'
|
||||
memory: 128M
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.8
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.9
|
||||
restart: on-failure:100
|
||||
store-triples:
|
||||
command:
|
||||
|
|
@ -400,7 +400,7 @@ services:
|
|||
reservations:
|
||||
cpus: '0.1'
|
||||
memory: 128M
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.8
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.9
|
||||
restart: on-failure:100
|
||||
text-completion:
|
||||
command:
|
||||
|
|
@ -419,7 +419,7 @@ services:
|
|||
reservations:
|
||||
cpus: '0.1'
|
||||
memory: 128M
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.8
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.9
|
||||
restart: on-failure:100
|
||||
text-completion-rag:
|
||||
command:
|
||||
|
|
@ -442,7 +442,7 @@ services:
|
|||
reservations:
|
||||
cpus: '0.1'
|
||||
memory: 128M
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.8
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.9
|
||||
restart: on-failure:100
|
||||
vectorize:
|
||||
command:
|
||||
|
|
@ -457,7 +457,7 @@ services:
|
|||
reservations:
|
||||
cpus: '0.5'
|
||||
memory: 512M
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.8
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.9
|
||||
restart: on-failure:100
|
||||
volumes:
|
||||
grafana-storage: {}
|
||||
|
|
|
|||
|
|
@ -33,7 +33,7 @@ services:
|
|||
reservations:
|
||||
cpus: '0.1'
|
||||
memory: 128M
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.8
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.9
|
||||
restart: on-failure:100
|
||||
embeddings:
|
||||
command:
|
||||
|
|
@ -50,7 +50,7 @@ services:
|
|||
reservations:
|
||||
cpus: '0.5'
|
||||
memory: 400M
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.8
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.9
|
||||
restart: on-failure:100
|
||||
grafana:
|
||||
deploy:
|
||||
|
|
@ -95,7 +95,7 @@ services:
|
|||
reservations:
|
||||
cpus: '0.1'
|
||||
memory: 128M
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.8
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.9
|
||||
restart: on-failure:100
|
||||
init-pulsar:
|
||||
command:
|
||||
|
|
@ -110,7 +110,7 @@ services:
|
|||
reservations:
|
||||
cpus: '0.1'
|
||||
memory: 128M
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.8
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.9
|
||||
restart: on-failure:100
|
||||
kg-extract-definitions:
|
||||
command:
|
||||
|
|
@ -125,7 +125,7 @@ services:
|
|||
reservations:
|
||||
cpus: '0.1'
|
||||
memory: 128M
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.8
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.9
|
||||
restart: on-failure:100
|
||||
kg-extract-relationships:
|
||||
command:
|
||||
|
|
@ -140,7 +140,7 @@ services:
|
|||
reservations:
|
||||
cpus: '0.1'
|
||||
memory: 128M
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.8
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.9
|
||||
restart: on-failure:100
|
||||
kg-extract-topics:
|
||||
command:
|
||||
|
|
@ -155,7 +155,7 @@ services:
|
|||
reservations:
|
||||
cpus: '0.1'
|
||||
memory: 128M
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.8
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.9
|
||||
restart: on-failure:100
|
||||
metering:
|
||||
command:
|
||||
|
|
@ -170,7 +170,7 @@ services:
|
|||
reservations:
|
||||
cpus: '0.1'
|
||||
memory: 128M
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.8
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.9
|
||||
restart: on-failure:100
|
||||
metering-rag:
|
||||
command:
|
||||
|
|
@ -187,7 +187,7 @@ services:
|
|||
reservations:
|
||||
cpus: '0.1'
|
||||
memory: 128M
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.8
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.9
|
||||
restart: on-failure:100
|
||||
pdf-decoder:
|
||||
command:
|
||||
|
|
@ -202,7 +202,7 @@ services:
|
|||
reservations:
|
||||
cpus: '0.1'
|
||||
memory: 128M
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.8
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.9
|
||||
restart: on-failure:100
|
||||
prometheus:
|
||||
deploy:
|
||||
|
|
@ -237,7 +237,7 @@ services:
|
|||
reservations:
|
||||
cpus: '0.1'
|
||||
memory: 128M
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.8
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.9
|
||||
restart: on-failure:100
|
||||
prompt-rag:
|
||||
command:
|
||||
|
|
@ -260,7 +260,7 @@ services:
|
|||
reservations:
|
||||
cpus: '0.1'
|
||||
memory: 128M
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.8
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.9
|
||||
restart: on-failure:100
|
||||
pulsar:
|
||||
command:
|
||||
|
|
@ -314,7 +314,7 @@ services:
|
|||
reservations:
|
||||
cpus: '0.1'
|
||||
memory: 128M
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.8
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.9
|
||||
restart: on-failure:100
|
||||
query-graph-embeddings:
|
||||
command:
|
||||
|
|
@ -331,7 +331,7 @@ services:
|
|||
reservations:
|
||||
cpus: '0.1'
|
||||
memory: 128M
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.8
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.9
|
||||
restart: on-failure:100
|
||||
query-triples:
|
||||
command:
|
||||
|
|
@ -348,7 +348,7 @@ services:
|
|||
reservations:
|
||||
cpus: '0.1'
|
||||
memory: 512M
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.8
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.9
|
||||
restart: on-failure:100
|
||||
store-doc-embeddings:
|
||||
command:
|
||||
|
|
@ -365,7 +365,7 @@ services:
|
|||
reservations:
|
||||
cpus: '0.1'
|
||||
memory: 128M
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.8
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.9
|
||||
restart: on-failure:100
|
||||
store-graph-embeddings:
|
||||
command:
|
||||
|
|
@ -382,7 +382,7 @@ services:
|
|||
reservations:
|
||||
cpus: '0.1'
|
||||
memory: 128M
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.8
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.9
|
||||
restart: on-failure:100
|
||||
store-triples:
|
||||
command:
|
||||
|
|
@ -399,7 +399,7 @@ services:
|
|||
reservations:
|
||||
cpus: '0.1'
|
||||
memory: 128M
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.8
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.9
|
||||
restart: on-failure:100
|
||||
text-completion:
|
||||
command:
|
||||
|
|
@ -418,7 +418,7 @@ services:
|
|||
reservations:
|
||||
cpus: '0.1'
|
||||
memory: 128M
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.8
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.9
|
||||
restart: on-failure:100
|
||||
text-completion-rag:
|
||||
command:
|
||||
|
|
@ -441,7 +441,7 @@ services:
|
|||
reservations:
|
||||
cpus: '0.1'
|
||||
memory: 128M
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.8
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.9
|
||||
restart: on-failure:100
|
||||
vectorize:
|
||||
command:
|
||||
|
|
@ -456,7 +456,7 @@ services:
|
|||
reservations:
|
||||
cpus: '0.5'
|
||||
memory: 512M
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.8
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.9
|
||||
restart: on-failure:100
|
||||
volumes:
|
||||
cassandra: {}
|
||||
|
|
|
|||
|
|
@ -16,7 +16,7 @@ services:
|
|||
reservations:
|
||||
cpus: '0.1'
|
||||
memory: 128M
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.8
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.9
|
||||
restart: on-failure:100
|
||||
embeddings:
|
||||
command:
|
||||
|
|
@ -33,7 +33,7 @@ services:
|
|||
reservations:
|
||||
cpus: '0.5'
|
||||
memory: 400M
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.8
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.9
|
||||
restart: on-failure:100
|
||||
grafana:
|
||||
deploy:
|
||||
|
|
@ -78,7 +78,7 @@ services:
|
|||
reservations:
|
||||
cpus: '0.1'
|
||||
memory: 128M
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.8
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.9
|
||||
restart: on-failure:100
|
||||
init-pulsar:
|
||||
command:
|
||||
|
|
@ -93,7 +93,7 @@ services:
|
|||
reservations:
|
||||
cpus: '0.1'
|
||||
memory: 128M
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.8
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.9
|
||||
restart: on-failure:100
|
||||
kg-extract-definitions:
|
||||
command:
|
||||
|
|
@ -108,7 +108,7 @@ services:
|
|||
reservations:
|
||||
cpus: '0.1'
|
||||
memory: 128M
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.8
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.9
|
||||
restart: on-failure:100
|
||||
kg-extract-relationships:
|
||||
command:
|
||||
|
|
@ -123,7 +123,7 @@ services:
|
|||
reservations:
|
||||
cpus: '0.1'
|
||||
memory: 128M
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.8
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.9
|
||||
restart: on-failure:100
|
||||
kg-extract-topics:
|
||||
command:
|
||||
|
|
@ -138,7 +138,7 @@ services:
|
|||
reservations:
|
||||
cpus: '0.1'
|
||||
memory: 128M
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.8
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.9
|
||||
restart: on-failure:100
|
||||
metering:
|
||||
command:
|
||||
|
|
@ -153,7 +153,7 @@ services:
|
|||
reservations:
|
||||
cpus: '0.1'
|
||||
memory: 128M
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.8
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.9
|
||||
restart: on-failure:100
|
||||
metering-rag:
|
||||
command:
|
||||
|
|
@ -170,7 +170,7 @@ services:
|
|||
reservations:
|
||||
cpus: '0.1'
|
||||
memory: 128M
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.8
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.9
|
||||
restart: on-failure:100
|
||||
neo4j:
|
||||
deploy:
|
||||
|
|
@ -203,7 +203,7 @@ services:
|
|||
reservations:
|
||||
cpus: '0.1'
|
||||
memory: 128M
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.8
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.9
|
||||
restart: on-failure:100
|
||||
prometheus:
|
||||
deploy:
|
||||
|
|
@ -238,7 +238,7 @@ services:
|
|||
reservations:
|
||||
cpus: '0.1'
|
||||
memory: 128M
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.8
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.9
|
||||
restart: on-failure:100
|
||||
prompt-rag:
|
||||
command:
|
||||
|
|
@ -261,7 +261,7 @@ services:
|
|||
reservations:
|
||||
cpus: '0.1'
|
||||
memory: 128M
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.8
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.9
|
||||
restart: on-failure:100
|
||||
pulsar:
|
||||
command:
|
||||
|
|
@ -315,7 +315,7 @@ services:
|
|||
reservations:
|
||||
cpus: '0.1'
|
||||
memory: 128M
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.8
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.9
|
||||
restart: on-failure:100
|
||||
query-graph-embeddings:
|
||||
command:
|
||||
|
|
@ -332,7 +332,7 @@ services:
|
|||
reservations:
|
||||
cpus: '0.1'
|
||||
memory: 128M
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.8
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.9
|
||||
restart: on-failure:100
|
||||
query-triples:
|
||||
command:
|
||||
|
|
@ -349,7 +349,7 @@ services:
|
|||
reservations:
|
||||
cpus: '0.1'
|
||||
memory: 128M
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.8
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.9
|
||||
restart: on-failure:100
|
||||
store-doc-embeddings:
|
||||
command:
|
||||
|
|
@ -366,7 +366,7 @@ services:
|
|||
reservations:
|
||||
cpus: '0.1'
|
||||
memory: 128M
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.8
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.9
|
||||
restart: on-failure:100
|
||||
store-graph-embeddings:
|
||||
command:
|
||||
|
|
@ -383,7 +383,7 @@ services:
|
|||
reservations:
|
||||
cpus: '0.1'
|
||||
memory: 128M
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.8
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.9
|
||||
restart: on-failure:100
|
||||
store-triples:
|
||||
command:
|
||||
|
|
@ -400,7 +400,7 @@ services:
|
|||
reservations:
|
||||
cpus: '0.1'
|
||||
memory: 128M
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.8
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.9
|
||||
restart: on-failure:100
|
||||
text-completion:
|
||||
command:
|
||||
|
|
@ -419,7 +419,7 @@ services:
|
|||
reservations:
|
||||
cpus: '0.1'
|
||||
memory: 128M
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.8
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.9
|
||||
restart: on-failure:100
|
||||
text-completion-rag:
|
||||
command:
|
||||
|
|
@ -442,7 +442,7 @@ services:
|
|||
reservations:
|
||||
cpus: '0.1'
|
||||
memory: 128M
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.8
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.9
|
||||
restart: on-failure:100
|
||||
vectorize:
|
||||
command:
|
||||
|
|
@ -457,7 +457,7 @@ services:
|
|||
reservations:
|
||||
cpus: '0.5'
|
||||
memory: 512M
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.8
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.9
|
||||
restart: on-failure:100
|
||||
volumes:
|
||||
grafana-storage: {}
|
||||
|
|
|
|||
|
|
@ -33,7 +33,7 @@ services:
|
|||
reservations:
|
||||
cpus: '0.1'
|
||||
memory: 128M
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.8
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.9
|
||||
restart: on-failure:100
|
||||
embeddings:
|
||||
command:
|
||||
|
|
@ -50,7 +50,7 @@ services:
|
|||
reservations:
|
||||
cpus: '0.5'
|
||||
memory: 400M
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.8
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.9
|
||||
restart: on-failure:100
|
||||
grafana:
|
||||
deploy:
|
||||
|
|
@ -95,7 +95,7 @@ services:
|
|||
reservations:
|
||||
cpus: '0.1'
|
||||
memory: 128M
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.8
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.9
|
||||
restart: on-failure:100
|
||||
init-pulsar:
|
||||
command:
|
||||
|
|
@ -110,7 +110,7 @@ services:
|
|||
reservations:
|
||||
cpus: '0.1'
|
||||
memory: 128M
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.8
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.9
|
||||
restart: on-failure:100
|
||||
kg-extract-definitions:
|
||||
command:
|
||||
|
|
@ -125,7 +125,7 @@ services:
|
|||
reservations:
|
||||
cpus: '0.1'
|
||||
memory: 128M
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.8
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.9
|
||||
restart: on-failure:100
|
||||
kg-extract-relationships:
|
||||
command:
|
||||
|
|
@ -140,7 +140,7 @@ services:
|
|||
reservations:
|
||||
cpus: '0.1'
|
||||
memory: 128M
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.8
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.9
|
||||
restart: on-failure:100
|
||||
kg-extract-topics:
|
||||
command:
|
||||
|
|
@ -155,7 +155,7 @@ services:
|
|||
reservations:
|
||||
cpus: '0.1'
|
||||
memory: 128M
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.8
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.9
|
||||
restart: on-failure:100
|
||||
metering:
|
||||
command:
|
||||
|
|
@ -170,7 +170,7 @@ services:
|
|||
reservations:
|
||||
cpus: '0.1'
|
||||
memory: 128M
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.8
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.9
|
||||
restart: on-failure:100
|
||||
metering-rag:
|
||||
command:
|
||||
|
|
@ -187,7 +187,7 @@ services:
|
|||
reservations:
|
||||
cpus: '0.1'
|
||||
memory: 128M
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.8
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.9
|
||||
restart: on-failure:100
|
||||
pdf-decoder:
|
||||
command:
|
||||
|
|
@ -202,7 +202,7 @@ services:
|
|||
reservations:
|
||||
cpus: '0.1'
|
||||
memory: 128M
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.8
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.9
|
||||
restart: on-failure:100
|
||||
prometheus:
|
||||
deploy:
|
||||
|
|
@ -392,7 +392,7 @@ services:
|
|||
reservations:
|
||||
cpus: '0.1'
|
||||
memory: 128M
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.8
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.9
|
||||
restart: on-failure:100
|
||||
prompt-rag:
|
||||
command:
|
||||
|
|
@ -570,7 +570,7 @@ services:
|
|||
reservations:
|
||||
cpus: '0.1'
|
||||
memory: 128M
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.8
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.9
|
||||
restart: on-failure:100
|
||||
pulsar:
|
||||
command:
|
||||
|
|
@ -624,7 +624,7 @@ services:
|
|||
reservations:
|
||||
cpus: '0.1'
|
||||
memory: 128M
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.8
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.9
|
||||
restart: on-failure:100
|
||||
query-graph-embeddings:
|
||||
command:
|
||||
|
|
@ -641,7 +641,7 @@ services:
|
|||
reservations:
|
||||
cpus: '0.1'
|
||||
memory: 128M
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.8
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.9
|
||||
restart: on-failure:100
|
||||
query-triples:
|
||||
command:
|
||||
|
|
@ -658,7 +658,7 @@ services:
|
|||
reservations:
|
||||
cpus: '0.1'
|
||||
memory: 512M
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.8
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.9
|
||||
restart: on-failure:100
|
||||
store-doc-embeddings:
|
||||
command:
|
||||
|
|
@ -675,7 +675,7 @@ services:
|
|||
reservations:
|
||||
cpus: '0.1'
|
||||
memory: 128M
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.8
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.9
|
||||
restart: on-failure:100
|
||||
store-graph-embeddings:
|
||||
command:
|
||||
|
|
@ -692,7 +692,7 @@ services:
|
|||
reservations:
|
||||
cpus: '0.1'
|
||||
memory: 128M
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.8
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.9
|
||||
restart: on-failure:100
|
||||
store-triples:
|
||||
command:
|
||||
|
|
@ -709,7 +709,7 @@ services:
|
|||
reservations:
|
||||
cpus: '0.1'
|
||||
memory: 128M
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.8
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.9
|
||||
restart: on-failure:100
|
||||
text-completion:
|
||||
command:
|
||||
|
|
@ -732,7 +732,7 @@ services:
|
|||
reservations:
|
||||
cpus: '0.1'
|
||||
memory: 128M
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.8
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.9
|
||||
restart: on-failure:100
|
||||
text-completion-rag:
|
||||
command:
|
||||
|
|
@ -759,7 +759,7 @@ services:
|
|||
reservations:
|
||||
cpus: '0.1'
|
||||
memory: 128M
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.8
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.9
|
||||
restart: on-failure:100
|
||||
vectorize:
|
||||
command:
|
||||
|
|
@ -774,7 +774,7 @@ services:
|
|||
reservations:
|
||||
cpus: '0.5'
|
||||
memory: 512M
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.8
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.9
|
||||
restart: on-failure:100
|
||||
volumes:
|
||||
cassandra: {}
|
||||
|
|
|
|||
|
|
@ -16,7 +16,7 @@ services:
|
|||
reservations:
|
||||
cpus: '0.1'
|
||||
memory: 128M
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.8
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.9
|
||||
restart: on-failure:100
|
||||
embeddings:
|
||||
command:
|
||||
|
|
@ -33,7 +33,7 @@ services:
|
|||
reservations:
|
||||
cpus: '0.5'
|
||||
memory: 400M
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.8
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.9
|
||||
restart: on-failure:100
|
||||
grafana:
|
||||
deploy:
|
||||
|
|
@ -78,7 +78,7 @@ services:
|
|||
reservations:
|
||||
cpus: '0.1'
|
||||
memory: 128M
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.8
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.9
|
||||
restart: on-failure:100
|
||||
init-pulsar:
|
||||
command:
|
||||
|
|
@ -93,7 +93,7 @@ services:
|
|||
reservations:
|
||||
cpus: '0.1'
|
||||
memory: 128M
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.8
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.9
|
||||
restart: on-failure:100
|
||||
kg-extract-definitions:
|
||||
command:
|
||||
|
|
@ -108,7 +108,7 @@ services:
|
|||
reservations:
|
||||
cpus: '0.1'
|
||||
memory: 128M
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.8
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.9
|
||||
restart: on-failure:100
|
||||
kg-extract-relationships:
|
||||
command:
|
||||
|
|
@ -123,7 +123,7 @@ services:
|
|||
reservations:
|
||||
cpus: '0.1'
|
||||
memory: 128M
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.8
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.9
|
||||
restart: on-failure:100
|
||||
kg-extract-topics:
|
||||
command:
|
||||
|
|
@ -138,7 +138,7 @@ services:
|
|||
reservations:
|
||||
cpus: '0.1'
|
||||
memory: 128M
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.8
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.9
|
||||
restart: on-failure:100
|
||||
metering:
|
||||
command:
|
||||
|
|
@ -153,7 +153,7 @@ services:
|
|||
reservations:
|
||||
cpus: '0.1'
|
||||
memory: 128M
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.8
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.9
|
||||
restart: on-failure:100
|
||||
metering-rag:
|
||||
command:
|
||||
|
|
@ -170,7 +170,7 @@ services:
|
|||
reservations:
|
||||
cpus: '0.1'
|
||||
memory: 128M
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.8
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.9
|
||||
restart: on-failure:100
|
||||
neo4j:
|
||||
deploy:
|
||||
|
|
@ -203,7 +203,7 @@ services:
|
|||
reservations:
|
||||
cpus: '0.1'
|
||||
memory: 128M
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.8
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.9
|
||||
restart: on-failure:100
|
||||
prometheus:
|
||||
deploy:
|
||||
|
|
@ -393,7 +393,7 @@ services:
|
|||
reservations:
|
||||
cpus: '0.1'
|
||||
memory: 128M
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.8
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.9
|
||||
restart: on-failure:100
|
||||
prompt-rag:
|
||||
command:
|
||||
|
|
@ -571,7 +571,7 @@ services:
|
|||
reservations:
|
||||
cpus: '0.1'
|
||||
memory: 128M
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.8
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.9
|
||||
restart: on-failure:100
|
||||
pulsar:
|
||||
command:
|
||||
|
|
@ -625,7 +625,7 @@ services:
|
|||
reservations:
|
||||
cpus: '0.1'
|
||||
memory: 128M
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.8
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.9
|
||||
restart: on-failure:100
|
||||
query-graph-embeddings:
|
||||
command:
|
||||
|
|
@ -642,7 +642,7 @@ services:
|
|||
reservations:
|
||||
cpus: '0.1'
|
||||
memory: 128M
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.8
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.9
|
||||
restart: on-failure:100
|
||||
query-triples:
|
||||
command:
|
||||
|
|
@ -659,7 +659,7 @@ services:
|
|||
reservations:
|
||||
cpus: '0.1'
|
||||
memory: 128M
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.8
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.9
|
||||
restart: on-failure:100
|
||||
store-doc-embeddings:
|
||||
command:
|
||||
|
|
@ -676,7 +676,7 @@ services:
|
|||
reservations:
|
||||
cpus: '0.1'
|
||||
memory: 128M
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.8
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.9
|
||||
restart: on-failure:100
|
||||
store-graph-embeddings:
|
||||
command:
|
||||
|
|
@ -693,7 +693,7 @@ services:
|
|||
reservations:
|
||||
cpus: '0.1'
|
||||
memory: 128M
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.8
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.9
|
||||
restart: on-failure:100
|
||||
store-triples:
|
||||
command:
|
||||
|
|
@ -710,7 +710,7 @@ services:
|
|||
reservations:
|
||||
cpus: '0.1'
|
||||
memory: 128M
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.8
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.9
|
||||
restart: on-failure:100
|
||||
text-completion:
|
||||
command:
|
||||
|
|
@ -733,7 +733,7 @@ services:
|
|||
reservations:
|
||||
cpus: '0.1'
|
||||
memory: 128M
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.8
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.9
|
||||
restart: on-failure:100
|
||||
text-completion-rag:
|
||||
command:
|
||||
|
|
@ -760,7 +760,7 @@ services:
|
|||
reservations:
|
||||
cpus: '0.1'
|
||||
memory: 128M
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.8
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.9
|
||||
restart: on-failure:100
|
||||
vectorize:
|
||||
command:
|
||||
|
|
@ -775,7 +775,7 @@ services:
|
|||
reservations:
|
||||
cpus: '0.5'
|
||||
memory: 512M
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.8
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.9
|
||||
restart: on-failure:100
|
||||
volumes:
|
||||
grafana-storage: {}
|
||||
|
|
|
|||
|
|
@ -33,7 +33,7 @@ services:
|
|||
reservations:
|
||||
cpus: '0.1'
|
||||
memory: 128M
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.8
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.9
|
||||
restart: on-failure:100
|
||||
embeddings:
|
||||
command:
|
||||
|
|
@ -50,7 +50,7 @@ services:
|
|||
reservations:
|
||||
cpus: '0.5'
|
||||
memory: 400M
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.8
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.9
|
||||
restart: on-failure:100
|
||||
grafana:
|
||||
deploy:
|
||||
|
|
@ -95,7 +95,7 @@ services:
|
|||
reservations:
|
||||
cpus: '0.1'
|
||||
memory: 128M
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.8
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.9
|
||||
restart: on-failure:100
|
||||
init-pulsar:
|
||||
command:
|
||||
|
|
@ -110,7 +110,7 @@ services:
|
|||
reservations:
|
||||
cpus: '0.1'
|
||||
memory: 128M
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.8
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.9
|
||||
restart: on-failure:100
|
||||
kg-extract-definitions:
|
||||
command:
|
||||
|
|
@ -125,7 +125,7 @@ services:
|
|||
reservations:
|
||||
cpus: '0.1'
|
||||
memory: 128M
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.8
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.9
|
||||
restart: on-failure:100
|
||||
kg-extract-relationships:
|
||||
command:
|
||||
|
|
@ -140,7 +140,7 @@ services:
|
|||
reservations:
|
||||
cpus: '0.1'
|
||||
memory: 128M
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.8
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.9
|
||||
restart: on-failure:100
|
||||
kg-extract-topics:
|
||||
command:
|
||||
|
|
@ -155,7 +155,7 @@ services:
|
|||
reservations:
|
||||
cpus: '0.1'
|
||||
memory: 128M
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.8
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.9
|
||||
restart: on-failure:100
|
||||
metering:
|
||||
command:
|
||||
|
|
@ -170,7 +170,7 @@ services:
|
|||
reservations:
|
||||
cpus: '0.1'
|
||||
memory: 128M
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.8
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.9
|
||||
restart: on-failure:100
|
||||
metering-rag:
|
||||
command:
|
||||
|
|
@ -187,7 +187,7 @@ services:
|
|||
reservations:
|
||||
cpus: '0.1'
|
||||
memory: 128M
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.8
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.9
|
||||
restart: on-failure:100
|
||||
pdf-decoder:
|
||||
command:
|
||||
|
|
@ -202,7 +202,7 @@ services:
|
|||
reservations:
|
||||
cpus: '0.1'
|
||||
memory: 128M
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.8
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.9
|
||||
restart: on-failure:100
|
||||
prometheus:
|
||||
deploy:
|
||||
|
|
@ -392,7 +392,7 @@ services:
|
|||
reservations:
|
||||
cpus: '0.1'
|
||||
memory: 128M
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.8
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.9
|
||||
restart: on-failure:100
|
||||
prompt-rag:
|
||||
command:
|
||||
|
|
@ -570,7 +570,7 @@ services:
|
|||
reservations:
|
||||
cpus: '0.1'
|
||||
memory: 128M
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.8
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.9
|
||||
restart: on-failure:100
|
||||
pulsar:
|
||||
command:
|
||||
|
|
@ -624,7 +624,7 @@ services:
|
|||
reservations:
|
||||
cpus: '0.1'
|
||||
memory: 128M
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.8
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.9
|
||||
restart: on-failure:100
|
||||
query-graph-embeddings:
|
||||
command:
|
||||
|
|
@ -641,7 +641,7 @@ services:
|
|||
reservations:
|
||||
cpus: '0.1'
|
||||
memory: 128M
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.8
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.9
|
||||
restart: on-failure:100
|
||||
query-triples:
|
||||
command:
|
||||
|
|
@ -658,7 +658,7 @@ services:
|
|||
reservations:
|
||||
cpus: '0.1'
|
||||
memory: 512M
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.8
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.9
|
||||
restart: on-failure:100
|
||||
store-doc-embeddings:
|
||||
command:
|
||||
|
|
@ -675,7 +675,7 @@ services:
|
|||
reservations:
|
||||
cpus: '0.1'
|
||||
memory: 128M
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.8
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.9
|
||||
restart: on-failure:100
|
||||
store-graph-embeddings:
|
||||
command:
|
||||
|
|
@ -692,7 +692,7 @@ services:
|
|||
reservations:
|
||||
cpus: '0.1'
|
||||
memory: 128M
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.8
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.9
|
||||
restart: on-failure:100
|
||||
store-triples:
|
||||
command:
|
||||
|
|
@ -709,7 +709,7 @@ services:
|
|||
reservations:
|
||||
cpus: '0.1'
|
||||
memory: 128M
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.8
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.9
|
||||
restart: on-failure:100
|
||||
text-completion:
|
||||
command:
|
||||
|
|
@ -734,7 +734,7 @@ services:
|
|||
reservations:
|
||||
cpus: '0.1'
|
||||
memory: 256M
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.8
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.9
|
||||
restart: on-failure:100
|
||||
volumes:
|
||||
- ./vertexai:/vertexai
|
||||
|
|
@ -765,7 +765,7 @@ services:
|
|||
reservations:
|
||||
cpus: '0.1'
|
||||
memory: 256M
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.8
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.9
|
||||
restart: on-failure:100
|
||||
volumes:
|
||||
- ./vertexai:/vertexai
|
||||
|
|
@ -782,7 +782,7 @@ services:
|
|||
reservations:
|
||||
cpus: '0.5'
|
||||
memory: 512M
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.8
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.9
|
||||
restart: on-failure:100
|
||||
volumes:
|
||||
cassandra: {}
|
||||
|
|
|
|||
|
|
@ -16,7 +16,7 @@ services:
|
|||
reservations:
|
||||
cpus: '0.1'
|
||||
memory: 128M
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.8
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.9
|
||||
restart: on-failure:100
|
||||
embeddings:
|
||||
command:
|
||||
|
|
@ -33,7 +33,7 @@ services:
|
|||
reservations:
|
||||
cpus: '0.5'
|
||||
memory: 400M
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.8
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.9
|
||||
restart: on-failure:100
|
||||
grafana:
|
||||
deploy:
|
||||
|
|
@ -78,7 +78,7 @@ services:
|
|||
reservations:
|
||||
cpus: '0.1'
|
||||
memory: 128M
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.8
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.9
|
||||
restart: on-failure:100
|
||||
init-pulsar:
|
||||
command:
|
||||
|
|
@ -93,7 +93,7 @@ services:
|
|||
reservations:
|
||||
cpus: '0.1'
|
||||
memory: 128M
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.8
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.9
|
||||
restart: on-failure:100
|
||||
kg-extract-definitions:
|
||||
command:
|
||||
|
|
@ -108,7 +108,7 @@ services:
|
|||
reservations:
|
||||
cpus: '0.1'
|
||||
memory: 128M
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.8
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.9
|
||||
restart: on-failure:100
|
||||
kg-extract-relationships:
|
||||
command:
|
||||
|
|
@ -123,7 +123,7 @@ services:
|
|||
reservations:
|
||||
cpus: '0.1'
|
||||
memory: 128M
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.8
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.9
|
||||
restart: on-failure:100
|
||||
kg-extract-topics:
|
||||
command:
|
||||
|
|
@ -138,7 +138,7 @@ services:
|
|||
reservations:
|
||||
cpus: '0.1'
|
||||
memory: 128M
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.8
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.9
|
||||
restart: on-failure:100
|
||||
metering:
|
||||
command:
|
||||
|
|
@ -153,7 +153,7 @@ services:
|
|||
reservations:
|
||||
cpus: '0.1'
|
||||
memory: 128M
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.8
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.9
|
||||
restart: on-failure:100
|
||||
metering-rag:
|
||||
command:
|
||||
|
|
@ -170,7 +170,7 @@ services:
|
|||
reservations:
|
||||
cpus: '0.1'
|
||||
memory: 128M
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.8
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.9
|
||||
restart: on-failure:100
|
||||
neo4j:
|
||||
deploy:
|
||||
|
|
@ -203,7 +203,7 @@ services:
|
|||
reservations:
|
||||
cpus: '0.1'
|
||||
memory: 128M
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.8
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.9
|
||||
restart: on-failure:100
|
||||
prometheus:
|
||||
deploy:
|
||||
|
|
@ -393,7 +393,7 @@ services:
|
|||
reservations:
|
||||
cpus: '0.1'
|
||||
memory: 128M
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.8
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.9
|
||||
restart: on-failure:100
|
||||
prompt-rag:
|
||||
command:
|
||||
|
|
@ -571,7 +571,7 @@ services:
|
|||
reservations:
|
||||
cpus: '0.1'
|
||||
memory: 128M
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.8
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.9
|
||||
restart: on-failure:100
|
||||
pulsar:
|
||||
command:
|
||||
|
|
@ -625,7 +625,7 @@ services:
|
|||
reservations:
|
||||
cpus: '0.1'
|
||||
memory: 128M
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.8
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.9
|
||||
restart: on-failure:100
|
||||
query-graph-embeddings:
|
||||
command:
|
||||
|
|
@ -642,7 +642,7 @@ services:
|
|||
reservations:
|
||||
cpus: '0.1'
|
||||
memory: 128M
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.8
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.9
|
||||
restart: on-failure:100
|
||||
query-triples:
|
||||
command:
|
||||
|
|
@ -659,7 +659,7 @@ services:
|
|||
reservations:
|
||||
cpus: '0.1'
|
||||
memory: 128M
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.8
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.9
|
||||
restart: on-failure:100
|
||||
store-doc-embeddings:
|
||||
command:
|
||||
|
|
@ -676,7 +676,7 @@ services:
|
|||
reservations:
|
||||
cpus: '0.1'
|
||||
memory: 128M
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.8
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.9
|
||||
restart: on-failure:100
|
||||
store-graph-embeddings:
|
||||
command:
|
||||
|
|
@ -693,7 +693,7 @@ services:
|
|||
reservations:
|
||||
cpus: '0.1'
|
||||
memory: 128M
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.8
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.9
|
||||
restart: on-failure:100
|
||||
store-triples:
|
||||
command:
|
||||
|
|
@ -710,7 +710,7 @@ services:
|
|||
reservations:
|
||||
cpus: '0.1'
|
||||
memory: 128M
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.8
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.9
|
||||
restart: on-failure:100
|
||||
text-completion:
|
||||
command:
|
||||
|
|
@ -735,7 +735,7 @@ services:
|
|||
reservations:
|
||||
cpus: '0.1'
|
||||
memory: 256M
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.8
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.9
|
||||
restart: on-failure:100
|
||||
volumes:
|
||||
- ./vertexai:/vertexai
|
||||
|
|
@ -766,7 +766,7 @@ services:
|
|||
reservations:
|
||||
cpus: '0.1'
|
||||
memory: 256M
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.8
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.9
|
||||
restart: on-failure:100
|
||||
volumes:
|
||||
- ./vertexai:/vertexai
|
||||
|
|
@ -783,7 +783,7 @@ services:
|
|||
reservations:
|
||||
cpus: '0.5'
|
||||
memory: 512M
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.8
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.9
|
||||
restart: on-failure:100
|
||||
volumes:
|
||||
grafana-storage: {}
|
||||
|
|
|
|||
|
|
@ -49,7 +49,7 @@ services:
|
|||
reservations:
|
||||
cpus: '0.1'
|
||||
memory: 128M
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.8
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.9
|
||||
restart: on-failure:100
|
||||
prometheus:
|
||||
deploy:
|
||||
|
|
@ -119,7 +119,7 @@ services:
|
|||
reservations:
|
||||
cpus: '0.1'
|
||||
memory: 128M
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.8
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.9
|
||||
restart: on-failure:100
|
||||
query-graph-embeddings:
|
||||
command:
|
||||
|
|
@ -136,7 +136,7 @@ services:
|
|||
reservations:
|
||||
cpus: '0.1'
|
||||
memory: 128M
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.8
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.9
|
||||
restart: on-failure:100
|
||||
query-triples:
|
||||
command:
|
||||
|
|
@ -153,7 +153,7 @@ services:
|
|||
reservations:
|
||||
cpus: '0.1'
|
||||
memory: 512M
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.8
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.9
|
||||
restart: on-failure:100
|
||||
store-doc-embeddings:
|
||||
command:
|
||||
|
|
@ -170,7 +170,7 @@ services:
|
|||
reservations:
|
||||
cpus: '0.1'
|
||||
memory: 128M
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.8
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.9
|
||||
restart: on-failure:100
|
||||
store-graph-embeddings:
|
||||
command:
|
||||
|
|
@ -187,7 +187,7 @@ services:
|
|||
reservations:
|
||||
cpus: '0.1'
|
||||
memory: 128M
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.8
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.9
|
||||
restart: on-failure:100
|
||||
store-triples:
|
||||
command:
|
||||
|
|
@ -204,7 +204,7 @@ services:
|
|||
reservations:
|
||||
cpus: '0.1'
|
||||
memory: 128M
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.8
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.9
|
||||
restart: on-failure:100
|
||||
volumes:
|
||||
cassandra: {}
|
||||
|
|
|
|||
|
|
@ -32,7 +32,7 @@ services:
|
|||
reservations:
|
||||
cpus: '0.1'
|
||||
memory: 128M
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.8
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.9
|
||||
restart: on-failure:100
|
||||
neo4j:
|
||||
deploy:
|
||||
|
|
@ -120,7 +120,7 @@ services:
|
|||
reservations:
|
||||
cpus: '0.1'
|
||||
memory: 128M
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.8
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.9
|
||||
restart: on-failure:100
|
||||
query-graph-embeddings:
|
||||
command:
|
||||
|
|
@ -137,7 +137,7 @@ services:
|
|||
reservations:
|
||||
cpus: '0.1'
|
||||
memory: 128M
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.8
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.9
|
||||
restart: on-failure:100
|
||||
query-triples:
|
||||
command:
|
||||
|
|
@ -154,7 +154,7 @@ services:
|
|||
reservations:
|
||||
cpus: '0.1'
|
||||
memory: 128M
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.8
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.9
|
||||
restart: on-failure:100
|
||||
store-doc-embeddings:
|
||||
command:
|
||||
|
|
@ -171,7 +171,7 @@ services:
|
|||
reservations:
|
||||
cpus: '0.1'
|
||||
memory: 128M
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.8
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.9
|
||||
restart: on-failure:100
|
||||
store-graph-embeddings:
|
||||
command:
|
||||
|
|
@ -188,7 +188,7 @@ services:
|
|||
reservations:
|
||||
cpus: '0.1'
|
||||
memory: 128M
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.8
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.9
|
||||
restart: on-failure:100
|
||||
store-triples:
|
||||
command:
|
||||
|
|
@ -205,7 +205,7 @@ services:
|
|||
reservations:
|
||||
cpus: '0.1'
|
||||
memory: 128M
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.8
|
||||
image: docker.io/trustgraph/trustgraph-flow:0.11.9
|
||||
restart: on-failure:100
|
||||
volumes:
|
||||
grafana-storage: {}
|
||||
|
|
|
|||
42
trustgraph-base/setup.py
Normal file
42
trustgraph-base/setup.py
Normal file
|
|
@ -0,0 +1,42 @@
|
|||
import setuptools
|
||||
import os
|
||||
import importlib
|
||||
|
||||
with open("README.md", "r") as fh:
|
||||
long_description = fh.read()
|
||||
|
||||
# Load a version number module
|
||||
spec = importlib.util.spec_from_file_location(
|
||||
'version', 'trustgraph/base_version.py'
|
||||
)
|
||||
version_module = importlib.util.module_from_spec(spec)
|
||||
spec.loader.exec_module(version_module)
|
||||
|
||||
version = version_module.__version__
|
||||
|
||||
setuptools.setup(
|
||||
name="trustgraph-base",
|
||||
version=version,
|
||||
author="trustgraph.ai",
|
||||
author_email="security@trustgraph.ai",
|
||||
description="TrustGraph provides a means to run a pipeline of flexible AI processing components in a flexible means to achieve a processing pipeline.",
|
||||
long_description=long_description,
|
||||
long_description_content_type="text/markdown",
|
||||
url="https://github.com/trustgraph-ai/trustgraph",
|
||||
packages=setuptools.find_namespace_packages(
|
||||
where='./',
|
||||
),
|
||||
classifiers=[
|
||||
"Programming Language :: Python :: 3",
|
||||
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
|
||||
"Operating System :: OS Independent",
|
||||
],
|
||||
python_requires='>=3.8',
|
||||
download_url = "https://github.com/trustgraph-ai/trustgraph/archive/refs/tags/v" + version + ".tar.gz",
|
||||
install_requires=[
|
||||
"pulsar-client",
|
||||
"prometheus-client",
|
||||
],
|
||||
scripts=[
|
||||
]
|
||||
)
|
||||
45
trustgraph-bedrock/setup.py
Normal file
45
trustgraph-bedrock/setup.py
Normal file
|
|
@ -0,0 +1,45 @@
|
|||
import setuptools
|
||||
import os
|
||||
import importlib
|
||||
|
||||
with open("README.md", "r") as fh:
|
||||
long_description = fh.read()
|
||||
|
||||
# Load a version number module
|
||||
spec = importlib.util.spec_from_file_location(
|
||||
'version', 'trustgraph/bedrock_version.py'
|
||||
)
|
||||
version_module = importlib.util.module_from_spec(spec)
|
||||
spec.loader.exec_module(version_module)
|
||||
|
||||
version = version_module.__version__
|
||||
|
||||
setuptools.setup(
|
||||
name="trustgraph-bedrock",
|
||||
version=version,
|
||||
author="trustgraph.ai",
|
||||
author_email="security@trustgraph.ai",
|
||||
description="TrustGraph provides a means to run a pipeline of flexible AI processing components in a flexible means to achieve a processing pipeline.",
|
||||
long_description=long_description,
|
||||
long_description_content_type="text/markdown",
|
||||
url="https://github.com/trustgraph-ai/trustgraph",
|
||||
packages=setuptools.find_namespace_packages(
|
||||
where='./',
|
||||
),
|
||||
classifiers=[
|
||||
"Programming Language :: Python :: 3",
|
||||
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
|
||||
"Operating System :: OS Independent",
|
||||
],
|
||||
python_requires='>=3.8',
|
||||
download_url = "https://github.com/trustgraph-ai/trustgraph/archive/refs/tags/v" + version + ".tar.gz",
|
||||
install_requires=[
|
||||
"trustgraph-base",
|
||||
"pulsar-client",
|
||||
"prometheus-client",
|
||||
"boto3",
|
||||
],
|
||||
scripts=[
|
||||
"scripts/text-completion-bedrock",
|
||||
]
|
||||
)
|
||||
|
|
@ -25,7 +25,6 @@ setuptools.setup(
|
|||
url="https://github.com/trustgraph-ai/trustgraph",
|
||||
packages=setuptools.find_namespace_packages(
|
||||
where='./',
|
||||
# include=['trustgraph.core']
|
||||
),
|
||||
classifiers=[
|
||||
"Programming Language :: Python :: 3",
|
||||
|
|
@ -35,7 +34,8 @@ setuptools.setup(
|
|||
python_requires='>=3.8',
|
||||
download_url = "https://github.com/trustgraph-ai/trustgraph/archive/refs/tags/v" + version + ".tar.gz",
|
||||
install_requires=[
|
||||
"trustgraph-core",
|
||||
"trustgraph-base",
|
||||
"trustgraph-flow",
|
||||
"torch",
|
||||
"urllib3",
|
||||
"transformers",
|
||||
|
|
|
|||
|
|
@ -7,7 +7,7 @@ with open("README.md", "r") as fh:
|
|||
|
||||
# Load a version number module
|
||||
spec = importlib.util.spec_from_file_location(
|
||||
'version', 'trustgraph/core_version.py'
|
||||
'version', 'trustgraph/flow_version.py'
|
||||
)
|
||||
version_module = importlib.util.module_from_spec(spec)
|
||||
spec.loader.exec_module(version_module)
|
||||
|
|
@ -15,7 +15,7 @@ spec.loader.exec_module(version_module)
|
|||
version = version_module.__version__
|
||||
|
||||
setuptools.setup(
|
||||
name="trustgraph-core",
|
||||
name="trustgraph-flow",
|
||||
version=version,
|
||||
author="trustgraph.ai",
|
||||
author_email="security@trustgraph.ai",
|
||||
|
|
@ -25,7 +25,6 @@ setuptools.setup(
|
|||
url="https://github.com/trustgraph-ai/trustgraph",
|
||||
packages=setuptools.find_namespace_packages(
|
||||
where='./',
|
||||
# include=['trustgraph.core']
|
||||
),
|
||||
classifiers=[
|
||||
"Programming Language :: Python :: 3",
|
||||
|
|
@ -35,6 +34,7 @@ setuptools.setup(
|
|||
python_requires='>=3.8',
|
||||
download_url = "https://github.com/trustgraph-ai/trustgraph/archive/refs/tags/v" + version + ".tar.gz",
|
||||
install_requires=[
|
||||
"trustgraph-base",
|
||||
"urllib3",
|
||||
"rdflib",
|
||||
"pymilvus",
|
||||
|
|
@ -49,12 +49,9 @@ setuptools.setup(
|
|||
"qdrant-client",
|
||||
"tabulate",
|
||||
"anthropic",
|
||||
"google-cloud-aiplatform",
|
||||
"pyyaml",
|
||||
"prometheus-client",
|
||||
"pyarrow",
|
||||
"cohere",
|
||||
"boto3",
|
||||
"openai",
|
||||
"neo4j",
|
||||
"tiktoken",
|
||||
|
|
@ -62,52 +59,35 @@ setuptools.setup(
|
|||
scripts=[
|
||||
"scripts/chunker-recursive",
|
||||
"scripts/chunker-token",
|
||||
"scripts/concat-parquet",
|
||||
"scripts/de-query-milvus",
|
||||
"scripts/de-query-qdrant",
|
||||
"scripts/de-write-milvus",
|
||||
"scripts/de-write-qdrant",
|
||||
"scripts/document-rag",
|
||||
"scripts/dump-parquet",
|
||||
"scripts/embeddings-ollama",
|
||||
"scripts/embeddings-vectorize",
|
||||
"scripts/ge-dump-parquet",
|
||||
"scripts/ge-query-milvus",
|
||||
"scripts/ge-query-qdrant",
|
||||
"scripts/ge-write-milvus",
|
||||
"scripts/ge-write-qdrant",
|
||||
"scripts/graph-rag",
|
||||
"scripts/graph-show",
|
||||
"scripts/graph-to-turtle",
|
||||
"scripts/init-pulsar-manager",
|
||||
"scripts/kg-extract-definitions",
|
||||
"scripts/kg-extract-topics",
|
||||
"scripts/kg-extract-relationships",
|
||||
"scripts/load-graph-embeddings",
|
||||
"scripts/load-pdf",
|
||||
"scripts/load-text",
|
||||
"scripts/load-triples",
|
||||
"scripts/metering",
|
||||
"scripts/object-extract-row",
|
||||
"scripts/oe-write-milvus",
|
||||
"scripts/pdf-decoder",
|
||||
"scripts/prompt-generic",
|
||||
"scripts/prompt-template",
|
||||
"scripts/query-document-rag",
|
||||
"scripts/query-graph-rag",
|
||||
"scripts/rows-write-cassandra",
|
||||
"scripts/run-processing",
|
||||
"scripts/text-completion-azure",
|
||||
"scripts/text-completion-bedrock",
|
||||
"scripts/text-completion-claude",
|
||||
"scripts/text-completion-cohere",
|
||||
"scripts/text-completion-llamafile",
|
||||
"scripts/text-completion-ollama",
|
||||
"scripts/text-completion-openai",
|
||||
"scripts/text-completion-vertexai",
|
||||
"scripts/tg-init-pulsar",
|
||||
"scripts/tg-processor-state",
|
||||
"scripts/triples-dump-parquet",
|
||||
"scripts/triples-query-cassandra",
|
||||
"scripts/triples-query-neo4j",
|
||||
"scripts/triples-write-cassandra",
|
||||
Some files were not shown because too many files have changed in this diff Show more
Loading…
Add table
Add a link
Reference in a new issue