mirror of
https://github.com/trustgraph-ai/trustgraph.git
synced 2026-04-30 19:06:21 +02:00
- Put version to 0.5.5.
- Consolidate changes to all docker compose files
This commit is contained in:
parent
5eea23b5e5
commit
c55df0309c
6 changed files with 75 additions and 42 deletions
2
Makefile
2
Makefile
|
|
@ -1,6 +1,6 @@
|
||||||
|
|
||||||
# VERSION=$(shell git describe | sed 's/^v//')
|
# VERSION=$(shell git describe | sed 's/^v//')
|
||||||
VERSION=0.5.3
|
VERSION=0.5.5
|
||||||
|
|
||||||
all: container
|
all: container
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -30,6 +30,17 @@ services:
|
||||||
- "pulsar-data:/pulsar/data"
|
- "pulsar-data:/pulsar/data"
|
||||||
restart: on-failure:100
|
restart: on-failure:100
|
||||||
|
|
||||||
|
init-pulsar:
|
||||||
|
image: docker.io/apachepulsar/pulsar:3.3.0
|
||||||
|
command:
|
||||||
|
- "sh"
|
||||||
|
- "-c"
|
||||||
|
- "pulsar-admin --admin-url http://pulsar:8080 tenants create tg && pulsar-admin --admin-url http://pulsar:8080 namespaces create tg/flow && pulsar-admin --admin-url http://pulsar:8080 namespaces create tg/request && pulsar-admin --admin-url http://pulsar:8080 namespaces create tg/response && pulsar-admin --admin-url http://pulsar:8080 namespaces set-retention --size -1 --time 3m tg/response"
|
||||||
|
depends_on:
|
||||||
|
pulsar:
|
||||||
|
condition: service_started
|
||||||
|
restart: on-failure:100
|
||||||
|
|
||||||
pulsar-manager:
|
pulsar-manager:
|
||||||
image: docker.io/apachepulsar/pulsar-manager:v0.3.0
|
image: docker.io/apachepulsar/pulsar-manager:v0.3.0
|
||||||
ports:
|
ports:
|
||||||
|
|
@ -119,7 +130,7 @@ services:
|
||||||
restart: on-failure:100
|
restart: on-failure:100
|
||||||
|
|
||||||
pdf-decoder:
|
pdf-decoder:
|
||||||
image: docker.io/trustgraph/trustgraph-flow:0.5.3
|
image: docker.io/trustgraph/trustgraph-flow:0.5.5
|
||||||
command:
|
command:
|
||||||
- "pdf-decoder"
|
- "pdf-decoder"
|
||||||
- "-p"
|
- "-p"
|
||||||
|
|
@ -127,7 +138,7 @@ services:
|
||||||
restart: on-failure:100
|
restart: on-failure:100
|
||||||
|
|
||||||
chunker:
|
chunker:
|
||||||
image: docker.io/trustgraph/trustgraph-flow:0.5.3
|
image: docker.io/trustgraph/trustgraph-flow:0.5.5
|
||||||
command:
|
command:
|
||||||
- "chunker-recursive"
|
- "chunker-recursive"
|
||||||
- "-p"
|
- "-p"
|
||||||
|
|
@ -135,7 +146,7 @@ services:
|
||||||
restart: on-failure:100
|
restart: on-failure:100
|
||||||
|
|
||||||
vectorize:
|
vectorize:
|
||||||
image: docker.io/trustgraph/trustgraph-flow:0.5.3
|
image: docker.io/trustgraph/trustgraph-flow:0.5.5
|
||||||
command:
|
command:
|
||||||
- "embeddings-vectorize"
|
- "embeddings-vectorize"
|
||||||
- "-p"
|
- "-p"
|
||||||
|
|
@ -143,7 +154,7 @@ services:
|
||||||
restart: on-failure:100
|
restart: on-failure:100
|
||||||
|
|
||||||
embeddings:
|
embeddings:
|
||||||
image: docker.io/trustgraph/trustgraph-flow:0.5.3
|
image: docker.io/trustgraph/trustgraph-flow:0.5.5
|
||||||
command:
|
command:
|
||||||
- "embeddings-hf"
|
- "embeddings-hf"
|
||||||
- "-p"
|
- "-p"
|
||||||
|
|
@ -153,7 +164,7 @@ services:
|
||||||
restart: on-failure:100
|
restart: on-failure:100
|
||||||
|
|
||||||
kg-extract-definitions:
|
kg-extract-definitions:
|
||||||
image: docker.io/trustgraph/trustgraph-flow:0.5.3
|
image: docker.io/trustgraph/trustgraph-flow:0.5.5
|
||||||
command:
|
command:
|
||||||
- "kg-extract-definitions"
|
- "kg-extract-definitions"
|
||||||
- "-p"
|
- "-p"
|
||||||
|
|
@ -161,7 +172,7 @@ services:
|
||||||
restart: on-failure:100
|
restart: on-failure:100
|
||||||
|
|
||||||
kg-extract-relationships:
|
kg-extract-relationships:
|
||||||
image: docker.io/trustgraph/trustgraph-flow:0.5.3
|
image: docker.io/trustgraph/trustgraph-flow:0.5.5
|
||||||
command:
|
command:
|
||||||
- "kg-extract-relationships"
|
- "kg-extract-relationships"
|
||||||
- "-p"
|
- "-p"
|
||||||
|
|
@ -169,7 +180,7 @@ services:
|
||||||
restart: on-failure:100
|
restart: on-failure:100
|
||||||
|
|
||||||
store-graph-embeddings:
|
store-graph-embeddings:
|
||||||
image: docker.io/trustgraph/trustgraph-flow:0.5.3
|
image: docker.io/trustgraph/trustgraph-flow:0.5.5
|
||||||
command:
|
command:
|
||||||
- "ge-write-milvus"
|
- "ge-write-milvus"
|
||||||
- "-p"
|
- "-p"
|
||||||
|
|
@ -179,7 +190,7 @@ services:
|
||||||
restart: on-failure:100
|
restart: on-failure:100
|
||||||
|
|
||||||
store-triples:
|
store-triples:
|
||||||
image: docker.io/trustgraph/trustgraph-flow:0.5.3
|
image: docker.io/trustgraph/trustgraph-flow:0.5.5
|
||||||
command:
|
command:
|
||||||
- "triples-write-cassandra"
|
- "triples-write-cassandra"
|
||||||
- "-p"
|
- "-p"
|
||||||
|
|
@ -189,7 +200,7 @@ services:
|
||||||
restart: on-failure:100
|
restart: on-failure:100
|
||||||
|
|
||||||
text-completion:
|
text-completion:
|
||||||
image: docker.io/trustgraph/trustgraph-flow:0.5.3
|
image: docker.io/trustgraph/trustgraph-flow:0.5.5
|
||||||
command:
|
command:
|
||||||
- "text-completion-azure"
|
- "text-completion-azure"
|
||||||
- "-p"
|
- "-p"
|
||||||
|
|
@ -201,7 +212,7 @@ services:
|
||||||
restart: on-failure:100
|
restart: on-failure:100
|
||||||
|
|
||||||
graph-rag:
|
graph-rag:
|
||||||
image: docker.io/trustgraph/trustgraph-flow:0.5.3
|
image: docker.io/trustgraph/trustgraph-flow:0.5.5
|
||||||
command:
|
command:
|
||||||
- "graph-rag"
|
- "graph-rag"
|
||||||
- "-p"
|
- "-p"
|
||||||
|
|
|
||||||
|
|
@ -30,6 +30,17 @@ services:
|
||||||
- "pulsar-data:/pulsar/data"
|
- "pulsar-data:/pulsar/data"
|
||||||
restart: on-failure:100
|
restart: on-failure:100
|
||||||
|
|
||||||
|
init-pulsar:
|
||||||
|
image: docker.io/apachepulsar/pulsar:3.3.0
|
||||||
|
command:
|
||||||
|
- "sh"
|
||||||
|
- "-c"
|
||||||
|
- "pulsar-admin --admin-url http://pulsar:8080 tenants create tg && pulsar-admin --admin-url http://pulsar:8080 namespaces create tg/flow && pulsar-admin --admin-url http://pulsar:8080 namespaces create tg/request && pulsar-admin --admin-url http://pulsar:8080 namespaces create tg/response && pulsar-admin --admin-url http://pulsar:8080 namespaces set-retention --size -1 --time 3m tg/response"
|
||||||
|
depends_on:
|
||||||
|
pulsar:
|
||||||
|
condition: service_started
|
||||||
|
restart: on-failure:100
|
||||||
|
|
||||||
pulsar-manager:
|
pulsar-manager:
|
||||||
image: docker.io/apachepulsar/pulsar-manager:v0.3.0
|
image: docker.io/apachepulsar/pulsar-manager:v0.3.0
|
||||||
ports:
|
ports:
|
||||||
|
|
@ -119,7 +130,7 @@ services:
|
||||||
restart: on-failure:100
|
restart: on-failure:100
|
||||||
|
|
||||||
pdf-decoder:
|
pdf-decoder:
|
||||||
image: docker.io/trustgraph/trustgraph-flow:0.5.3
|
image: docker.io/trustgraph/trustgraph-flow:0.5.5
|
||||||
command:
|
command:
|
||||||
- "pdf-decoder"
|
- "pdf-decoder"
|
||||||
- "-p"
|
- "-p"
|
||||||
|
|
@ -127,7 +138,7 @@ services:
|
||||||
restart: on-failure:100
|
restart: on-failure:100
|
||||||
|
|
||||||
chunker:
|
chunker:
|
||||||
image: docker.io/trustgraph/trustgraph-flow:0.5.3
|
image: docker.io/trustgraph/trustgraph-flow:0.5.5
|
||||||
command:
|
command:
|
||||||
- "chunker-recursive"
|
- "chunker-recursive"
|
||||||
- "-p"
|
- "-p"
|
||||||
|
|
@ -135,7 +146,7 @@ services:
|
||||||
restart: on-failure:100
|
restart: on-failure:100
|
||||||
|
|
||||||
vectorize:
|
vectorize:
|
||||||
image: docker.io/trustgraph/trustgraph-flow:0.5.3
|
image: docker.io/trustgraph/trustgraph-flow:0.5.5
|
||||||
command:
|
command:
|
||||||
- "embeddings-vectorize"
|
- "embeddings-vectorize"
|
||||||
- "-p"
|
- "-p"
|
||||||
|
|
@ -143,7 +154,7 @@ services:
|
||||||
restart: on-failure:100
|
restart: on-failure:100
|
||||||
|
|
||||||
embeddings:
|
embeddings:
|
||||||
image: docker.io/trustgraph/trustgraph-flow:0.5.3
|
image: docker.io/trustgraph/trustgraph-flow:0.5.5
|
||||||
command:
|
command:
|
||||||
- "embeddings-hf"
|
- "embeddings-hf"
|
||||||
- "-p"
|
- "-p"
|
||||||
|
|
@ -153,7 +164,7 @@ services:
|
||||||
restart: on-failure:100
|
restart: on-failure:100
|
||||||
|
|
||||||
kg-extract-definitions:
|
kg-extract-definitions:
|
||||||
image: docker.io/trustgraph/trustgraph-flow:0.5.3
|
image: docker.io/trustgraph/trustgraph-flow:0.5.5
|
||||||
command:
|
command:
|
||||||
- "kg-extract-definitions"
|
- "kg-extract-definitions"
|
||||||
- "-p"
|
- "-p"
|
||||||
|
|
@ -161,7 +172,7 @@ services:
|
||||||
restart: on-failure:100
|
restart: on-failure:100
|
||||||
|
|
||||||
kg-extract-relationships:
|
kg-extract-relationships:
|
||||||
image: docker.io/trustgraph/trustgraph-flow:0.5.3
|
image: docker.io/trustgraph/trustgraph-flow:0.5.5
|
||||||
command:
|
command:
|
||||||
- "kg-extract-relationships"
|
- "kg-extract-relationships"
|
||||||
- "-p"
|
- "-p"
|
||||||
|
|
@ -169,7 +180,7 @@ services:
|
||||||
restart: on-failure:100
|
restart: on-failure:100
|
||||||
|
|
||||||
store-graph-embeddings:
|
store-graph-embeddings:
|
||||||
image: docker.io/trustgraph/trustgraph-flow:0.5.3
|
image: docker.io/trustgraph/trustgraph-flow:0.5.5
|
||||||
command:
|
command:
|
||||||
- "ge-write-milvus"
|
- "ge-write-milvus"
|
||||||
- "-p"
|
- "-p"
|
||||||
|
|
@ -179,7 +190,7 @@ services:
|
||||||
restart: on-failure:100
|
restart: on-failure:100
|
||||||
|
|
||||||
store-triples:
|
store-triples:
|
||||||
image: docker.io/trustgraph/trustgraph-flow:0.5.3
|
image: docker.io/trustgraph/trustgraph-flow:0.5.5
|
||||||
command:
|
command:
|
||||||
- "triples-write-cassandra"
|
- "triples-write-cassandra"
|
||||||
- "-p"
|
- "-p"
|
||||||
|
|
@ -189,7 +200,7 @@ services:
|
||||||
restart: on-failure:100
|
restart: on-failure:100
|
||||||
|
|
||||||
text-completion:
|
text-completion:
|
||||||
image: docker.io/trustgraph/trustgraph-flow:0.5.3
|
image: docker.io/trustgraph/trustgraph-flow:0.5.5
|
||||||
command:
|
command:
|
||||||
- "text-completion-claude"
|
- "text-completion-claude"
|
||||||
- "-p"
|
- "-p"
|
||||||
|
|
@ -199,7 +210,7 @@ services:
|
||||||
restart: on-failure:100
|
restart: on-failure:100
|
||||||
|
|
||||||
graph-rag:
|
graph-rag:
|
||||||
image: docker.io/trustgraph/trustgraph-flow:0.5.3
|
image: docker.io/trustgraph/trustgraph-flow:0.5.5
|
||||||
command:
|
command:
|
||||||
- "graph-rag"
|
- "graph-rag"
|
||||||
- "-p"
|
- "-p"
|
||||||
|
|
|
||||||
|
|
@ -130,7 +130,7 @@ services:
|
||||||
restart: on-failure:100
|
restart: on-failure:100
|
||||||
|
|
||||||
pdf-decoder:
|
pdf-decoder:
|
||||||
image: docker.io/trustgraph/trustgraph-flow:0.5.4
|
image: docker.io/trustgraph/trustgraph-flow:0.5.5
|
||||||
command:
|
command:
|
||||||
- "pdf-decoder"
|
- "pdf-decoder"
|
||||||
- "-p"
|
- "-p"
|
||||||
|
|
@ -138,7 +138,7 @@ services:
|
||||||
restart: on-failure:100
|
restart: on-failure:100
|
||||||
|
|
||||||
chunker:
|
chunker:
|
||||||
image: docker.io/trustgraph/trustgraph-flow:0.5.4
|
image: docker.io/trustgraph/trustgraph-flow:0.5.5
|
||||||
command:
|
command:
|
||||||
- "chunker-recursive"
|
- "chunker-recursive"
|
||||||
- "-p"
|
- "-p"
|
||||||
|
|
@ -146,7 +146,7 @@ services:
|
||||||
restart: on-failure:100
|
restart: on-failure:100
|
||||||
|
|
||||||
vectorize:
|
vectorize:
|
||||||
image: docker.io/trustgraph/trustgraph-flow:0.5.4
|
image: docker.io/trustgraph/trustgraph-flow:0.5.5
|
||||||
command:
|
command:
|
||||||
- "embeddings-vectorize"
|
- "embeddings-vectorize"
|
||||||
- "-p"
|
- "-p"
|
||||||
|
|
@ -154,7 +154,7 @@ services:
|
||||||
restart: on-failure:100
|
restart: on-failure:100
|
||||||
|
|
||||||
embeddings:
|
embeddings:
|
||||||
image: docker.io/trustgraph/trustgraph-flow:0.5.4
|
image: docker.io/trustgraph/trustgraph-flow:0.5.5
|
||||||
command:
|
command:
|
||||||
- "embeddings-hf"
|
- "embeddings-hf"
|
||||||
- "-p"
|
- "-p"
|
||||||
|
|
@ -164,7 +164,7 @@ services:
|
||||||
restart: on-failure:100
|
restart: on-failure:100
|
||||||
|
|
||||||
kg-extract-definitions:
|
kg-extract-definitions:
|
||||||
image: docker.io/trustgraph/trustgraph-flow:0.5.4
|
image: docker.io/trustgraph/trustgraph-flow:0.5.5
|
||||||
command:
|
command:
|
||||||
- "kg-extract-definitions"
|
- "kg-extract-definitions"
|
||||||
- "-p"
|
- "-p"
|
||||||
|
|
@ -172,7 +172,7 @@ services:
|
||||||
restart: on-failure:100
|
restart: on-failure:100
|
||||||
|
|
||||||
kg-extract-relationships:
|
kg-extract-relationships:
|
||||||
image: docker.io/trustgraph/trustgraph-flow:0.5.4
|
image: docker.io/trustgraph/trustgraph-flow:0.5.5
|
||||||
command:
|
command:
|
||||||
- "kg-extract-relationships"
|
- "kg-extract-relationships"
|
||||||
- "-p"
|
- "-p"
|
||||||
|
|
@ -180,7 +180,7 @@ services:
|
||||||
restart: on-failure:100
|
restart: on-failure:100
|
||||||
|
|
||||||
store-graph-embeddings:
|
store-graph-embeddings:
|
||||||
image: docker.io/trustgraph/trustgraph-flow:0.5.4
|
image: docker.io/trustgraph/trustgraph-flow:0.5.5
|
||||||
command:
|
command:
|
||||||
- "ge-write-milvus"
|
- "ge-write-milvus"
|
||||||
- "-p"
|
- "-p"
|
||||||
|
|
@ -190,7 +190,7 @@ services:
|
||||||
restart: on-failure:100
|
restart: on-failure:100
|
||||||
|
|
||||||
store-triples:
|
store-triples:
|
||||||
image: docker.io/trustgraph/trustgraph-flow:0.5.4
|
image: docker.io/trustgraph/trustgraph-flow:0.5.5
|
||||||
command:
|
command:
|
||||||
- "triples-write-cassandra"
|
- "triples-write-cassandra"
|
||||||
- "-p"
|
- "-p"
|
||||||
|
|
@ -200,7 +200,7 @@ services:
|
||||||
restart: on-failure:100
|
restart: on-failure:100
|
||||||
|
|
||||||
text-completion:
|
text-completion:
|
||||||
image: docker.io/trustgraph/trustgraph-flow:0.5.4
|
image: docker.io/trustgraph/trustgraph-flow:0.5.5
|
||||||
command:
|
command:
|
||||||
- "text-completion-ollama"
|
- "text-completion-ollama"
|
||||||
- "-p"
|
- "-p"
|
||||||
|
|
@ -212,7 +212,7 @@ services:
|
||||||
restart: on-failure:100
|
restart: on-failure:100
|
||||||
|
|
||||||
graph-rag:
|
graph-rag:
|
||||||
image: docker.io/trustgraph/trustgraph-flow:0.5.4
|
image: docker.io/trustgraph/trustgraph-flow:0.5.5
|
||||||
command:
|
command:
|
||||||
- "graph-rag"
|
- "graph-rag"
|
||||||
- "-p"
|
- "-p"
|
||||||
|
|
|
||||||
|
|
@ -30,6 +30,17 @@ services:
|
||||||
- "pulsar-data:/pulsar/data"
|
- "pulsar-data:/pulsar/data"
|
||||||
restart: on-failure:100
|
restart: on-failure:100
|
||||||
|
|
||||||
|
init-pulsar:
|
||||||
|
image: docker.io/apachepulsar/pulsar:3.3.0
|
||||||
|
command:
|
||||||
|
- "sh"
|
||||||
|
- "-c"
|
||||||
|
- "pulsar-admin --admin-url http://pulsar:8080 tenants create tg && pulsar-admin --admin-url http://pulsar:8080 namespaces create tg/flow && pulsar-admin --admin-url http://pulsar:8080 namespaces create tg/request && pulsar-admin --admin-url http://pulsar:8080 namespaces create tg/response && pulsar-admin --admin-url http://pulsar:8080 namespaces set-retention --size -1 --time 3m tg/response"
|
||||||
|
depends_on:
|
||||||
|
pulsar:
|
||||||
|
condition: service_started
|
||||||
|
restart: on-failure:100
|
||||||
|
|
||||||
pulsar-manager:
|
pulsar-manager:
|
||||||
image: docker.io/apachepulsar/pulsar-manager:v0.3.0
|
image: docker.io/apachepulsar/pulsar-manager:v0.3.0
|
||||||
ports:
|
ports:
|
||||||
|
|
@ -119,7 +130,7 @@ services:
|
||||||
restart: on-failure:100
|
restart: on-failure:100
|
||||||
|
|
||||||
pdf-decoder:
|
pdf-decoder:
|
||||||
image: docker.io/trustgraph/trustgraph-flow:0.5.3
|
image: docker.io/trustgraph/trustgraph-flow:0.5.5
|
||||||
command:
|
command:
|
||||||
- "pdf-decoder"
|
- "pdf-decoder"
|
||||||
- "-p"
|
- "-p"
|
||||||
|
|
@ -127,7 +138,7 @@ services:
|
||||||
restart: on-failure:100
|
restart: on-failure:100
|
||||||
|
|
||||||
chunker:
|
chunker:
|
||||||
image: docker.io/trustgraph/trustgraph-flow:0.5.3
|
image: docker.io/trustgraph/trustgraph-flow:0.5.5
|
||||||
command:
|
command:
|
||||||
- "chunker-recursive"
|
- "chunker-recursive"
|
||||||
- "-p"
|
- "-p"
|
||||||
|
|
@ -135,7 +146,7 @@ services:
|
||||||
restart: on-failure:100
|
restart: on-failure:100
|
||||||
|
|
||||||
vectorize:
|
vectorize:
|
||||||
image: docker.io/trustgraph/trustgraph-flow:0.5.3
|
image: docker.io/trustgraph/trustgraph-flow:0.5.5
|
||||||
command:
|
command:
|
||||||
- "embeddings-vectorize"
|
- "embeddings-vectorize"
|
||||||
- "-p"
|
- "-p"
|
||||||
|
|
@ -143,7 +154,7 @@ services:
|
||||||
restart: on-failure:100
|
restart: on-failure:100
|
||||||
|
|
||||||
embeddings:
|
embeddings:
|
||||||
image: docker.io/trustgraph/trustgraph-flow:0.5.3
|
image: docker.io/trustgraph/trustgraph-flow:0.5.5
|
||||||
command:
|
command:
|
||||||
- "embeddings-hf"
|
- "embeddings-hf"
|
||||||
- "-p"
|
- "-p"
|
||||||
|
|
@ -153,7 +164,7 @@ services:
|
||||||
restart: on-failure:100
|
restart: on-failure:100
|
||||||
|
|
||||||
kg-extract-definitions:
|
kg-extract-definitions:
|
||||||
image: docker.io/trustgraph/trustgraph-flow:0.5.3
|
image: docker.io/trustgraph/trustgraph-flow:0.5.5
|
||||||
command:
|
command:
|
||||||
- "kg-extract-definitions"
|
- "kg-extract-definitions"
|
||||||
- "-p"
|
- "-p"
|
||||||
|
|
@ -161,7 +172,7 @@ services:
|
||||||
restart: on-failure:100
|
restart: on-failure:100
|
||||||
|
|
||||||
kg-extract-relationships:
|
kg-extract-relationships:
|
||||||
image: docker.io/trustgraph/trustgraph-flow:0.5.3
|
image: docker.io/trustgraph/trustgraph-flow:0.5.5
|
||||||
command:
|
command:
|
||||||
- "kg-extract-relationships"
|
- "kg-extract-relationships"
|
||||||
- "-p"
|
- "-p"
|
||||||
|
|
@ -169,7 +180,7 @@ services:
|
||||||
restart: on-failure:100
|
restart: on-failure:100
|
||||||
|
|
||||||
store-graph-embeddings:
|
store-graph-embeddings:
|
||||||
image: docker.io/trustgraph/trustgraph-flow:0.5.3
|
image: docker.io/trustgraph/trustgraph-flow:0.5.5
|
||||||
command:
|
command:
|
||||||
- "ge-write-milvus"
|
- "ge-write-milvus"
|
||||||
- "-p"
|
- "-p"
|
||||||
|
|
@ -179,7 +190,7 @@ services:
|
||||||
restart: on-failure:100
|
restart: on-failure:100
|
||||||
|
|
||||||
store-triples:
|
store-triples:
|
||||||
image: docker.io/trustgraph/trustgraph-flow:0.5.3
|
image: docker.io/trustgraph/trustgraph-flow:0.5.5
|
||||||
command:
|
command:
|
||||||
- "triples-write-cassandra"
|
- "triples-write-cassandra"
|
||||||
- "-p"
|
- "-p"
|
||||||
|
|
@ -189,7 +200,7 @@ services:
|
||||||
restart: on-failure:100
|
restart: on-failure:100
|
||||||
|
|
||||||
text-completion:
|
text-completion:
|
||||||
image: docker.io/trustgraph/trustgraph-flow:0.5.3
|
image: docker.io/trustgraph/trustgraph-flow:0.5.5
|
||||||
command:
|
command:
|
||||||
- "text-completion-ollama"
|
- "text-completion-ollama"
|
||||||
- "-p"
|
- "-p"
|
||||||
|
|
@ -203,7 +214,7 @@ services:
|
||||||
restart: on-failure:100
|
restart: on-failure:100
|
||||||
|
|
||||||
graph-rag:
|
graph-rag:
|
||||||
image: docker.io/trustgraph/trustgraph-flow:0.5.3
|
image: docker.io/trustgraph/trustgraph-flow:0.5.5
|
||||||
command:
|
command:
|
||||||
- "graph-rag"
|
- "graph-rag"
|
||||||
- "-p"
|
- "-p"
|
||||||
|
|
|
||||||
2
setup.py
2
setup.py
|
|
@ -4,7 +4,7 @@ import os
|
||||||
with open("README.md", "r") as fh:
|
with open("README.md", "r") as fh:
|
||||||
long_description = fh.read()
|
long_description = fh.read()
|
||||||
|
|
||||||
version = "0.5.3"
|
version = "0.5.5"
|
||||||
|
|
||||||
setuptools.setup(
|
setuptools.setup(
|
||||||
name="trustgraph",
|
name="trustgraph",
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue