0

Update status.ts

This commit is contained in:
Nicolas 2024-05-04 13:00:38 -07:00
parent 15b774e974
commit ce7bab7b35

View File

@ -8,7 +8,7 @@ export async function crawlJobStatusPreviewController(req: Request, res: Respons
return res.status(404).json({ error: "Job not found" }); return res.status(404).json({ error: "Job not found" });
} }
const { current, current_url, total, current_step } = await job.progress(); const { current, current_url, total, current_step, partialDocs } = await job.progress();
res.json({ res.json({
status: await job.getState(), status: await job.getState(),
// progress: job.progress(), // progress: job.progress(),
@ -17,6 +17,7 @@ export async function crawlJobStatusPreviewController(req: Request, res: Respons
current_step: current_step, current_step: current_step,
total: total, total: total,
data: job.returnvalue, data: job.returnvalue,
partial_data: partialDocs ?? [],
}); });
} catch (error) { } catch (error) {
console.error(error); console.error(error);