Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions apps/backend-services/src/workflow/activity-registry.ts
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,14 @@ export const REGISTERED_ACTIVITY_TYPES: Record<string, RegisteredActivityType> =
description:
"VLM-direct extraction (Azure OpenAI chat completions with vision input + strict JSON schema response_format)",
},
"vlmOcrHybrid.extract": {
description:
"VLM + OCR hybrid extraction (Azure DI prebuilt-layout markdown + Azure OpenAI chat completions with vision + strict JSON schema response_format)",
},
"azureOcr.readPlain": {
description:
"Azure DI prebuilt-layout (markdown content + per-line/per-word polygons; no field extraction). Sync submit+poll wrapper for the VLM hybrid pre-pass.",
},
"ocr.cleanup": { description: "Post-OCR text normalization" },
"ocr.enrich": {
description: "Enrich OCR results using field schema and optional LLM",
Expand Down
Loading