惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

Y
Y Combinator Blog
V
V2EX
Jina AI
Jina AI
爱范儿
爱范儿
M
MIT News - Artificial intelligence
量子位
L
LangChain Blog
Google DeepMind News
Google DeepMind News
酷 壳 – CoolShell
酷 壳 – CoolShell
罗磊的独立博客
腾讯CDC
MongoDB | Blog
MongoDB | Blog
P
Proofpoint News Feed
宝玉的分享
宝玉的分享
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
Last Week in AI
Last Week in AI
H
Hackread – Cybersecurity News, Data Breaches, AI and More
F
Fortinet All Blogs
The GitHub Blog
The GitHub Blog
Engineering at Meta
Engineering at Meta
博客园 - 聂微东
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
Vercel News
Vercel News
T
The Blog of Author Tim Ferriss

Recent Commits to openclaw:main

test: merge chat side-result checks · openclaw/openclaw@ddd2c2a test: merge cron history checks · openclaw/openclaw@f7eb746 test: merge responsive navigation shell checks · openclaw/openclaw@c2e4b47 docs(changelog): add codex oauth fixes · openclaw/openclaw@628e6cd test: merge navigation routing cases · openclaw/openclaw@5d8cecb Tests: mock channel registry bundled fallback · openclaw/openclaw@2b08233 Secrets: avoid broad web search discovery for single plugin config · openclaw/openclaw@a464f59 test: merge config view browser checks · openclaw/openclaw@20cf511 fix(status): align oauth health with runtime · openclaw/openclaw@eed7116 feat: add macOS screen snapshots for monitor preview (#67954) thanks … · openclaw/openclaw@f377db1 fix: report shared auth scopes in hello-ok (#67810) thanks @BunsDev · openclaw/openclaw@0b6c39b Auto-reply: avoid eager bundled route fallback · openclaw/openclaw@3ea1bf4 Tests: narrow session binding contract setup · openclaw/openclaw@54e4e16 fix(macOS): enable undo/redo in webchat composer text input (#34962) · openclaw/openclaw@00951dc Tests: speed up channel setup promotion · openclaw/openclaw@82b529a Docs: refresh agent instructions · openclaw/openclaw@5775fe2 fix(auth): serialize OAuth refresh across agents to fix #26322 (#67876) · openclaw/openclaw@8e79080 test: allow ollama public surface boundary test · openclaw/openclaw@7d4f1a6 Docs: add test performance guardrails · openclaw/openclaw@89706d3 Tests: restore context-engine usage proof · openclaw/openclaw@e4c4f95 Tests: slim context engine runtime coverage · openclaw/openclaw@74c198f ci: retry failed custom checkouts · openclaw/openclaw@0ee5baf test: trim duplicate provider auth onboarding cases · openclaw/openclaw@1ffc02e matrix: fix sessions_spawn --thread subagent session spawning (#67643) · openclaw/openclaw@1ce2596 test: reduce auth choice fixture churn · openclaw/openclaw@857b9cd test: mock health status config boundaries · openclaw/openclaw@9d5ab4a test: mock onboard config io boundary · openclaw/openclaw@299694d test: mock legacy state plugin boundaries · openclaw/openclaw@2713089 test: mock channel install boundaries · openclaw/openclaw@b945248 test: mock doctor preview channel boundaries · openclaw/openclaw@b1a3ad4
fix(document-extract): render PDF image fallback per page...
ZengWen-DT · 2026-06-25 · via Recent Commits to openclaw:main

@@ -55,20 +55,35 @@ describe("PDF document extractor", () => {

5555

});

5656

});

575758-

it("extracts text first and renders fallback images through clawpdf", async () => {

59-

pdfDocument.extract.mockResolvedValueOnce({ text: "", images: [] }).mockResolvedValueOnce({

60-

text: "",

61-

images: [

62-

{

63-

type: "image",

64-

bytes: Uint8Array.from(Buffer.from("png")),

65-

mimeType: "image/png",

66-

page: 1,

67-

width: 10,

68-

height: 10,

69-

},

70-

],

71-

});

58+

it("extracts text first and renders each fallback page with its own pixel budget", async () => {

59+

pdfDocument.extract

60+

.mockResolvedValueOnce({ text: "", images: [] })

61+

.mockResolvedValueOnce({

62+

text: "",

63+

images: [

64+

{

65+

type: "image",

66+

bytes: Uint8Array.from(Buffer.from("png1")),

67+

mimeType: "image/png",

68+

page: 1,

69+

width: 5,

70+

height: 10,

71+

},

72+

],

73+

})

74+

.mockResolvedValueOnce({

75+

text: "",

76+

images: [

77+

{

78+

type: "image",

79+

bytes: Uint8Array.from(Buffer.from("png2")),

80+

mimeType: "image/png",

81+

page: 2,

82+

width: 5,

83+

height: 10,

84+

},

85+

],

86+

});

7287

const extractor = createPdfDocumentExtractor();

73887489

const result = await extractor.extract(request());

@@ -82,18 +97,24 @@ describe("PDF document extractor", () => {

8297

maxPages: 2,

8398

maxTextChars: 200_000,

8499

});

100+

// Each page renders in its own extract() call, with the aggregate pixel cap

101+

// allocated across selected pages so later pages are not starved.

85102

expect(pdfDocument.extract).toHaveBeenNthCalledWith(2, {

86103

mode: "images",

87-

maxPages: 2,

88-

image: {

89-

maxDimension: 10_000,

90-

maxPixels: 100,

91-

forms: true,

92-

},

104+

pages: [1],

105+

image: { maxDimension: 10_000, maxPixels: 50, forms: true },

106+

});

107+

expect(pdfDocument.extract).toHaveBeenNthCalledWith(3, {

108+

mode: "images",

109+

pages: [2],

110+

image: { maxDimension: 10_000, maxPixels: 50, forms: true },

93111

});

94112

expect(result).toEqual({

95113

text: "",

96-

images: [{ type: "image", data: "cG5n", mimeType: "image/png" }],

114+

images: [

115+

{ type: "image", data: "cG5nMQ==", mimeType: "image/png" },

116+

{ type: "image", data: "cG5nMg==", mimeType: "image/png" },

117+

],

97118

});

98119

expect(pdfDocument.destroy).toHaveBeenCalledTimes(1);

99120

});

@@ -131,8 +152,9 @@ describe("PDF document extractor", () => {

131152

expect(pdfDocument.destroy).not.toHaveBeenCalled();

132153

});

133154134-

it("filters selected pages before passing them to clawpdf", async () => {

155+

it("filters selected pages and renders them one page per image call", async () => {

135156

pdfDocument.extract

157+

.mockResolvedValueOnce({ text: "", images: [] })

136158

.mockResolvedValueOnce({ text: "", images: [] })

137159

.mockResolvedValueOnce({ text: "", images: [] });

138160

const extractor = createPdfDocumentExtractor();

@@ -141,11 +163,15 @@ describe("PDF document extractor", () => {

141163142164

expect(pdfDocument.extract).toHaveBeenNthCalledWith(

143165

1,

144-

expect.objectContaining({ pages: [2, 1] }),

166+

expect.objectContaining({ mode: "text", pages: [2, 1] }),

145167

);

146168

expect(pdfDocument.extract).toHaveBeenNthCalledWith(

147169

2,

148-

expect.objectContaining({ pages: [2, 1] }),

170+

expect.objectContaining({ mode: "images", pages: [2] }),

171+

);

172+

expect(pdfDocument.extract).toHaveBeenNthCalledWith(

173+

3,

174+

expect.objectContaining({ mode: "images", pages: [1] }),

149175

);

150176

});

151177