ZeroClaw
ZeroClaw is a personal AI assistant you run on your own devices. Official site: zeroclawlabs.ai
1.1 Usage
Method 1: Config File
Install ZeroClaw first:
brew install zeroclaw
Or build from source:
git clone https://github.com/zeroclaw-labs/zeroclaw.git
cd zeroclaw
./install.sh
Set your HPC-AI API key in the shell:
export ZEROCLAW_API_KEY="your-hpc-ai-api-key"
Configure ~/.zeroclaw/config.toml:
default_provider = "custom:https://api.hpc-ai.com/inference/v1"
default_model = "minimax/minimax-m2.5"
Start an agent session:
zeroclaw agent
Method 2: Environment Override
If you want to override the provider without editing config.toml, set ZEROCLAW_PROVIDER:
export ZEROCLAW_PROVIDER="custom:https://api.hpc-ai.com/inference/v1"
export ZEROCLAW_API_KEY="your-hpc-ai-api-key"
Keep the model configured in ~/.zeroclaw/config.toml:
default_model = "minimax/minimax-m2.5"
Then run:
zeroclaw agent -m "Hello, HPC-AI"