Fable Distiller
Pricing
from $20.00 / 1,000 results
Go to Apify Store

Fable Distiller
Bundle the Claude Fable 5 system prompt and apply it to any LLM model via your own API key.
Pricing
from $20.00 / 1,000 results
Rating
0.0
(0)
Developer
Safwan Kazi
Maintained by CommunityActor stats
0
Bookmarked
1
Total users
0
Monthly active users
4 days ago
Last modified
Share
Fable Distiller - Apify Actor
Bundle the Claude Fable 5 system prompt (3,825 lines) and apply it to any LLM model via your own API key.
How It Works
- Select your provider (OpenAI, Anthropic, OpenRouter, or a custom OpenAI-compatible endpoint)
- Enter your API key and choose a model
- Provide your messages as a JSON array
- The Actor prepends the entire Fable 5 system prompt and sends the request
- The response is returned with token usage and metadata
Input
| Field | Type | Required | Description |
|---|---|---|---|
provider | select | Yes | openai, anthropic, openrouter, or custom |
model | string | Yes | Model name/ID (e.g., gpt-4o, claude-sonnet-4-20250514) |
apiKey | secret string | Yes | Your API key for the chosen provider |
messages | JSON array | Yes | [{"role": "user", "content": "..."}] |
apiBaseUrl | string | No | Custom base URL (required for custom provider) |
maxTokens | integer | No (default: 4096) | Max response tokens |
temperature | number | No (default: 1.0) | Response temperature (0.0–2.0) |
Output
Success:
{"success": true,"provider": "openai","model": "gpt-4o","content": "...","usage": { "inputTokens": 1000, "outputTokens": 500, "totalTokens": 1500 },"finishReason": "stop","id": "chatcmpl-xxx"}
Error:
{"success": false,"provider": "openai","model": "gpt-4o","error": { "type": "auth_error", "message": "Invalid API key", "statusCode": 401 }}
Development
# Copy the Fable 5 prompt into this directorycp ../../claude-fable-5.md ./claude-fable-5.md# Install dependenciesnpm install# Type-checknpm run typecheck# Run testsnpm test# Buildnpm run build# Run locally (requires a sample INPUT.json in the actor directory)npx apify run
Deployment
npx apify loginnpx apify push