mirror of
https://github.com/trustgraph-ai/trustgraph.git
synced 2026-04-25 00:16:23 +02:00
42 lines
791 B
Jsonnet
42 lines
791 B
Jsonnet
local base = import "base.jsonnet";
|
|
local images = import "images.jsonnet";
|
|
local url = import "url.jsonnet";
|
|
{
|
|
services +: {
|
|
|
|
"text-completion": base + {
|
|
image: images.trustgraph,
|
|
command: [
|
|
"text-completion-claude",
|
|
"-p",
|
|
url.pulsar,
|
|
"-k",
|
|
"${CLAUDE_KEY}",
|
|
"-x",
|
|
"4096",
|
|
"-t",
|
|
"0.0",
|
|
],
|
|
},
|
|
|
|
"text-completion-rag": base + {
|
|
image: images.trustgraph,
|
|
command: [
|
|
"text-completion-claude",
|
|
"-p",
|
|
url.pulsar,
|
|
"-k",
|
|
"${CLAUDE_KEY}",
|
|
"-x",
|
|
"4096",
|
|
"-t",
|
|
"0.0",
|
|
"-i",
|
|
"non-persistent://tg/request/text-completion-rag",
|
|
"-o",
|
|
"non-persistent://tg/response/text-completion-rag-response",
|
|
],
|
|
},
|
|
|
|
},
|
|
}
|