Clanker Speedrun Any%

Ollama & Tailscale & Pi Agent

The hardware

  • lv-426: ThinkPad E14 Gen7
    • AMD Ryzen 7, 32GB RAM
  • nostromo: Desktop PC
    • AMD Ryzen 9, AMD RX 7900 XTX, 24GB VRAM, 32GB RAM

Ollama

# desktop
> xh localhost:11434
Ollama is running

> ollama list
NAME                        ID              SIZE      MODIFIED
qwen3.6:27b-tuned           81039db094de    17 GB     27 hours ago
qwen3.8:27b-tuned           7f730e283bfb    17 GB     27 hours ago
qwen2.5-coder:1.5b-tuned    dd22c4f7d958    986 MB    27 hours ago
qwen3.8:27b                 22130167c4c2    17 GB     28 hours ago
qwen2.5-coder:1.5b          d7372fd82851    986 MB    2 months ago
qwen3.6:27b                 a50eda8ed977    17 GB     2 months ago

Model files

FROM qwen3.6:27b

# context window
PARAMETER num_ctx 69632

# recommended parameters
PARAMETER temperature 0.6
PARAMETER top_p 0.95
PARAMETER top_k 20
PARAMETER min_p 0.0
PARAMETER presence_penalty 0.0
PARAMETER repeat_penalty 1.0

FROM qwen3.8:27b

# context window
PARAMETER num_ctx 69632

# recommended parameters
PARAMETER temperature 1.0
PARAMETER top_p 0.95
PARAMETER top_k 20
PARAMETER min_p 0.0
PARAMETER presence_penalty 0.0
PARAMETER repeat_penalty 1.0

FROM qwen2.5-coder:1.5b

# context window
PARAMETER num_ctx 8192









Tailscale

# desktop

> tailscale serve --bg --http 11434 localhost:11434

# laptop

> xh nostromo:11434

HTTP/1.1 200 OK
Content-Length: 17
Content-Type: text/plain; charset=utf-8w

Ollama is running

Pi Agent

// models.json
{
    "providers": {
        "ollama": {
            "baseUrl": "http://nostromo:11434/v1",
            "api": "openai-completions",
            "apiKey": "ollama",
            "models": [
                {
                    "id": "qwen3.6:27b-tuned",
                    "contextWindow": 69632
                },
                {
                    "id": "qwen3.8:27b-tuned",
                    "contextWindow": 69632
                }
            ]
        }
    }
}

Demo