/ Home

Picoclow

Setup: Go - Mac

brew update
brew install go

go version
go version go1.26.0 darwin/arm64

Setup - Picoclaw

git clone https://github.com/sipeed/picoclaw.git

cd picoclaw
make deps

# Build for multiple platforms
make build-all

# Build And Install
make install

picoclaw onboard

Update settings

/Users/csp/.picoclaw/config.json

"agents": {
    "defaults": {
      "workspace": "~/.picoclaw/workspace",
      "restrict_to_workspace": true,
      "provider": "openai",
      "model": "gpt-4.1-mini",
      "max_tokens": 8192,
      "temperature": 0.7,
      "max_tool_iterations": 20
    }
  }

1771098784840

1771099022754

1771099045508

1771099983534

claw with Llama.cpp

"agents": {
    "defaults": {
      "workspace": "~/.picoclaw/workspace",
      "restrict_to_workspace": true,
      "provider": "vllm",
      "model": "vllm/qwen2.5-coder-3b-instruct-q4_k_m.gguf",
      "max_tokens": 8192,
      "temperature": 0.7,
      "max_tool_iterations": 20
    }
  }

  "vllm": {
      "api_key": "none",
      "api_base": "http://0.0.0.0:8080/"
    },

1771100812550