AIREITER
DOCS APITARIFS
MODÈLES
AnthropicText Chat

Claude Fable 5 AI Chat Playground et API

Essayez Claude Fable 5 en ligne pour la rédaction détaillée, la synthèse soignée et les travaux longs de haute qualité. Consultez la tarification par jeton et testez des prompts avant d’intégrer l’API.

EntréeOfficiel $10.00 par million de tokensAIReiter $5.00 par million de tokensSortieOfficiel $50.00 par million de tokensAIReiter $25.00 par million de tokensLecture cacheOfficiel $1.00 par million de tokensAIReiter $0.50 par million de tokensCréation cacheOfficiel $12.50 par million de tokensAIReiter $6.25 par million de tokens
Type de modèle
Exécuter avec l'API
PlaygroundReadmeAPI

ENTRÉE

imagefile[]
Optional input images sent alongside the prompt. Up to 5 files. Images are billed as input tokens.
1
2
3
4
5
6
7
8
9
10
11
12
13

Install the official Anthropic client — AIReiter speaks the same protocol, so only the base URL changes:

npm install @anthropic-ai/sdk

Set the AIREITER_API_KEY environment variable:

export AIREITER_API_KEY=<paste-your-key-here>

Point the client at AIReiter:

import Anthropic from "@anthropic-ai/sdk";

const client = new Anthropic({
  apiKey: process.env.AIREITER_API_KEY,
  baseURL: "https://aireiter.com/api",
});

Run claude-fable-5:

const message = await client.messages.create({
    "model": "claude-fable-5",
    "max_tokens": 4096,
    "messages": [
      {
        "role": "user",
        "content": "Explain what an API rate limit is and how to handle a 429 response in code."
      }
    ],
    "output_config": {
      "effort": "medium"
    }
  });

console.log(message.content);

Stream the response instead:

const stream = client.messages.stream({
    "model": "claude-fable-5",
    "max_tokens": 4096,
    "messages": [
      {
        "role": "user",
        "content": "Explain what an API rate limit is and how to handle a 429 response in code."
      }
    ],
    "output_config": {
      "effort": "medium"
    }
  });

stream.on("text", (text) => process.stdout.write(text));
const message = await stream.finalMessage();

Install the official Anthropic client — AIReiter speaks the same protocol, so only the base URL changes:

pip install anthropic

Set the AIREITER_API_KEY environment variable:

export AIREITER_API_KEY=<paste-your-key-here>

Point the client at AIReiter:

import os
import anthropic

client = anthropic.Anthropic(
    api_key=os.environ["AIREITER_API_KEY"],
    base_url="https://aireiter.com/api",
)

Run claude-fable-5:

message = client.messages.create(
      model = "claude-fable-5",
      max_tokens = 4096,
      messages = [
        {
          role = "user",
          content = "Explain what an API rate limit is and how to handle a 429 response in code."
        }
      ],
      output_config = {
        effort = "medium"
      }
)

print(message.content)

Stream the response instead:

with client.messages.stream(
      model = "claude-fable-5",
      max_tokens = 4096,
      messages = [
        {
          role = "user",
          content = "Explain what an API rate limit is and how to handle a 429 response in code."
        }
      ],
      output_config = {
        effort = "medium"
      }
) as stream:
    for text in stream.text_stream:
        print(text, end="", flush=True)

Set the AIREITER_API_KEY environment variable:

export AIREITER_API_KEY=<paste-your-key-here>

Run claude-fable-5 against AIReiter's API:

curl -s -X POST \
  -H "x-api-key: $AIREITER_API_KEY" \
  -H "Content-Type: application/json" \
  "https://aireiter.com/api/v1/messages" \
  -d '{
  "model": "claude-fable-5",
  "max_tokens": 4096,
  "messages": [
    {
      "role": "user",
      "content": "Explain what an API rate limit is and how to handle a 429 response in code."
    }
  ],
  "output_config": {
    "effort": "medium"
  }
}'

Add "stream": true to the body to receive the response as server-sent events.

SORTIE

Example

A codebase you don't know is a risk, not a hurdle. The plan should burn down that risk in order: understand, run, trace, spike, then make the change small enough that "production-ready" is a property you can demonstrate, not a hope.

Here are the first five steps, with the evidence you collect at each.

Step 1 — Get it building and the baseline green (half day) Read the README, the manifest(s), the CI config, and any architecture docs. Boot the app locally, run the full test suite, run the linter/typechecker. Evidence: The exact commands that reproduce a clean build and a passing test suite from a fresh checkout (recorded output, not memory of it). A one-page map you wrote yourself: where the entry points are, the layers, the build/test toolchain, and the main risks to your feature (e.g. "this touches cron jobs and payments").

Step 2 — Trace the smallest end-to-end slice that resembles your feature (half day) Don't start with your feature. Pick a neighboring one that already works and follow it from entry to persistence. Note the conventions along the way: how errors surface, how config is injected, how logging is done, how tests are written. Evidence: An annotated trace — file → function → what it does — for that slice. A written list of "conventions I must follow" (not intuitions; things you observed in real code). A named shortlist of the 3–5 files you will actually touch. If you can't produce this trace, you're not ready to write code.

Step 3 — Spike the core path (day 2) Build the ugly version: hardcoded values, no error handling, no tests. The purpose is to confirm the path you traced in step 2 is real and to surface what you didn't know you didn't know. Evidence: A working spike demonstrating the feature's central data path, alongside a list of every assumption the spike broke and what you corrected. That correction list is the most valuable document in this whole plan.

Step 4 — Write the contract before the code (half of day 2 / day 3) Once the spike proves the path, pin down what production needs: the inputs/outputs, the error cases, where it sits in the conventions from step 2. Then write the tests — they'll be red, but they're the specification. Evidence: A one-to-two-page design doc, an agreed interface/API shape (with the team if there is one), and a red test suite that encodes intended behavior. If you can't write the contract without consulting the code, you haven't finished step 2.

Step 5 — Implement in small, verified increments (days 3–4) Replace the spike with the real thing in small commits, each one keeping the suite green, leaning on the existing patterns. Run lint/tests/typecheck per commit — CI, not just locally — and exercise the actual path against a real instance (staging or a local environment that isn't stubbed). Evidence: A branch with progressive commits, each green in CI; coverage on the new code; something that proves it works against reality (a test result, a log trace, a screenshot); and a review by at least one person who knows the codebase. The review counts as evidence — an unfamiliar codebase has tribal knowledge you cannot extract from the files alone.

Steps 6+ would be the things that actually make it "shipped": a migration plan and its rollback, feature flagging, observability, the release and post-release verification. But the first five get you to a reviewed, green, working slice in staging — which is the point at which you can say "this will work in production" with evidence behind it, instead of a guess.

{
  "model": "claude-fable-5",
  "input": {
    "model": "claude-fable-5",
    "max_tokens": 4096,
    "messages": [
      {
        "role": "user",
        "content": "Explain what an API rate limit is and how to handle a 429 response in code."
      }
    ],
    "output_config": {
      "effort": "medium"
    }
  },
  "output": "A codebase you don't know is a risk, not a hurdle. The plan should burn down that risk in order: understand, run, trace, spike, then make the change small enough that \"production-ready\" is a property you can demonstrate, not a hope.\n\nHere are the first five steps, with the evidence you collect at each.\n\n**Step 1 — Get it building and the baseline green (half day)**\nRead the README, the manifest(s), the CI config, and any architecture docs. Boot the app locally, run the full test suite, run the linter/typechecker.\n*Evidence:* The exact commands that reproduce a clean build and a passing test suite from a fresh checkout (recorded output, not memory of it). A one-page map you wrote yourself: where the entry points are, the layers, the build/test toolchain, and the main risks to your feature (e.g. \"this touches cron jobs and payments\").\n\n**Step 2 — Trace the smallest end-to-end slice that resembles your feature (half day)**\nDon't start with your feature. Pick a neighboring one that already works and follow it from entry to persistence. Note the conventions along the way: how errors surface, how config is injected, how logging is done, how tests are written.\n*Evidence:* An annotated trace — file → function → what it does — for that slice. A written list of \"conventions I must follow\" (not intuitions; things you observed in real code). A named shortlist of the 3–5 files you will actually touch. If you can't produce this trace, you're not ready to write code.\n\n**Step 3 — Spike the core path (day 2)**\nBuild the ugly version: hardcoded values, no error handling, no tests. The purpose is to confirm the path you traced in step 2 is real and to surface what you didn't know you didn't know.\n*Evidence:* A working spike demonstrating the feature's central data path, alongside a list of every assumption the spike broke and what you corrected. That correction list is the most valuable document in this whole plan.\n\n**Step 4 — Write the contract before the code (half of day 2 / day 3)**\nOnce the spike proves the path, pin down what production needs: the inputs/outputs, the error cases, where it sits in the conventions from step 2. Then write the tests — they'll be red, but they're the specification.\n*Evidence:* A one-to-two-page design doc, an agreed interface/API shape (with the team if there is one), and a red test suite that encodes intended behavior. If you can't write the contract without consulting the code, you haven't finished step 2.\n\n**Step 5 — Implement in small, verified increments (days 3–4)**\nReplace the spike with the real thing in small commits, each one keeping the suite green, leaning on the existing patterns. Run lint/tests/typecheck per commit — CI, not just locally — and exercise the actual path against a real instance (staging or a local environment that isn't stubbed).\n*Evidence:* A branch with progressive commits, each green in CI; coverage on the new code; something that proves it works against reality (a test result, a log trace, a screenshot); and a review by at least one person who knows the codebase. The review counts as evidence — an unfamiliar codebase has tribal knowledge you cannot extract from the files alone.\n\nSteps 6+ would be the things that actually make it \"shipped\": a migration plan and its rollback, feature flagging, observability, the release and post-release verification. But the first five get you to a reviewed, green, working slice in staging — which is the point at which you can say \"this will work in production\" with evidence behind it, instead of a guess.",
  "metrics": {
    "input_tokens": 134,
    "output_tokens": 2354,
    "generated_in_seconds": 42.7
  },
  "example": true
}
Generated in
42.7 seconds
Token d’entrée
134
Token de sortie
2354
Tokens per second
55.13 tokens / second
Time to first token
-

Détails du modèle

Utilisez la même clé de modèle dans le Playground, les requêtes API et les workflows internes.

ID du modèle
claude-fable-5
Fournisseur
Anthropic
Protocole
Anthropic Messages
Fenêtre de contexte
1,000,000 tokens
Sortie maximale
128,000 tokens
Token d’entrée
500 crédits / 1 M de tokens
Token de sortie
2,500 crédits / 1 M de tokens
Lecture du cache
50 crédits / 1 M de tokens
Écriture du cache
625 crédits / 1 M de tokens

Ce que vous pouvez faire avec Claude Fable 5

Choisissez Claude Fable 5 pour des travaux longs nuancés où la structure, la voix, la synthèse et la qualité de la révision comptent plus qu’une première version rapide.

Rédaction longue

Développez des rapports, récits et documentations cohérents avec une structure et une voix constantes.

Réécriture nuancée

Préservez le sens tout en modifiant le ton, le public, la longueur ou l’orientation éditoriale.

Synthèse de sources

Combinez plusieurs documents en un résumé lisible sans perdre les distinctions importantes.

Révision éditoriale

Critiquez l’organisation, la clarté, les transitions et la qualité de l’argumentation avant de produire une version plus solide.

Cas d’usage de Claude Fable 5

Particulièrement adapté aux flux de travail éditoriaux, de recherche et de communication qui valorisent la nuance, la continuité et une révision minutieuse.
01

Rapports et livres blancs

Construisez de longs documents avec une argumentation cohérente et une terminologie constante.

02

Travail de marque et éditorial

Adaptez la voix et la structure à un public défini.

03

Notes de synthèse de recherche

Fusionnez les résultats tout en préservant les incertitudes et les distinctions entre les sources.

04

Révision de document

Améliorez un brouillon grâce à la critique, à la réorganisation et à la réécriture.

Comment utiliser Claude Fable 5

Testez le modèle en trois étapes simples.

01

Choisissez vos paramètres

Définissez les contrôles de réponse et les options d’envoi prises en charge par le modèle.

02

Envoyez une instruction

Décrivez la tâche, ajoutez le contexte pertinent, et consultez la réponse diffusée en continu ainsi que l’utilisation des tokens.

03

Connectez l’API

Utilisez le endpoint documenté et votre API key pour intégrer ce même modèle à votre produit.

Construisez avec l’API Claude Fable 5

Passez d’un test interactif à une intégration en production avec des contrôles prévisibles et un suivi de l’utilisation.

Protocoles familiers

Utilisez le protocole API configuré pour ce modèle, y compris le streaming lorsqu’il est disponible.

Visibilité de l’utilisation

Suivez les tokens d’entrée, les tokens de sortie et les crédits consommés après chaque réponse.

Contrôles spécifiques au modèle

Passez les paramètres de génération pris en charge au lieu de vous fier à des valeurs par défaut génériques.

Un seul compte et un seul solde

Testez et exploitez les modèles de texte pris en charge via le même compte AIReiter et le même système de facturation.

FAQ Claude Fable 5

Questions fréquentes sur le playground en ligne, la tarification et l’accès à l’API.

/ 01

À quoi Claude Fable 5 est-il le plus adapté ?

Il est présenté ici pour la rédaction longue, la réécriture nuancée, la synthèse et la révision éditoriale.

/ 02

Claude Fable 5 peut-il préserver un style d’écriture spécifique ?

Fournissez des exemples représentatifs et des contraintes de ton explicites, puis comparez les révisions dans le playground.

/ 03

Claude Fable 5 est-il uniquement destiné à l’écriture créative ?

Non. Il peut aussi être évalué pour des rapports, des notes de synthèse, de la documentation et d’autres travaux longs structurés.

/ 04

Comment Claude Fable 5 est-il tarifé ?

Les tarifs actuels des jetons d'entrée et de sortie apparaissent au-dessus du playground.

/ 05

Puis-je utiliser Claude Fable 5 via une API ?

Oui. Suivez la documentation API liée et utilisez l'ID du modèle de la page.

AIREITER

Des questions ? Contactez-nous à
[email protected]

新速率有限公司NEWRATE LIMITED香港九龍花園街 2-16 號好景商業中心 2304 室Room 2304, Haojing Commercial Center, 2-16 Garden Street, Kowloon, Hong Kong

LLM

GPT-6 AstraGemini 3.8 FlashClaude Fable 5.1GLM-5.3 FlashGemini 3.6 Flash

Vidéo IA

Gemini Omni 1.1 Flash ExtMiniMax H3Kling 3.0 Motion ControlKling 3.0 TurboKling 3.0

Image IA

GPT-Image 2.5Grok Imagine Image 2.0Midjourney V8.1Midjourney V7Z-Image Turbo

Blog

Voir tout →

Entreprise

Politique de confidentialitéConditions d'utilisationPolitique de remboursement

© 2026 AIReiter. Tous droits réservés.