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

# Together

# Together AI

The [Together AI](https://together.ai) provides access to leading open-source models including Llama, DeepSeek, Kimi, and more through a unified API.

* Provider: `together`
* Auth: `TOGETHER_API_KEY`
* API: OpenAI-compatible

## Quick start

1. Set the API key (recommended: store it for the Gateway):

```bash theme={"dark"}
openclaw onboard --auth-choice together-api-key
```

2. Set a default model:

```json5 theme={"dark"}
{
  agents: {
    defaults: {
      model: { primary: "together/moonshotai/Kimi-K2.5" },
    },
  },
}
```

## Non-interactive example

```bash theme={"dark"}
openclaw onboard --non-interactive \
  --mode local \
  --auth-choice together-api-key \
  --together-api-key "$TOGETHER_API_KEY"
```

This will set `together/moonshotai/Kimi-K2.5` as the default model.

## Environment note

If the Gateway runs as a daemon (launchd/systemd), make sure `TOGETHER_API_KEY`
is available to that process (for example, in `~/.openclaw/.env` or via
`env.shellEnv`).

## Available models

| Model ID                                            | Name                                   | Context | Notes             |
| --------------------------------------------------- | -------------------------------------- | ------- | ----------------- |
| `zai-org/GLM-4.7`                                   | GLM 4.7 Fp8                            | 202K    | Default           |
| `moonshotai/Kimi-K2.5`                              | Kimi K2.5                              | 262K    | Reasoning, vision |
| `meta-llama/Llama-3.3-70B-Instruct-Turbo`           | Llama 3.3 70B Instruct Turbo           | 131K    |                   |
| `meta-llama/Llama-4-Scout-17B-16E-Instruct`         | Llama 4 Scout 17B 16E Instruct         | 10M     | Vision            |
| `meta-llama/Llama-4-Maverick-17B-128E-Instruct-FP8` | Llama 4 Maverick 17B 128E Instruct FP8 | 20M     | Vision            |
| `deepseek-ai/DeepSeek-V3.1`                         | DeepSeek V3.1                          | 131K    |                   |
| `deepseek-ai/DeepSeek-R1`                           | DeepSeek R1                            | 131K    | Reasoning         |
| `moonshotai/Kimi-K2-Instruct-0905`                  | Kimi K2-Instruct 0905                  | 262K    |                   |

All models are OpenAI API compatible. Use model IDs as `together/<model-id>` in OpenClaw (example: `together/moonshotai/Kimi-K2.5`).
