mirror of
https://github.com/trustgraph-ai/trustgraph.git
synced 2026-04-26 08:56:21 +02:00
- Break out store queries, so not locked into a Milvus/Cassandra backend - Break out prompting into a separate module, so that prompts can be tailored to other LLMs - Jsonnet used to generate docker compose templates - Version to 0.6.0
12 lines
531 B
Jsonnet
12 lines
531 B
Jsonnet
local version = import "version.jsonnet";
|
|
{
|
|
cassandra: "docker.io/cassandra:4.1.5",
|
|
pulsar: "docker.io/apachepulsar/pulsar:3.3.0",
|
|
pulsar_manager: "docker.io/apachepulsar/pulsar-manager:v0.3.0",
|
|
etcd: "quay.io/coreos/etcd:v3.5.5",
|
|
minio: "docker.io/minio/minio:RELEASE.2024-07-04T14-25-45Z",
|
|
milvus: "docker.io/milvusdb/milvus:v2.4.5",
|
|
prometheus: "docker.io/prom/prometheus:v2.53.1",
|
|
grafana: "docker.io/grafana/grafana:10.0.0",
|
|
trustgraph: "docker.io/trustgraph/trustgraph-flow:" + version,
|
|
}
|