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

# WorkBuddy

> AIHubMix in WorkBuddy konfigurieren und beliebige von AIHubMix unterstuetzte Modelle verwenden.

WorkBuddy unterstuetzt benutzerdefinierte OpenAI-kompatible Modelle. Nach der Einrichtung von AIHubMix lassen sich GPT-, Claude-, Gemini-, DeepSeek-, GLM- und weitere AIHubMix-Modelle auswaehlen.

## Vorbereitung

* [WorkBuddy](https://www.codebuddy.cn/work/) installieren und oeffnen.
* Im [AIHubMix Console](https://aihubmix.com/token) einen API Key erstellen; das Format ist normalerweise `sk-***`.
* Die gewuenschte Modell-ID aus der AIHubMix-Modellliste kopieren, zum Beispiel `gpt-5.5`, `gemini-3.5-flash` oder `deepseek-chat`.

## AIHubMix ueber die Benutzeroberflaeche konfigurieren

In WorkBuddy rechts unten im Eingabefeld auf die aktuelle Modellauswahl, zum Beispiel **Auto**, klicken.

<img src="https://mintcdn.com/aihubmix/hUWPsUQx34d5ps0-/public/cn/WorkBuddy-new-01.png?fit=max&auto=format&n=hUWPsUQx34d5ps0-&q=85&s=23bec09ea72b5e1b648177767cbde637" alt="WorkBuddy-Modellauswahl oeffnen" width="1920" height="1030" data-path="public/cn/WorkBuddy-new-01.png" />

Ans Ende der Modellliste scrollen und **Configure custom models** waehlen.

<img src="https://mintcdn.com/aihubmix/hUWPsUQx34d5ps0-/public/cn/WorkBuddy-new-02.png?fit=max&auto=format&n=hUWPsUQx34d5ps0-&q=85&s=688011a1c31e25045e159e9dc8190a80" alt="Benutzerdefinierte Modelle in WorkBuddy oeffnen" width="1920" height="1030" data-path="public/cn/WorkBuddy-new-02.png" />

Auf **Add Model** klicken und unter **Provider** die Option **Custom** waehlen.

<img src="https://mintcdn.com/aihubmix/hUWPsUQx34d5ps0-/public/cn/WorkBuddy-new-03.png?fit=max&auto=format&n=hUWPsUQx34d5ps0-&q=85&s=1329120913f2155da65c2f7d357a282f" alt="Custom Provider in WorkBuddy waehlen" width="1920" height="1030" data-path="public/cn/WorkBuddy-new-03.png" />

Folgende Felder ausfuellen:

* **Endpoint**: `https://aihubmix.com/v1`; bei Nichterreichbarkeit `https://api.inferera.com/v1` verwenden.
* **API Key**: Den im [AIHubMix Console](https://aihubmix.com/token) erstellten Key eintragen.
* **Model Name**: Die Modell-ID eintragen, zum Beispiel `gpt-5.5`.
* **Advanced Settings**: **Tool Calling**, **Image Input** oder **Reasoning** nur fuer unterstuetzte Funktionen aktivieren.

Mit **Save** speichern.

<img src="https://mintcdn.com/aihubmix/hUWPsUQx34d5ps0-/public/cn/WorkBuddy-new-04.png?fit=max&auto=format&n=hUWPsUQx34d5ps0-&q=85&s=d5560d438a48fbfbb7ca07d8223eb9de" alt="Endpoint, API Key und Modellname in WorkBuddy eintragen" width="1920" height="1030" data-path="public/cn/WorkBuddy-new-04.png" />

Zurueck in der Modellauswahl das Modell unter **Custom Models** waehlen.

<img src="https://mintcdn.com/aihubmix/hUWPsUQx34d5ps0-/public/cn/WorkBuddy-new-05.png?fit=max&auto=format&n=hUWPsUQx34d5ps0-&q=85&s=c3446153d25197ee20a5b9fab75a0821" alt="Benutzerdefiniertes Modell in WorkBuddy waehlen" width="1920" height="1030" data-path="public/cn/WorkBuddy-new-05.png" />

## Modell per Konfigurationsdatei hinzufuegen

WorkBuddy speichert die Modelle in einer lokalen `models.json`. Statt die Felder in der Benutzeroberflaeche einzeln auszufuellen, diese Datei bearbeiten:

```text theme={null}
%USERPROFILE%\.workbuddy\models.json
```

Die Datei enthaelt ein Modell-Array:

```json theme={null}
[{"id":"gpt-5.5","name":"gpt-5.5","vendor":"Custom","url":"https://aihubmix.com/v1","apiKey":"sk-***","supportsToolCall":true,"supportsImages":true,"supportsReasoning":false,"useCustomProtocol":false}]
```

Falls die Hauptadresse nicht erreichbar ist:

```json theme={null}
"url": "https://api.inferera.com/v1"
```

`id` und `name` sind die Modell-ID, `vendor` ist `Custom` und `apiKey` ist der AIHubMix Key. `supportsImages` und `supportsToolCall` entsprechen **Image Input** und **Tool Calling**. Anschliessend WorkBuddy neu starten oder die Modellauswahl erneut oeffnen.

## Funktion pruefen

Das Modell waehlen und eine kurze Nachricht senden. Eine Antwort bestaetigt die Einrichtung.

<img src="https://mintcdn.com/aihubmix/hUWPsUQx34d5ps0-/public/cn/WorkBuddy-new-06.png?fit=max&auto=format&n=hUWPsUQx34d5ps0-&q=85&s=d3cae4ea3b34d533d42d535e224cdcba" alt="Antwort in WorkBuddy pruefen" width="1920" height="1030" data-path="public/cn/WorkBuddy-new-06.png" />

Wenn **Image Input** fuer ein unterstuetztes Modell aktiviert ist, ein Bild hochladen und die Bildeingabe testen.

<img src="https://mintcdn.com/aihubmix/hUWPsUQx34d5ps0-/public/cn/WorkBuddy-new-07.png?fit=max&auto=format&n=hUWPsUQx34d5ps0-&q=85&s=5ec910ae65fb3d929a34697473065fd2" alt="Bildeingabe in WorkBuddy pruefen" width="1920" height="1030" data-path="public/cn/WorkBuddy-new-07.png" />

## FAQ

**Warum Custom waehlen?**
AIHubMix verwendet eine OpenAI-kompatible Schnittstelle. Endpoint, API Key und Modellname muessen daher manuell eingetragen werden; integrierte Anbieter verwenden eventuell ihre eigene API-Adresse.

**Das Modell erscheint nach dem Speichern nicht?**
Die Modellauswahl erneut oeffnen und bis **Custom Models** scrollen. Pruefen, ob **Save** geklickt wurde und ein Modellname eingetragen ist. Bei Dateikonfiguration muss `%USERPROFILE%\.workbuddy\models.json` gueltiges JSON sein.

**Was pruefen, wenn eine Anfrage fehlschlaegt?**
Pruefen, ob der Endpoint `/v1` enthaelt, der API Key vollstaendig ist und der Modellname der AIHubMix-Modell-ID entspricht. Bei Ausfall der Hauptadresse `https://api.inferera.com/v1` verwenden.

Letzte Aktualisierung: 2026-07-10
