> ## Documentation Index
> Fetch the complete documentation index at: https://veniceai-docs-revamp.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

# OpenClaw

> Venice AI als Model Provider in OpenClaw nutzen

[OpenClaw](https://openclaw.ai) ist ein quelloffenes, selbstgehostetes KI-Gateway, das Messaging-Plattformen (WhatsApp, Telegram, Discord, iMessage, Slack) mit KI-Modellen verbindet. Venice AI ist als integrierter Provider verfügbar und gibt dir Zugriff auf private und unzensierte Modelle aus jedem verbundenen Kanal.

<Card title="Offizieller Venice-Provider-Guide" icon="arrow-up-right-from-square" href="https://docs.openclaw.ai/providers/venice">
  Vollständige Setup-Anleitung, Modellliste und Konfigurationsoptionen in den OpenClaw-Docs.
</Card>

## Einrichtung

### 1. OpenClaw installieren

<Tabs>
  <Tab title="macOS / Linux">
    ```bash theme={"dark"}
    curl -fsSL https://openclaw.ai/install.sh | bash
    ```
  </Tab>

  <Tab title="Windows">
    ```powershell theme={"dark"}
    iwr -useb https://openclaw.ai/install.ps1 | iex
    ```
  </Tab>

  <Tab title="npm">
    ```bash theme={"dark"}
    npm install -g openclaw@latest
    ```
  </Tab>
</Tabs>

### 2. Onboarding-Wizard ausführen

```bash theme={"dark"}
openclaw onboard
```

Der Wizard führt dich durch das Setup. Wähle bei Aufforderung **Venice AI** als Provider aus der Liste und füge deinen API-Schlüssel ein. Hol dir einen unter [venice.ai/settings/api](https://venice.ai/settings/api), falls noch nicht vorhanden.

### 3. Modell auswählen

Während des Onboardings zeigt OpenClaw alle verfügbaren Venice-Modelle. Ein paar Empfehlungen:

| Anwendungsfall | Modell                      | Privacy    |
| -------------- | --------------------------- | ---------- |
| Allgemein      | `venice/zai-org-glm-5`      | Private    |
| Reasoning      | `venice/kimi-k2-5`          | Private    |
| Coding         | `venice/claude-opus-4-6`    | Anonymized |
| Vision         | `venice/qwen3-vl-235b-a22b` | Private    |
| Uncensored     | `venice/venice-uncensored`  | Private    |

Dein Standardmodell jederzeit ändern:

```bash theme={"dark"}
openclaw models set venice/zai-org-glm-5
```

Alle verfügbaren Modelle auflisten:

```bash theme={"dark"}
openclaw models list | grep venice
```

### 4. Chatten

Öffne das Terminal-UI:

```bash theme={"dark"}
openclaw tui
```

Oder das Web-Dashboard:

```bash theme={"dark"}
openclaw dashboard
```

Oder verbinde einen Messaging-Kanal (WhatsApp, Telegram, Discord usw.):

```bash theme={"dark"}
openclaw channels login
openclaw gateway
```

## Privacy-Modi

Venice-Modelle in OpenClaw folgen denselben [Privacy-Stufen](/overview/privacy) wie die Venice-API:

* **Private**-Modelle (GLM, Qwen, DeepSeek, Llama, Venice Uncensored) laufen auf Venices GPU-Flotte. Prompts werden niemals gespeichert oder geloggt.
* **Anonymized**-Modelle (Claude, GPT, Gemini, Grok) werden über Venice geproxied, wobei alle identifizierenden Informationen entfernt werden. Der Drittanbieter sieht Venice als Kunden, nicht dich.

## Bild- und Videogenerierung

Installiere das Venice AI Media-Skill für Bild- und Videogenerierung:

```bash theme={"dark"}
openclaw skills install nhannah/venice-ai-media
```

## Ressourcen

<CardGroup cols={2}>
  <Card title="OpenClaw Docs" icon="book" href="https://docs.openclaw.ai/">
    Offizielle Dokumentation
  </Card>

  <Card title="Venice-Provider-Guide" icon="puzzle-piece" href="https://docs.openclaw.ai/providers/venice">
    Vollständige Venice-Setup-Referenz
  </Card>
</CardGroup>
