Add NVIDIA_API_KEY support and update ollama to v0.12.6

This commit is contained in:
Santosh Bhavani 2025-10-19 14:52:24 -05:00
parent a6f94052b1
commit 9dc734eee5
2 changed files with 2 additions and 1 deletions

View File

@ -14,6 +14,7 @@ services:
- OLLAMA_BASE_URL=http://ollama:11434/v1
- OLLAMA_MODEL=llama3.1:8b
- REMOTE_WEBGPU_SERVICE_URL=http://txt2kg-remote-webgpu:8083
- NVIDIA_API_KEY=${NVIDIA_API_KEY:-}
# Node.js timeout configurations for large model processing
- NODE_OPTIONS=--max-http-header-size=80000
- UV_THREADPOOL_SIZE=128

View File

@ -1,4 +1,4 @@
FROM ollama/ollama:latest
FROM ollama/ollama:0.12.6
# Copy the entrypoint script
COPY entrypoint.sh /entrypoint.sh