> ## Documentation Index
> Fetch the complete documentation index at: https://incredible-42686482-cursor-create-detailed-ai-agent-cookboo.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

# Multiple Models

> Try different AI models and compare responses

```bash
# Small model
curl -X POST "https://api.incredible.one/v1/chat-completion" \
  -H "Content-Type: application/json" \
  -H "Authorization: Bearer $INCREDIBLE_API_KEY" \
  -d '{
    "model": "small-1",
    "stream": false,
    "messages": [{"role": "user", "content": "What's 5 + 3? Just give me the number."}]
  }'

# Tiny (example; may not be available)
curl -X POST "https://api.incredible.one/v1/chat-completion" \
  -H "Content-Type: application/json" \
  -H "Authorization: Bearer $INCREDIBLE_API_KEY" \
  -d '{
    "model": "tiny-1",
    "stream": false,
    "messages": [{"role": "user", "content": "What's 5 + 3? Just give me the number."}]
  }'

# Big (example)
curl -X POST "https://api.incredible.one/v1/chat-completion" \
  -H "Content-Type: application/json" \
  -H "Authorization: Bearer $INCREDIBLE_API_KEY" \
  -d '{
    "model": "big-1",
    "stream": false,
    "messages": [{"role": "user", "content": "What's 5 + 3? Just give me the number."}]
  }'
```

<Note>
  View source on GitHub → [2\_multiple\_models.py](https://github.com/Norditech-AB/Incredible-API-Cookbook/blob/main/01-getting-started/2_multiple_models.py)
</Note>
