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-ollama", "-p", url.pulsar, "-m", "gemma2:9b", "-r", "${OLLAMA_HOST}", ], deploy: { resources: { limits: { cpus: '0.5', memory: '128M' }, reservations: { cpus: '0.1', memory: '128M' } } }, }, "text-completion-rag": base + { image: images.trustgraph, command: [ "text-completion-ollama", "-p", url.pulsar, "-m", "gemma2:9b", "-r", "${OLLAMA_HOST}", "-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' } } }, }, }, }