Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,7 @@ NVIDIA offers free inference endpoints for powerful models like Moonshot AI's Ki
- Copy the entire Python code snippet.
- Paste the code into a chat with OpenClaw and use this prompt:
```
Hey, here's the Python code from NVIDIA Build for the Kimi model (with my API key already included).
Hey, here's the Python code from NVIDIA Build to call an API with a model (my API key already included).
1. Test the code to make sure it works.
2. Configure this model as a fallback for my primary model.
```
Expand Down
4 changes: 2 additions & 2 deletions docker/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
ARG OPENCLAW_VERSION=2026.3.22
ARG OLLAMA_VERSION=0.18.2
ARG OPENCLAW_VERSION=2026.3.28
ARG OLLAMA_VERSION=0.19.0
Copy link

Copilot AI Mar 30, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

OLLAMA_VERSION was previously pinned to an exact patch version (0.18.2) but is now set to 0.19. If 0.19 is a moving tag (e.g., latest patch in the 0.19 line), this can make Docker builds non-reproducible. Consider pinning to a full patch version (e.g., 0.19.x) to keep builds deterministic.

Copilot uses AI. Check for mistakes.
ARG NODE_VERSION=24

# Use the official Ollama image to get the binary
Expand Down
Loading