refactor-for-llama-parse #17

Merged
aetos merged 5 commits from refactor-for-llama-parse into main 2026-08-23 16:58:33 +00:00
2 changed files with 2 additions and 3 deletions
Showing only changes of commit c585b62779 - Show all commits

View File

@@ -31,8 +31,7 @@ function computeProgressPercent(
if (
seenSteps.has("raw_lines") ||
seenSteps.has("txn_blocks") ||
seenSteps.has("llama_extract")
seenSteps.has("txn_blocks")
) {
pct += 10;
}

View File

@@ -90,7 +90,7 @@ export interface ResolveAmbiguityPayload {
export type SSEEventStep =
| "load_content" | "raw_lines" | "txn_blocks" | "txn_dicts"
| "resume_extract" | "extract" | "paused" | "complete" | "enrich"
| "save_expenses" | "pipeline" | "llama_extract";
| "save_expenses" | "pipeline";
export type SSEEventStatus =
| "started" | "completed" | "skipped" | "paused" | "progress" | "failed";