fixes from Devin part 1

This commit is contained in:
Riccardo Giorato 2026-01-27 16:34:25 +01:00
parent 1ca06f7590
commit 95939daa20
3 changed files with 5 additions and 4 deletions

View File

@ -1,7 +1,7 @@
---
summary: "Together AI setup (auth + model selection)"
read_when:
- You want to use Together AI with Clawdbot
- You want to use Together AI with Moltbot
- You need the API key env var or CLI auth choice
---
# Together AI
@ -18,7 +18,7 @@ The [Together AI](https://together.ai) provides access to leading open-source mo
1) Set the API key (recommended: store it for the Gateway):
```bash
clawdbot onboard --auth-choice together-api-key
moltbot onboard --auth-choice together-api-key
```
2) Set a default model:
@ -36,7 +36,7 @@ clawdbot onboard --auth-choice together-api-key
## Non-interactive example
```bash
clawdbot onboard --non-interactive \
moltbot onboard --non-interactive \
--mode local \
--auth-choice together-api-key \
--together-api-key "$TOGETHER_API_KEY"

View File

@ -1 +1 @@
dfefbfca9e251e47f76dae3cb3c0ee3ccd5bf9d0fbb3522dc71a2a5f1ccd34a4
df15839aed1e93979fc0669517abbe081a49b6322c3fe35764b4e4fb7cb06c70

View File

@ -126,6 +126,7 @@ export function registerOnboardCommand(program: Command) {
minimaxApiKey: opts.minimaxApiKey as string | undefined,
syntheticApiKey: opts.syntheticApiKey as string | undefined,
veniceApiKey: opts.veniceApiKey as string | undefined,
togetherApiKey: opts.togetherApiKey as string | undefined,
opencodeZenApiKey: opts.opencodeZenApiKey as string | undefined,
gatewayPort:
typeof gatewayPort === "number" && Number.isFinite(gatewayPort)