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

# Kimi

> Kimi (Moonshot) model configuration (Text Chat + Image Understanding)

Kimi is provided by Moonshot and supports both text chat and image understanding. The `kimi-k2.x` series natively supports vision.

<Tip>
  All capabilities below can be configured in one place via the "Model Management" page in the Web Console, with no need to manually edit the configuration file.
</Tip>

## Text Chat

```json theme={null}
{
  "model": "kimi-k2.7-code",
  "moonshot_api_key": "YOUR_API_KEY"
}
```

| Parameter           | Description                                                                                                                                       |
| ------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------- |
| `model`             | Can be `kimi-k2.7-code`, `kimi-k2.7-code-highspeed`, `kimi-k2.6`, `kimi-k2.5`, `kimi-k2`, `moonshot-v1-8k`, `moonshot-v1-32k`, `moonshot-v1-128k` |
| `moonshot_api_key`  | Create one in the [Moonshot Console](https://platform.moonshot.cn/console/api-keys)                                                               |
| `moonshot_base_url` | Optional, defaults to `https://api.moonshot.cn/v1`                                                                                                |

## Image Understanding

Once `moonshot_api_key` is configured, the Agent's Vision tool automatically uses `kimi-k2.6` to recognize images, with no extra setup required.

To manually specify a Vision model:

```json theme={null}
{
  "tools": {
    "vision": {
      "model": "kimi-k2.6"
    }
  }
}
```
