Merge branch 'master' into release/v0.10. Includes llamafile and

prompt modifications.
This commit is contained in:
Cyber MacGeddon 2024-09-28 11:26:52 +01:00
commit 39cf256f5c
33 changed files with 1234 additions and 95 deletions

View file

@ -68,6 +68,31 @@ local url = import "values/url.jsonnet";
},
"kg-extract-topics" +: {
create:: function(engine)
local container =
engine.container("kg-extract-topics")
.with_image(images.trustgraph)
.with_command([
"kg-extract-topics",
"-p",
url.pulsar,
])
.with_limits("0.5", "128M")
.with_reservations("0.1", "128M");
local containerSet = engine.containers(
"kg-extract-topics", [ container ]
);
engine.resources([
containerSet,
])
},
"graph-rag" +: {
create:: function(engine)