- Rename embeddings-vectorize to graph-embeddings

- Added document-embeddings processor (broken, needs fixing)
This commit is contained in:
Cyber MacGeddon 2025-01-04 19:24:10 +00:00
parent 5227e3ac58
commit f184f11041
10 changed files with 148 additions and 25 deletions

View file

@ -119,15 +119,15 @@ local prompt = import "prompt-template.jsonnet";
},
"vectorize" +: {
"graph-embeddings" +: {
create:: function(engine)
local container =
engine.container("vectorize")
engine.container("graph-embeddings")
.with_image(images.trustgraph)
.with_command([
"embeddings-vectorize",
"graph-embeddings",
"-p",
url.pulsar,
])
@ -135,7 +135,7 @@ local prompt = import "prompt-template.jsonnet";
.with_reservations("0.5", "512M");
local containerSet = engine.containers(
"vectorize", [ container ]
"graph-embeddings", [ container ]
);
local service =