From 115f6a0d5313cc3354aeb786e0c8a60d79f6f8d9 Mon Sep 17 00:00:00 2001 From: Gabriel Fuentes Date: Sun, 7 Jun 2026 13:03:28 -0600 Subject: [PATCH] Update extract docstring for flavor-selectable extraction --- src/extractor/handler.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/extractor/handler.py b/src/extractor/handler.py index 6c26974..6d3265d 100644 --- a/src/extractor/handler.py +++ b/src/extractor/handler.py @@ -132,7 +132,7 @@ def log(outcome: str, **fields: Any) -> None: @traceable(name="extract_document", process_inputs=_redact_inputs) def extract(bucket: str, key: str, document_id: str) -> dict[str, Any]: """ - Download ``s3://bucket/key``, run single-pass NDA extraction, and return structured results. + Download ``s3://bucket/key``, run the deployed flavor's NDA extraction, and return structured results. Return shape matches the optional attributes in the table schema (ADR-0007) so the conditional UPDATE in :func:`complete` works as-is.