mirror of
https://github.com/trustgraph-ai/trustgraph.git
synced 2026-04-25 16:36:21 +02:00
* - Added docker-compose-storage.yaml, just the infrastructure bits - Tidied storage invocation * Util, sits on chunker output and reports histogram of chunk sizes
36 lines
522 B
Jsonnet
36 lines
522 B
Jsonnet
local base = import "base.jsonnet";
|
|
local images = import "images.jsonnet";
|
|
local url = import "url.jsonnet";
|
|
local milvus = import "stores/milvus.jsonnet";
|
|
|
|
milvus + {
|
|
|
|
services +: {
|
|
|
|
"store-graph-embeddings": base + {
|
|
image: images.trustgraph,
|
|
command: [
|
|
"ge-write-milvus",
|
|
"-p",
|
|
url.pulsar,
|
|
"-t",
|
|
url.milvus,
|
|
],
|
|
},
|
|
|
|
"query-graph-embeddings": base + {
|
|
image: images.trustgraph,
|
|
command: [
|
|
"ge-query-milvus",
|
|
"-p",
|
|
url.pulsar,
|
|
"-t",
|
|
url.milvus,
|
|
],
|
|
},
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|