mirror of
https://github.com/trustgraph-ai/trustgraph.git
synced 2026-07-17 09:11:03 +02:00
- Rename embeddings-vectorize to graph-embeddings
- Added document-embeddings processor (broken, needs fixing)
This commit is contained in:
parent
5227e3ac58
commit
f184f11041
10 changed files with 148 additions and 25 deletions
|
|
@ -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 =
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue