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

# claude-fable-5

> anthropic/claude-fable-5 on Tera

<Info>
  Model id: `anthropic/claude-fable-5` — pass this as the `model` field in API requests.
</Info>

## Spec

|                       |                |
| --------------------- | -------------- |
| **Provider**          | Anthropic      |
| **Context length**    | 200,000 tokens |
| **Max output**        | 8,192 tokens   |
| **Quantization**      | `managed`      |
| **Input modalities**  | text           |
| **Output modalities** | text           |

## Pricing

|            | per million tokens |
| ---------- | ------------------ |
| Input      | \$10.00            |
| Output     | \$50.00            |
| Cache Read | \$1.00             |

## Supported features

`tools`

## Sampling parameters

`top_p`, `top_k`, `max_tokens`, `stop`

## Example

```bash theme={null}
curl https://api.tera.gw/v1/chat/completions \
  -H "Content-Type: application/json" \
  -H "Authorization: Bearer $TERA_API_KEY" \
  -d '{
    "model": "anthropic/claude-fable-5",
    "messages": [{"role": "user", "content": "Hello"}],
    "max_tokens": 256
  }'
```
