File size: 14,906 Bytes
5464613 fad3187 5464613 90760e2 68e4117 0918f71 5464613 90760e2 68e4117 5464613 90760e2 5464613 90760e2 5464613 90760e2 5464613 68e4117 5464613 68e4117 b2f1284 5464613 90760e2 5464613 90760e2 5464613 90760e2 5464613 b2f1284 5464613 b2f1284 5464613 fad3187 ecd21e2 fad3187 5464613 b2f1284 5464613 90760e2 5464613 68e4117 5464613 0918f71 5464613 90760e2 68e4117 9145b80 90760e2 68e4117 90760e2 5464613 fad3187 90760e2 68e4117 90760e2 5464613 0918f71 5464613 90760e2 5464613 68e4117 0918f71 5464613 0918f71 5464613 0918f71 5464613 0918f71 5464613 68e4117 5464613 0918f71 b2f1284 0918f71 5464613 90760e2 5464613 b2f1284 5464613 68e4117 0918f71 5464613 b2f1284 5464613 0918f71 b2b43b9 0918f71 5464613 90760e2 68e4117 5464613 fad3187 5464613 b2f1284 5464613 90760e2 68e4117 5464613 | 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 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 | // src/pipeline/batch.mjs
import fs from 'fs/promises';
import path from 'path';
import { preview } from './util.mjs';
import crypto from 'crypto';
import {
DEFAULT_SEEDS_PATH,
DEFAULT_OUT_PATH,
loadSeedQuestions,
seedToQuestion,
} from './seeds.mjs';
import { runPipelineStep } from './step.mjs';
import { loadProviderFor } from '../providers/provider.mjs';
import { runQuestionGenerator } from '../question/question_core.mjs';
import { fetchChunksFromIndex } from '../retrieval/retrieval.mjs';
import { loadRagChunks } from '../retrieval/jsonl_chunks.mjs';
import {
chunkIdFromContent,
questionId,
} from './cache.mjs';
import {
getCachedQuestions,
saveQuestions,
getCachedGeneration,
saveGeneration,
getCachedReward,
saveReward,
saveVerification,
} from './cache.mjs';
/**
* Append a single accepted record to a JSONL file.
*/
export async function appendGoldRecord(outPath, record) {
const line = JSON.stringify(record) + '\n';
await fs.mkdir(path.dirname(outPath), { recursive: true });
await fs.appendFile(outPath, line, 'utf8');
}
/**
* Run the pipeline over a batch of seeds and write accepted
* samples to a JSONL file.
*
* Modes:
* - question-first (default): seeds are CHUNKS; we generate questions from each chunk
* - static: seeds are questions (legacy / low-priority mode)
*
* Options:
* - seedsPath: JSONL of seeds (defaults to test_samples/seed_questions.jsonl)
* - outPath: output JSONL (defaults to gold/pipeline_gold.jsonl)
* - limit: max number of seeds to process
* - verbose: extra per-stage logging
* - logger: optional logger (defaults to console)
* - seedMode: 'question-first' | 'static' (overrides env + default)
*
* Returns:
* {
* mode,
* total,
* processed, // number of questions run through pipeline
* accepted,
* outPath,
* statusCounts,
* processedSeeds?, // (question-first) how many chunks actually used
* processedQuestions? // (question-first) alias for processed
* }
*/
export async function runPipelineBatch({
seedsPath = DEFAULT_SEEDS_PATH,
outPath = DEFAULT_OUT_PATH,
limit,
chunkLimit,
verbose = false,
logger = console,
seedMode = process.env.PIPELINE_SEED_MODE || 'question-first',
onProgress = () => {},
} = {}) {
const log = logger?.log?.bind(logger) || console.log;
const errLog = logger?.error?.bind(logger) || console.error;
if (verbose) {
log('[pipeline] mode:', seedMode);
log('[pipeline] outPath:', outPath);
}
let processed = 0; // number of questions sent through runPipelineStep
let accepted = 0;
const statusCounts = {};
// ----------------------------------------
// MODE 1: static questions from JSONL (legacy / tests)
// ----------------------------------------
if (seedMode === 'static') {
const seeds = await loadSeedQuestions(seedsPath);
const maxSeeds = typeof limit === 'number' ? limit : seeds.length;
if (verbose) {
log('[pipeline] seedsPath (static questions):', seedsPath);
}
for (let idx = 0; idx < maxSeeds; idx++) {
const seed = seeds[idx];
const question = seedToQuestion(seed);
const label = `[${idx + 1}/${maxSeeds}]`;
log(`→ ${label} Running pipeline for: "${question}"`);
const tStart = Date.now();
try {
const result = await runPipelineStep({
question,
verbose,
logger,
});
processed += 1;
statusCounts[result.status] =
(statusCounts[result.status] || 0) + 1;
onProgress({
processed,
accepted,
status: result.status,
elapsedMs: Date.now() - tStart,
question,
mode: seedMode,
});
if (verbose) {
log(` ↳ status: ${result.status}`);
}
if (result.status === 'accepted') {
const record = {
question,
context: result.context,
sample: {
answer: result.gen?.answer,
thought: result.gen?.thought,
raw: result.gen?.raw,
confidence: result.gen?.confidence,
evidence: result.gen?.evidence,
limitations: result.gen?.limitations,
thinking: result.gen?.thinking,
},
verifier: result.ver,
reward: result.rew,
};
await appendGoldRecord(outPath, record);
accepted += 1;
}
} catch (e) {
const msg = e?.message || String(e);
processed += 1;
statusCounts.pipeline_error =
(statusCounts.pipeline_error || 0) + 1;
onProgress({
processed,
accepted,
status: 'pipeline_error',
elapsedMs: Date.now() - tStart,
question,
mode: seedMode,
});
errLog(' [pipeline] ERROR:', msg);
}
}
return {
mode: seedMode,
total: seeds.length,
processed,
accepted,
outPath,
statusCounts,
};
}
// ----------------------------------------
// MODE 2: question-first (JSONL or ES chunks → QG → pipeline)
// ----------------------------------------
if (seedMode === 'question-first') {
const questionProvider = loadProviderFor('question');
const generatorProviderName =
process.env.GENERATOR_PROVIDER || 'ollama';
const verifierProviderName =
process.env.VERIFIER_PROVIDER || generatorProviderName;
const rewardProviderName =
process.env.REWARD_PROVIDER || generatorProviderName;
const maxQuestionsPerChunk = Number(
process.env.QUESTION_MAX_PER_CHUNK ||
process.env.QUESTION_MAX ||
'5',
);
const questionCap =
typeof limit === 'number' ? limit : Number.POSITIVE_INFINITY;
const effectiveChunkLimit = (() => {
if (typeof chunkLimit === 'number') return chunkLimit;
const envLimit =
process.env.PIPELINE_CHUNK_LIMIT ||
process.env.PIPELINE_CHUNKS ||
process.env.PIPELINE_CHUNK_SAMPLE;
const parsed = envLimit != null ? Number(envLimit) : NaN;
return Number.isFinite(parsed) ? parsed : undefined;
})();
// Decide where chunks come from:
// PIPELINE_CHUNK_SOURCE = 'jsonl' | 'es'
const chunkSource =
process.env.PIPELINE_CHUNK_SOURCE || 'jsonl';
if (verbose) {
if (chunkSource === 'jsonl') {
const p =
process.env.RAG_CHUNKS_PATH ||
'data/rag_chunks.jsonl';
log(
`[pipeline] loading chunks from JSONL (${p}), limit=${effectiveChunkLimit ?? 'all'}`,
);
} else {
log(
`[pipeline] fetching chunks from ES (limit=${effectiveChunkLimit ?? 'all'})`,
);
}
}
let chunks = [];
try {
if (chunkSource === 'jsonl') {
chunks = await loadRagChunks(effectiveChunkLimit);
} else {
chunks = await fetchChunksFromIndex(effectiveChunkLimit);
}
} catch (e) {
const msg = e?.message || String(e);
errLog('[pipeline] ERROR loading chunks:', msg);
return {
mode: seedMode,
total: 0,
processed: 0,
accepted: 0,
outPath,
statusCounts: { chunk_load_error: 1 },
};
}
const totalChunks = chunks.length;
let processedSeeds = 0;
// Optional random walk over chunks
const randomWalk = (() => {
const v =
process.env.PIPELINE_RANDOM_WALK ||
process.env.PIPELINE_CHUNK_ORDER;
if (!v) return false;
const s = String(v).toLowerCase();
return s === '1' || s === 'true' || s === 'yes' || s === 'random';
})();
if (randomWalk && chunks.length > 1) {
for (let i = chunks.length - 1; i > 0; i--) {
const j = crypto.randomInt(i + 1);
[chunks[i], chunks[j]] = [chunks[j], chunks[i]];
}
}
for (let idx = 0; idx < chunks.length; idx++) {
if (processed >= questionCap) break;
const chunk = chunks[idx];
const label = `[chunk ${idx + 1}/${chunks.length}]`;
const contextText = chunk.content;
const stableChunkId =
chunk.id ||
chunkIdFromContent(
contextText,
chunk.sourceId || chunk.source?.id,
);
chunk.id = stableChunkId;
if (!contextText || !contextText.trim()) {
if (verbose) {
log(`${label} chunk content empty, skipping`);
}
continue;
}
processedSeeds += 1;
if (verbose) {
log(`\n🧩 ${label} generating questions from chunk…`);
log(` [question] chunk id: ${chunk.id}`);
log(
' [question] chunk preview:\n ' +
preview(contextText, 300).replace(/\n/g, '\n '),
);
log(
` [question] using provider="question" maxQuestions=${maxQuestionsPerChunk}`,
);
}
// 1) generate questions from this chunk (or load cache)
let qResult;
let questions = [];
try {
const cachedQRecords = await getCachedQuestions(stableChunkId);
if (cachedQRecords.length > 0) {
questions = cachedQRecords[0].questions.slice(
0,
maxQuestionsPerChunk,
);
if (verbose)
log(
` [question] loaded ${questions.length} cached question(s)`,
);
} else {
qResult = await runQuestionGenerator(
contextText,
questionProvider,
{ maxQuestions: maxQuestionsPerChunk },
);
questions = qResult?.questions || [];
if (questions.length > 0) {
await saveQuestions(stableChunkId, questions, {
provider: process.env.QUESTION_PROVIDER,
model: process.env.QUESTION_MODEL,
});
}
}
} catch (e) {
const msg = e?.message || String(e);
statusCounts.question_error =
(statusCounts.question_error || 0) + 1;
if (verbose) {
errLog(' [question] ERROR:', msg);
}
continue;
}
if (verbose) {
log(
` [question] generated ${questions.length} question(s) from this chunk`,
);
if (questions.length > 0) {
log(
' [question] first question: "' +
preview(questions[0], 200) +
'"',
);
}
}
// 2) run full pipeline for each generated question
for (const q of questions) {
if (processed >= questionCap) break;
if (!q || !q.trim()) continue;
const qId = questionId(stableChunkId, q);
const cachedReward = await getCachedReward(stableChunkId, qId);
if (cachedReward?.ok) {
processed += 1;
accepted += 1;
statusCounts.cached_reward =
(statusCounts.cached_reward || 0) + 1;
onProgress({
processed,
accepted,
status: 'cached_reward',
elapsedMs: 0,
question: q,
mode: seedMode,
});
if (verbose)
log(
` → [q ${processed}] using cached reward, skipping stages`,
);
continue;
}
const cachedGen = await getCachedGeneration(stableChunkId, qId);
const qLabel = `[q ${processed + 1}]`;
log(
` → ${qLabel} Running pipeline for generated question: "${q}"`,
);
const tStart = Date.now();
try {
const result = await runPipelineStep({
question: q,
initialContext: [chunk], // IMPORTANT: reuse SAME chunk, no second retrieval
cachedGen,
verbose,
logger,
});
processed += 1;
statusCounts[result.status] =
(statusCounts[result.status] || 0) + 1;
onProgress({
processed,
accepted,
status: result.status,
elapsedMs: Date.now() - tStart,
question: q,
mode: seedMode,
});
if (verbose) {
log(` ↳ status: ${result.status}`);
}
let savedGenRecord = null;
if (result.gen) {
savedGenRecord = await saveGeneration(stableChunkId, qId, result.gen, {
provider: generatorProviderName,
model: process.env.GENERATOR_MODEL,
});
// keep gen_id on the in-memory object for downstream linking
if (savedGenRecord?.gen_id) {
result.gen.gen_id = savedGenRecord.gen_id;
}
}
const genIdForFollowups =
savedGenRecord?.gen_id || cachedGen?.gen_id;
if (result.ver) {
await saveVerification(
stableChunkId,
qId,
genIdForFollowups,
result.ver,
{
provider: verifierProviderName,
model: process.env.VERIFIER_MODEL,
},
);
}
if (result.rew) {
await saveReward(
stableChunkId,
qId,
genIdForFollowups,
result.rew,
{ provider: rewardProviderName, model: process.env.REWARD_MODEL },
);
}
if (result.status === 'accepted') {
const record = {
question: q,
sourceChunkId: chunk.id,
sourceChunk: contextText,
sourceDoc: chunk.source,
context: result.context,
sample: {
answer: result.gen?.answer,
thought: result.gen?.thought,
raw: result.gen?.raw,
},
verifier: result.ver,
reward: result.rew,
};
await appendGoldRecord(outPath, record);
accepted += 1;
if (verbose) {
log(' ✓ accepted and written to gold JSONL');
}
}
} catch (e) {
const msg = e?.message || String(e);
processed += 1;
statusCounts.pipeline_error =
(statusCounts.pipeline_error || 0) + 1;
onProgress({
processed,
accepted,
status: 'pipeline_error',
elapsedMs: Date.now() - tStart,
question: q,
mode: seedMode,
});
errLog(' [pipeline] ERROR:', msg);
}
}
}
return {
mode: seedMode,
total: totalChunks,
processed, // number of questions processed
processedSeeds,
processedQuestions: processed,
accepted,
outPath,
statusCounts,
};
}
throw new Error(`Unknown PIPELINE_SEED_MODE: ${seedMode}`);
}
|