Boost version file, put 2y text-completion process in each docker compose just for RAG

This commit is contained in:
Cyber MacGeddon 2024-08-05 23:00:05 +01:00
parent faa5dc26ac
commit 63a30b25eb
6 changed files with 121 additions and 44 deletions

View file

@ -130,7 +130,7 @@ services:
restart: on-failure:100
pdf-decoder:
image: docker.io/trustgraph/trustgraph-flow:0.5.5
image: docker.io/trustgraph/trustgraph-flow:0.5.6
command:
- "pdf-decoder"
- "-p"
@ -138,7 +138,7 @@ services:
restart: on-failure:100
chunker:
image: docker.io/trustgraph/trustgraph-flow:0.5.5
image: docker.io/trustgraph/trustgraph-flow:0.5.6
command:
- "chunker-recursive"
- "-p"
@ -146,7 +146,7 @@ services:
restart: on-failure:100
vectorize:
image: docker.io/trustgraph/trustgraph-flow:0.5.5
image: docker.io/trustgraph/trustgraph-flow:0.5.6
command:
- "embeddings-vectorize"
- "-p"
@ -154,7 +154,7 @@ services:
restart: on-failure:100
embeddings:
image: docker.io/trustgraph/trustgraph-flow:0.5.5
image: docker.io/trustgraph/trustgraph-flow:0.5.6
command:
- "embeddings-hf"
- "-p"
@ -164,7 +164,7 @@ services:
restart: on-failure:100
kg-extract-definitions:
image: docker.io/trustgraph/trustgraph-flow:0.5.5
image: docker.io/trustgraph/trustgraph-flow:0.5.6
command:
- "kg-extract-definitions"
- "-p"
@ -172,7 +172,7 @@ services:
restart: on-failure:100
kg-extract-relationships:
image: docker.io/trustgraph/trustgraph-flow:0.5.5
image: docker.io/trustgraph/trustgraph-flow:0.5.6
command:
- "kg-extract-relationships"
- "-p"
@ -180,7 +180,7 @@ services:
restart: on-failure:100
store-graph-embeddings:
image: docker.io/trustgraph/trustgraph-flow:0.5.5
image: docker.io/trustgraph/trustgraph-flow:0.5.6
command:
- "ge-write-milvus"
- "-p"
@ -190,7 +190,7 @@ services:
restart: on-failure:100
store-triples:
image: docker.io/trustgraph/trustgraph-flow:0.5.5
image: docker.io/trustgraph/trustgraph-flow:0.5.6
command:
- "triples-write-cassandra"
- "-p"
@ -200,7 +200,7 @@ services:
restart: on-failure:100
text-completion:
image: docker.io/trustgraph/trustgraph-flow:0.5.5
image: docker.io/trustgraph/trustgraph-flow:0.5.6
command:
- "text-completion-claude"
- "-p"
@ -209,11 +209,28 @@ services:
- ${CLAUDE_KEY}
restart: on-failure:100
text-completion-rag:
image: docker.io/trustgraph/trustgraph-flow:0.5.6
command:
- "text-completion-ollama"
- "-p"
- "pulsar://pulsar:6650"
- "-k"
- ${CLAUDE_KEY}
- "-i"
- "non-persistent://tg/request/text-completion-rag"
- "-o"
- "non-persistent://tg/response/text-completion-rag-response"
restart: on-failure:100
graph-rag:
image: docker.io/trustgraph/trustgraph-flow:0.5.5
image: docker.io/trustgraph/trustgraph-flow:0.5.6
command:
- "graph-rag"
- "-p"
- "pulsar://pulsar:6650"
- "--text-completion-request-queue"
- "non-persistent://tg/request/text-completion-rag"
- "--text-completion-response-queue"
- "non-persistent://tg/response/text-completion-rag-response"
restart: on-failure:100