Skip to content
Merged
Changes from 2 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
18 changes: 18 additions & 0 deletions content/manuals/ai/model-runner/ide-integrations.md
Original file line number Diff line number Diff line change
Expand Up @@ -258,6 +258,24 @@

You can find more details in [this Docker Blog post](https://www.docker.com/blog/opencode-docker-model-runner-private-ai-coding/)

## Claude Code

[Claude Code](https://claude.com/product/claude-code) is [Anthropic's](https://www.anthropic.com/) command-line tool for agentic coding. It lives in your terminal, understands your codebase, and helps you code faster by executing routine tasks, explaining complex code, and handling git workflows through natural language commands.

Check failure on line 263 in content/manuals/ai/model-runner/ide-integrations.md

View workflow job for this annotation

GitHub Actions / validate (vale)

[vale] reported by reviewdog 🐶 [Vale.Terms] Use 'Git' instead of 'git'. Raw Output: {"message": "[Vale.Terms] Use 'Git' instead of 'git'.", "location": {"path": "content/manuals/ai/model-runner/ide-integrations.md", "range": {"start": {"line": 263, "column": 284}}}, "severity": "ERROR"}

### Configuration

1. Install Claude Code (see [docs](https://code.claude.com/docs/en/quickstart#step-1-install-claude-code))
2. Use the `ANTHROPIC_BASE_URL` environment varialbe to point Claude Code at DMR. On Mac or Linux you can do this e.g. like this if you want to use the `gpt-oss:32k` model:

Check warning on line 268 in content/manuals/ai/model-runner/ide-integrations.md

View workflow job for this annotation

GitHub Actions / validate (vale)

[vale] reported by reviewdog 🐶 [Docker.RecommendedWords] Consider using 'for example' instead of 'e.g. ' Raw Output: {"message": "[Docker.RecommendedWords] Consider using 'for example' instead of 'e.g. '", "location": {"path": "content/manuals/ai/model-runner/ide-integrations.md", "range": {"start": {"line": 268, "column": 115}}}, "severity": "INFO"}

Check failure on line 268 in content/manuals/ai/model-runner/ide-integrations.md

View workflow job for this annotation

GitHub Actions / validate (vale)

[vale] reported by reviewdog 🐶 [Vale.Spelling] Did you really mean 'varialbe'? Raw Output: {"message": "[Vale.Spelling] Did you really mean 'varialbe'?", "location": {"path": "content/manuals/ai/model-runner/ide-integrations.md", "range": {"start": {"line": 268, "column": 45}}}, "severity": "ERROR"}
```bash
ANTHROPIC_BASE_URL=http://localhost:12434 claude --model gpt-oss:32k
Comment thread
tfenster marked this conversation as resolved.
Outdated
```
On Windows (PowerShell) you can do it like this:
```powershell
$env:ANTHROPIC_BASE_URL="http://localhost:12434"
claude --model gpt-oss:32k
```
You can find more details in [this Docker Blog post](https://www.docker.com/blog/run-claude-code-locally-docker-model-runner/)

## Common issues

### "Connection refused" errors
Expand Down
Loading