refactor: rename to openclaw

This commit is contained in:
Peter Steinberger
2026-01-30 03:15:10 +01:00
parent 4583f88626
commit 9a7160786a
2357 changed files with 16688 additions and 16788 deletions
+21 -21
View File
@@ -1,7 +1,7 @@
---
summary: "Use Venice AI privacy-focused models in Moltbot"
summary: "Use Venice AI privacy-focused models in OpenClaw"
read_when:
- You want privacy-focused inference in Moltbot
- You want privacy-focused inference in OpenClaw
- You want Venice AI setup guidance
---
# Venice AI (Venice highlight)
@@ -10,7 +10,7 @@ read_when:
Venice AI provides privacy-focused AI inference with support for uncensored models and access to major proprietary models through their anonymized proxy. All inference is private by default—no training on your data, no logging.
## Why Venice in Moltbot
## Why Venice in OpenClaw
- **Private inference** for open-source models (no logging).
- **Uncensored models** when you need them.
@@ -45,7 +45,7 @@ Venice offers two privacy levels — understanding this is key to choosing your
2. Go to **Settings → API Keys → Create new key**
3. Copy your API key (format: `vapi_xxxxxxxxxxxx`)
### 2. Configure Moltbot
### 2. Configure OpenClaw
**Option A: Environment Variable**
@@ -56,7 +56,7 @@ export VENICE_API_KEY="vapi_xxxxxxxxxxxx"
**Option B: Interactive Setup (Recommended)**
```bash
moltbot onboard --auth-choice venice-api-key
openclaw onboard --auth-choice venice-api-key
```
This will:
@@ -68,7 +68,7 @@ This will:
**Option C: Non-interactive**
```bash
moltbot onboard --non-interactive \
openclaw onboard --non-interactive \
--auth-choice venice-api-key \
--venice-api-key "vapi_xxxxxxxxxxxx"
```
@@ -76,12 +76,12 @@ moltbot onboard --non-interactive \
### 3. Verify Setup
```bash
moltbot chat --model venice/llama-3.3-70b "Hello, are you working?"
openclaw chat --model venice/llama-3.3-70b "Hello, are you working?"
```
## Model Selection
After setup, Moltbot shows all available Venice models. Pick based on your needs:
After setup, OpenClaw shows all available Venice models. Pick based on your needs:
- **Default (our pick)**: `venice/llama-3.3-70b` for private, balanced performance.
- **Best overall quality**: `venice/claude-opus-45` for hard jobs (Opus remains the strongest).
@@ -91,19 +91,19 @@ After setup, Moltbot shows all available Venice models. Pick based on your needs
Change your default model anytime:
```bash
moltbot models set venice/claude-opus-45
moltbot models set venice/llama-3.3-70b
openclaw models set venice/claude-opus-45
openclaw models set venice/llama-3.3-70b
```
List all available models:
```bash
moltbot models list | grep venice
openclaw models list | grep venice
```
## Configure via `moltbot configure`
## Configure via `openclaw configure`
1. Run `moltbot configure`
1. Run `openclaw configure`
2. Select **Model/auth**
3. Choose **Venice AI**
@@ -159,7 +159,7 @@ moltbot models list | grep venice
## Model Discovery
Moltbot automatically discovers models from the Venice API when `VENICE_API_KEY` is set. If the API is unreachable, it falls back to a static catalog.
OpenClaw automatically discovers models from the Venice API when `VENICE_API_KEY` is set. If the API is unreachable, it falls back to a static catalog.
The `/models` endpoint is public (no auth needed for listing), but inference requires a valid API key.
@@ -192,19 +192,19 @@ Venice uses a credit-based system. Check [venice.ai/pricing](https://venice.ai/p
```bash
# Use default private model
moltbot chat --model venice/llama-3.3-70b
openclaw chat --model venice/llama-3.3-70b
# Use Claude via Venice (anonymized)
moltbot chat --model venice/claude-opus-45
openclaw chat --model venice/claude-opus-45
# Use uncensored model
moltbot chat --model venice/venice-uncensored
openclaw chat --model venice/venice-uncensored
# Use vision model with image
moltbot chat --model venice/qwen3-vl-235b-a22b
openclaw chat --model venice/qwen3-vl-235b-a22b
# Use coding model
moltbot chat --model venice/qwen3-coder-480b-a35b-instruct
openclaw chat --model venice/qwen3-coder-480b-a35b-instruct
```
## Troubleshooting
@@ -213,14 +213,14 @@ moltbot chat --model venice/qwen3-coder-480b-a35b-instruct
```bash
echo $VENICE_API_KEY
moltbot models list | grep venice
openclaw models list | grep venice
```
Ensure the key starts with `vapi_`.
### Model not available
The Venice model catalog updates dynamically. Run `moltbot models list` to see currently available models. Some models may be temporarily offline.
The Venice model catalog updates dynamically. Run `openclaw models list` to see currently available models. Some models may be temporarily offline.
### Connection issues