-
Notifications
You must be signed in to change notification settings - Fork 201
Expand file tree
/
Copy pathprocess-pages.ts
More file actions
418 lines (381 loc) · 12.3 KB
/
Copy pathprocess-pages.ts
File metadata and controls
418 lines (381 loc) · 12.3 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
import { generateAgentGoal } from "../agents/agent-goal.js";
import { extractFromAgentResult } from "../agents/extract-from-agent.js";
import { extractFromPage } from "../agents/extract.js";
import { triagePage } from "../agents/source-triage.js";
import { config } from "../config.js";
import { runTinyfishAgentsBatch } from "../integrations/tinyfish-agent.js";
import type { WorkflowMemory } from "../memory/index.js";
import { getPrimaryKeyValue } from "../merge/records.js";
import {
statusNeedsAgent,
type SourceStatus,
} from "../models/source-status.js";
import type {
AgentRunRecord,
DatasetSpec,
ExtractedRecord,
FetchedPage,
SourceTriageResult,
TriageSummary,
} from "../models/schemas.js";
import {
createAgentQueue,
createExtractionQueue,
createTriageQueue,
} from "../queue/pools.js";
import { saveJson, type RunPaths } from "../storage/run-store.js";
import { getDomain } from "../utils/url.js";
import { join } from "node:path";
export interface AgentDeferredEntry {
url: string;
status: SourceStatus;
}
export interface ProcessPagesResult {
records: ExtractedRecord[];
triageResults: SourceTriageResult[];
agentRuns: AgentRunRecord[];
agentDeferred: AgentDeferredEntry[];
summary: TriageSummary;
}
function emptySummary(): TriageSummary {
return {
pages_triaged: 0,
by_status: {},
extract_now: 0,
agent_candidates: 0,
agent_dispatched: 0,
agent_deferred: 0,
agent_succeeded: 0,
agent_failed: 0,
skipped: 0,
records_from_extract: 0,
records_from_agent: 0,
};
}
function bumpStatus(summary: TriageSummary, status: SourceStatus): void {
summary.by_status[status] = (summary.by_status[status] ?? 0) + 1;
}
export async function processFetchedPages(options: {
label: string;
userPrompt: string;
spec: DatasetSpec;
pages: FetchedPage[];
paths: RunPaths;
errors: string[];
focusFields?: string[];
knownEntityKeys?: string[];
enableTriage?: boolean;
enableTinyfishAgent?: boolean;
agentPollTimeoutMs?: number;
memory?: WorkflowMemory;
log: (stage: string, message: string) => void;
}): Promise<ProcessPagesResult> {
const triageEnabled = options.enableTriage ?? config.enableTriage;
const agentEnabled = options.enableTinyfishAgent ?? config.enableTinyfishAgent;
const summary = emptySummary();
const records: ExtractedRecord[] = [];
const agentRuns: AgentRunRecord[] = [];
const knownKeys = new Set(options.knownEntityKeys ?? []);
const successfulPages = options.pages.filter(
(page) => !page.error && page.text.trim().length > 0,
);
if (successfulPages.length === 0) {
return {
records: [],
triageResults: [],
agentRuns: [],
agentDeferred: [],
summary,
};
}
const extractionQueue = createExtractionQueue();
if (!triageEnabled) {
options.log(
options.label,
`Triage disabled — extracting all pages (parallel, concurrency=${config.extractionConcurrency})...`,
);
const extracted = await extractionQueue.runAll(
successfulPages,
async (page) => {
try {
return await extractFromPage(options.spec, page, {
focusFields: options.focusFields,
memory: options.memory,
});
} catch (error) {
const msg = `Extraction failed for ${page.final_url || page.url}: ${
error instanceof Error ? error.message : String(error)
}`;
options.errors.push(msg);
return [] as ExtractedRecord[];
}
},
(page) => [getDomain(page.final_url || page.url)],
);
const flat = extracted.flat();
summary.pages_triaged = successfulPages.length;
summary.extract_now = successfulPages.length;
summary.records_from_extract = flat.length;
return {
records: flat,
triageResults: [],
agentRuns: [],
agentDeferred: [],
summary,
};
}
const triageQueue = createTriageQueue();
options.log(
options.label,
`Triaging ${successfulPages.length} pages (parallel, concurrency=${config.triageConcurrency})...`,
);
const triageResults = await triageQueue.runAll(
successfulPages,
async (page) => {
try {
return await triagePage({
userPrompt: options.userPrompt,
spec: options.spec,
page,
knownEntityKeys: [...knownKeys],
memory: options.memory,
});
} catch (error) {
const pageUrl = page.final_url || page.url;
const msg = `Triage failed for ${pageUrl}: ${
error instanceof Error ? error.message : String(error)
}`;
options.errors.push(msg);
options.log(options.label, `WARN ${msg}`);
return {
url: page.url,
final_url: pageUrl,
title: page.title,
status: "extract_now" as const,
confidence: 0.3,
source_data_confidence: 0.35,
expected_yield: "partial" as const,
reasoning: "Triage failed; falling back to direct extraction.",
};
}
},
(page) => [getDomain(page.final_url || page.url)],
);
summary.pages_triaged = triageResults.length;
await saveJson(
join(options.paths.root, `triage_${options.label}.json`),
triageResults,
);
const pageByUrl = new Map(
successfulPages.map((page) => [page.final_url || page.url, page]),
);
const extractPages: { page: FetchedPage; triage: SourceTriageResult }[] = [];
const agentQueue: { page: FetchedPage; triage: SourceTriageResult }[] = [];
for (const triage of triageResults) {
bumpStatus(summary, triage.status);
const page = pageByUrl.get(triage.final_url) ?? pageByUrl.get(triage.url);
if (!page) continue;
if (triage.status === "extract_now") {
summary.extract_now += 1;
extractPages.push({ page, triage });
} else if (statusNeedsAgent(triage.status)) {
summary.agent_candidates += 1;
if (agentEnabled) {
agentQueue.push({ page, triage });
} else {
options.log(
options.label,
`Agent disabled — fallback extract for ${triage.final_url} [${triage.status}]`,
);
extractPages.push({ page, triage });
}
} else {
summary.skipped += 1;
options.log(
options.label,
`Skip ${triage.final_url} [${triage.status}]: ${triage.reasoning.slice(0, 80)}`,
);
}
}
if (extractPages.length > 0) {
options.log(
options.label,
`Direct extraction on ${extractPages.length} pages (parallel, concurrency=${config.extractionConcurrency})...`,
);
const extracted = await extractionQueue.runAll(
extractPages,
async ({ page }) => {
try {
return await extractFromPage(options.spec, page, {
focusFields: options.focusFields,
memory: options.memory,
});
} catch (error) {
const msg = `Extraction failed for ${page.final_url || page.url}: ${
error instanceof Error ? error.message : String(error)
}`;
options.errors.push(msg);
return [] as ExtractedRecord[];
}
},
({ page }) => [getDomain(page.final_url || page.url)],
);
for (const batch of extracted) {
for (const record of batch) {
records.push(record);
const pk = getPrimaryKeyValue(record, options.spec);
if (pk) knownKeys.add(pk);
}
}
summary.records_from_extract = records.length;
}
const agentBudget = agentEnabled ? config.maxAgentRunsPerPhase : 0;
const toRun = agentQueue.slice(0, agentBudget);
const deferredEntries: AgentDeferredEntry[] = agentQueue
.slice(agentBudget)
.map(({ page, triage }) => ({
url: triage.final_url || page.url,
status: triage.status,
}));
if (deferredEntries.length > 0) {
options.log(
options.label,
`Agent budget: running ${toRun.length}/${agentQueue.length} (${deferredEntries.length} deferred)`,
);
}
summary.agent_dispatched = toRun.length;
summary.agent_deferred = deferredEntries.length;
if (toRun.length > 0) {
options.log(
options.label,
`Tinyfish Agent on ${toRun.length} pages (async queue + poll, queue=${config.agentQueueConcurrency}, poll=${config.agentPollConcurrency})...`,
);
const agentGoalQueue = createAgentQueue();
const jobsWithGoals = await agentGoalQueue.runAll(
toRun,
async ({ page, triage }) => {
const pageUrl = triage.final_url || page.url;
try {
const agentGoal = await generateAgentGoal({
userPrompt: options.userPrompt,
spec: options.spec,
triage,
focusFields: options.focusFields,
memory: options.memory,
});
return { page, triage, pageUrl, goal: agentGoal.goal, goalError: null as string | null };
} catch (error) {
const msg = error instanceof Error ? error.message : String(error);
options.errors.push(`Agent goal failed for ${pageUrl}: ${msg}`);
return { page, triage, pageUrl, goal: "", goalError: msg };
}
},
({ page }) => [getDomain(page.final_url || page.url)],
);
const queueJobs: { url: string; goal: string }[] = [];
const queueJobIndices: number[] = [];
for (let index = 0; index < jobsWithGoals.length; index++) {
const job = jobsWithGoals[index]!;
if (job.goalError) {
summary.agent_failed += 1;
agentRuns.push({
url: job.pageUrl,
status: job.triage.status,
run_id: null,
agent_status: "FAILED",
goal: "",
records_extracted: 0,
error: job.goalError,
});
continue;
}
queueJobs.push({ url: job.pageUrl, goal: job.goal });
queueJobIndices.push(index);
}
const agentRunResults = await runTinyfishAgentsBatch(queueJobs, {
pollTimeoutMs: options.agentPollTimeoutMs,
});
const jobsToExtract = queueJobIndices.map((jobIndex, batchIndex) => ({
job: jobsWithGoals[jobIndex]!,
run: agentRunResults[batchIndex]!,
}));
await extractionQueue.runAll(
jobsToExtract,
async ({ job, run }) => {
const pageUrl = job.pageUrl;
if (run.error || !run.result) {
summary.agent_failed += 1;
agentRuns.push({
url: pageUrl,
status: job.triage.status,
run_id: run.run_id,
agent_status: run.status,
goal: job.goal,
records_extracted: 0,
error: run.error ?? "No result returned",
});
options.log(
options.label,
`WARN Agent failed ${pageUrl}: ${run.error ?? "no result"}`,
);
return;
}
try {
const agentRecords = await extractFromAgentResult({
spec: options.spec,
pageUrl,
agentResult: run.result,
focusFields: options.focusFields,
memory: options.memory,
});
summary.agent_succeeded += 1;
for (const record of agentRecords) {
records.push(record);
const pk = getPrimaryKeyValue(record, options.spec);
if (pk) knownKeys.add(pk);
}
summary.records_from_agent += agentRecords.length;
agentRuns.push({
url: pageUrl,
status: job.triage.status,
run_id: run.run_id,
agent_status: run.status,
goal: job.goal,
records_extracted: agentRecords.length,
});
options.log(
options.label,
`Agent OK ${pageUrl} → ${agentRecords.length} records`,
);
} catch (error) {
summary.agent_failed += 1;
const msg = error instanceof Error ? error.message : String(error);
options.errors.push(`Agent extract failed for ${pageUrl}: ${msg}`);
agentRuns.push({
url: pageUrl,
status: job.triage.status,
run_id: run.run_id,
agent_status: run.status,
goal: job.goal,
records_extracted: 0,
error: msg,
});
}
},
({ job }) => [getDomain(job.pageUrl)],
);
}
if (agentRuns.length > 0) {
await saveJson(
join(options.paths.root, `agent_runs_${options.label}.json`),
agentRuns,
);
}
return {
records,
triageResults,
agentRuns,
agentDeferred: deferredEntries,
summary,
};
}