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

# Chutes

> Chutes is a decentralized AI compute platform offering OpenAI-compatible inference on confidential TEE GPUs.

Chutes offers 13 models through Lava's AI Gateway, supporting Chat Completions. Authentication uses `Authorization: Bearer`. See the [Chutes API docs](https://chutes.ai/docs) for provider-specific parameters.

<Info>Supports both **managed** (Lava's API keys) and **unmanaged** (bring your own credentials) mode.</Info>

## Quick Start

```typescript theme={null}
const response = await fetch('https://api.lava.so/v1/forward?u=https%3A%2F%2Fllm.chutes.ai%2Fv1%2Fchat%2Fcompletions', {
  method: 'POST',
  headers: {
    'Content-Type': 'application/json',
    Authorization: `Bearer ${forwardToken}`,
  },
  body: JSON.stringify({
    model: 'unsloth/Mistral-Nemo-Instruct-2407-TEE',
    messages: [{ role: "user", content: "Hello!" }],
  }),
});
```

## Chat Completions

**Target URL:** `https://llm.chutes.ai/v1/chat/completions`

|                  |                                          |
| ---------------- | ---------------------------------------- |
| **Content Type** | `application/json`                       |
| **Streaming**    | Yes (set `stream: true` in request body) |

| Model                                  | Input / 1M tokens | Output / 1M tokens |
| -------------------------------------- | ----------------- | ------------------ |
| zai-org/GLM-5.2-TEE                    | \$1.40            | \$4.40             |
| deepseek-ai/DeepSeek-V3.2-TEE          | \$1.00            | \$1.00             |
| zai-org/GLM-5.1-TEE                    | \$0.98            | \$3.08             |
| zai-org/GLM-5-TEE                      | \$0.95            | \$2.55             |
| moonshotai/Kimi-K2.6-TEE               | \$0.66            | \$3.50             |
| Qwen/Qwen3.5-397B-A17B-TEE             | \$0.45            | \$3.00             |
| moonshotai/Kimi-K2.5-TEE               | \$0.44            | \$2.00             |
| Qwen/Qwen3.6-27B-TEE                   | \$0.30            | \$2.00             |
| Qwen/Qwen3-235B-A22B-Thinking-2507-TEE | \$0.2989          | \$1.1957           |
| MiniMaxAI/MiniMax-M2.5-TEE             | \$0.15            | \$1.20             |
| google/gemma-4-31B-turbo-TEE           | \$0.12            | \$0.37             |
| Qwen/Qwen3-32B-TEE                     | \$0.104           | \$0.416            |
| unsloth/Mistral-Nemo-Instruct-2407-TEE | \$0.0245          | \$0.0978           |

## Next Steps

<CardGroup cols={2}>
  <Card title="All Providers" icon="grid" href="/gateway/supported-providers">
    Browse all supported AI providers
  </Card>

  <Card title="Forward Proxy" icon="route" href="/gateway/forward-proxy">
    Learn how to construct proxy URLs and authenticate requests
  </Card>
</CardGroup>
