

In
Out


Text to Speech
const Anthropic = require('@anthropic-ai/sdk');
const api = new Anthropic({
baseURL: 'https://api.ai.cc/',
authToken: '',
});
const main = async () => {
const message = await api.messages.create({
model: 'anthropic/claude-fable-5',
max_tokens: 2048,
system: 'You are an AI assistant who knows everything.',
messages: [
{
role: 'user',
content: 'Tell me, why is the sky blue?',
},
],
});
console.log('Message:', message);
};
main();
import asyncio
from anthropic import Anthropic
client = Anthropic(
base_url="https://api.ai.cc/",
auth_token="",
)
def main():
message = client.messages.create(
model="anthropic/claude-fable-5",
max_tokens=2048,
system="You are an AI assistant who knows everything.",
messages=[
{
"role": "user",
"content": "Hello, Claude",
}
],
)
print("Message:", message.content)
if __name__ == "__main__":
main()

Claude Fable 5
| Type | Price |
|---|---|
| Input | |
| Output |
| Benchmark | Score | What it measures |
|---|---|---|
| Terminal-Bench | 88% | Autonomous shell/terminal task completion |
| SWE-bench Verified | 95% | Resolving verified real GitHub issues |
AI Playground
Test all API models in the sandbox environment before you integrate. We provide more than 300 models to integrate into your app.
contact us