# Fable 5 用图片喂上下文，成本大降

- 来源：Rohan Paul (@rohanpaul_ai)
- 发布时间：2026-08-03 13:46
- AIHOT 分数：29
- AIHOT 链接：https://aihot.virxact.com/items/cmsctmz2t0mo5roeua1iamhwb
- 原文链接：https://x.com/rohanpaul_ai/status/2084153994541465669

## AI 摘要

开发者发现用图片替代文本可降低 Fable 5 大上下文成本：pxpipe 将密集文本渲染为 PNG 图片块，一张 1928×1928 图片约 4,761 vision tokens，可容纳约 92K 字符。但这是视觉压缩而非无损存储，模型可能误读精确 ID、哈希或字符串，适合背景上下文，不适合字节级精确事实。

## 正文

Developers found a cheaper way to feed Fable 5 large context by showing it pictures of text.

Normally， every code block， log， tool output， and old chat turn becomes text tokens.

Those tokens are billable units.

pxpipe changes the input. It renders dense text into PNG pages， then sends those pages as image blocks.

Fable 5 can read the pixels with OCR-like vision skills， so meaning often survives.

The price gap appears because one image has a mostly fixed token cost.

That cost barely changes when readable text gets packed into the same image.

a 1928×1928 image costs about 4，761 vision tokens.

The same page can hold roughly 92K characters， so dense code becomes cheaper.

The catch is that this is compression through vision， not lossless text storage.

Fable 5 may understand the gist while misreading exact IDs， hashes， names， or strings.

That makes it useful for bulky background context， but risky for byte-exact facts.
