trustgraph/templates/components/cohere.jsonnet

88 lines
1.4 KiB
Jsonnet
Raw Normal View History

local base = import "base.jsonnet";
local images = import "images.jsonnet";
local url = import "url.jsonnet";
{
services +: {
chunker: base + {
image: images.trustgraph,
command: [
2024-08-22 00:19:55 +01:00
"${CHUNKER:-chunker-token}",
"-p",
url.pulsar,
"--chunk-size",
2024-08-22 00:19:55 +01:00
"150",
"--chunk-overlap",
2024-08-22 00:19:55 +01:00
"10",
],
deploy: {
resources: {
limits: {
cpus: '0.5',
memory: '128M'
},
reservations: {
cpus: '0.1',
memory: '128M'
}
}
},
},
"text-completion": base + {
image: images.trustgraph,
command: [
"text-completion-cohere",
"-p",
url.pulsar,
"-k",
"${COHERE_KEY}",
2024-08-22 00:19:55 +01:00
"-t",
"0.0",
],
deploy: {
resources: {
limits: {
cpus: '0.5',
memory: '128M'
},
reservations: {
cpus: '0.1',
memory: '128M'
}
}
},
},
"text-completion-rag": base + {
image: images.trustgraph,
command: [
"text-completion-cohere",
"-p",
url.pulsar,
"-k",
"${COHERE_KEY}",
2024-08-22 00:19:55 +01:00
"-t",
"0.0",
"-i",
"non-persistent://tg/request/text-completion-rag",
"-o",
"non-persistent://tg/response/text-completion-rag-response",
],
deploy: {
resources: {
limits: {
cpus: '0.5',
memory: '128M'
},
reservations: {
cpus: '0.1',
memory: '128M'
}
}
},
},
},
}