| import os |
| import shutil |
| import subprocess |
| from pathlib import Path |
|
|
| import gradio as gr |
| import pandas as pd |
| import spaces |
| from fastapi import FastAPI, status |
| from fastapi.middleware.cors import CORSMiddleware |
| from fastapi.middleware.trustedhost import TrustedHostMiddleware |
| from gradio_image_annotation_redaction import image_annotator |
|
|
|
|
| |
| |
| def _resolve_optional_file_path(path_value: str | None) -> Path | None: |
| if not path_value: |
| return None |
|
|
| p = Path(path_value) |
| if p.is_file(): |
| return p |
|
|
| |
| if not p.is_absolute(): |
| alt = Path(__file__).resolve().parent / p |
| if alt.is_file(): |
| return alt |
|
|
| |
| try: |
| import doc_redaction as _doc_redaction_pkg |
|
|
| pkg_dir = Path(_doc_redaction_pkg.__file__).resolve().parent |
| pkg_rel = pkg_dir / p |
| if pkg_rel.is_file(): |
| return pkg_rel |
|
|
| |
| if p.name.lower() == "favicon.png": |
| pkg_favicon = pkg_dir / "assets" / "favicon.png" |
| if pkg_favicon.is_file(): |
| return pkg_favicon |
| except Exception: |
| pass |
|
|
| return None |
|
|
|
|
| def _run_and_capture(cmd: list[str]) -> tuple[int, str]: |
| try: |
| p = subprocess.run(cmd, capture_output=True, text=True, check=False) |
| except FileNotFoundError: |
| return (127, "") |
| out = (p.stdout or "") + "\n" + (p.stderr or "") |
| return (int(p.returncode), out.strip()) |
|
|
|
|
| def _external_dep_warning_markdown() -> str | None: |
| """ |
| Best-effort check that external OCR/PDF dependencies are discoverable. |
| |
| Tesseract is always checked (local OCR). Poppler is only checked when |
| `POPPLER_FOLDER` is set in config; PDF handling in this app uses PyMuPDF, |
| so Poppler is optional when that variable is unset. |
| |
| We warn (but do not fail) when binaries aren't found, because many workflows |
| (e.g. tabular-only redaction) can still work without them. |
| """ |
|
|
| def _find_exe(name: str, folder_hint: str | None) -> str: |
| """ |
| Find an executable, respecting PATH and optional folder hints from config. |
| |
| `folder_hint` may point at either the executable itself, the bin folder, |
| or a parent folder containing bin/ or Library/bin/. |
| """ |
| found = shutil.which(name) |
| if found: |
| return found |
|
|
| if not folder_hint: |
| return name |
|
|
| p = Path(folder_hint) |
| exe_name = f"{name}.exe" if os.name == "nt" else name |
|
|
| candidates: list[Path] = [] |
| if p.is_file(): |
| candidates.append(p) |
| else: |
| candidates.extend( |
| [ |
| p / exe_name, |
| p / "bin" / exe_name, |
| p / "Library" / "bin" / exe_name, |
| ] |
| ) |
|
|
| for c in candidates: |
| if c.is_file(): |
| return str(c) |
|
|
| return name |
|
|
| |
| try: |
| from tools.config import POPPLER_FOLDER, TESSERACT_FOLDER |
| except Exception: |
| POPPLER_FOLDER = "" |
| TESSERACT_FOLDER = "" |
|
|
| tesseract_exe = _find_exe("tesseract", TESSERACT_FOLDER) |
| t_code, t_out = _run_and_capture([tesseract_exe, "--version"]) |
| t_ok = t_code == 0 and bool(t_out.strip()) |
|
|
| poppler_configured = bool((POPPLER_FOLDER or "").strip()) |
| p_ok = True |
| if poppler_configured: |
| pdftoppm_exe = _find_exe("pdftoppm", POPPLER_FOLDER) |
| p_code, p_out = _run_and_capture([pdftoppm_exe, "-v"]) |
| p_ok = p_code == 0 and bool(p_out.strip()) |
|
|
| if t_ok and p_ok: |
| return None |
|
|
| missing = [] |
| if not t_ok: |
| missing.append("Tesseract (`tesseract --version` failed)") |
| if poppler_configured and not p_ok: |
| poppler_path = Path(POPPLER_FOLDER) |
| exe_name = "pdftoppm.exe" if os.name == "nt" else "pdftoppm" |
| if not (poppler_path / exe_name).is_file(): |
| missing.append( |
| "Poppler (`POPPLER_FOLDER` is set but " |
| f"`{POPPLER_FOLDER}` does not contain `{exe_name}`)" |
| ) |
| else: |
| missing.append("Poppler (`pdftoppm -v` failed)") |
|
|
| missing_text = ", ".join(missing) |
| config_hint = "`TESSERACT_FOLDER` in `config/app_config.env`" |
| if poppler_configured: |
| config_hint = "`TESSERACT_FOLDER` / `POPPLER_FOLDER` in `config/app_config.env`" |
| return ( |
| "### ⚠️ Missing external dependencies\n\n" |
| f"This app could not find: **{missing_text}**.\n\n" |
| "- If you already installed them, ensure they are on your **PATH**, or set " |
| f"{config_hint}.\n" |
| "- To install automatically (recommended), run:\n\n" |
| "```bash\n" |
| "python -m doc_redaction.install_deps\n" |
| "```\n\n" |
| "See `README.md` for the full setup instructions." |
| ) |
|
|
|
|
| from tools.auth import authenticate_user |
| from tools.aws_functions import ( |
| download_file_from_s3, |
| export_outputs_to_s3, |
| upload_log_file_to_s3, |
| ) |
| from tools.config import ( |
| ACCESS_LOG_DYNAMODB_TABLE_NAME, |
| ACCESS_LOGS_FOLDER, |
| ALLOW_LIST_PATH, |
| ALLOWED_HOSTS, |
| ALLOWED_ORIGINS, |
| AWS_ACCESS_KEY, |
| AWS_LLM_PII_OPTION, |
| AWS_PII_OPTION, |
| AWS_REGION, |
| AWS_SECRET_KEY, |
| AZURE_OPENAI_API_KEY, |
| AZURE_OPENAI_INFERENCE_ENDPOINT, |
| BEDROCK_VLM_TEXT_EXTRACT_OPTION, |
| CHOSEN_COMPREHEND_ENTITIES, |
| CHOSEN_LLM_ENTITIES, |
| CHOSEN_LLM_PII_INFERENCE_METHOD, |
| CHOSEN_LOCAL_MODEL_INTRO_TEXT, |
| CHOSEN_REDACT_ENTITIES, |
| CLOUD_LLM_PII_MODEL_CHOICE, |
| CLOUD_VLM_MODEL_CHOICE, |
| COGNITO_AUTH, |
| CONFIG_FOLDER, |
| COST_CODE_ACCORDION_OPEN, |
| COST_CODES_PATH, |
| CSV_ACCESS_LOG_HEADERS, |
| CSV_FEEDBACK_LOG_HEADERS, |
| CSV_USAGE_LOG_HEADERS, |
| CUSTOM_BOX_COLOUR, |
| DEFAULT_CONCURRENCY_LIMIT, |
| DEFAULT_COST_CODE, |
| DEFAULT_DUPLICATE_DETECTION_THRESHOLD, |
| DEFAULT_EXCEL_SHEETS, |
| DEFAULT_FUZZY_SPELLING_MISTAKES_NUM, |
| DEFAULT_HANDWRITE_SIGNATURE_CHECKBOX, |
| DEFAULT_INFERENCE_SERVER_PII_MODEL, |
| DEFAULT_INFERENCE_SERVER_VLM_MODEL, |
| DEFAULT_LANGUAGE, |
| DEFAULT_LANGUAGE_FULL_NAME, |
| DEFAULT_LOCAL_OCR_MODEL, |
| DEFAULT_MIN_CONSECUTIVE_PAGES, |
| DEFAULT_MIN_WORD_COUNT, |
| DEFAULT_PAGE_MAX, |
| DEFAULT_PAGE_MIN, |
| DEFAULT_PII_DETECTION_MODEL, |
| DEFAULT_SEARCH_QUERY, |
| DEFAULT_TABULAR_ANONYMISATION_STRATEGY, |
| DEFAULT_TEXT_COLUMNS, |
| DEFAULT_TEXT_EXTRACTION_MODEL, |
| DENY_LIST_PATH, |
| DIRECT_MODE_ANON_STRATEGY, |
| DIRECT_MODE_CHOSEN_LOCAL_OCR_MODEL, |
| DIRECT_MODE_COMBINE_PAGES, |
| DIRECT_MODE_COMPRESS_REDACTED_PDF, |
| DIRECT_MODE_DEFAULT_USER, |
| DIRECT_MODE_DUPLICATE_TYPE, |
| DIRECT_MODE_EXTRACT_FORMS, |
| DIRECT_MODE_EXTRACT_LAYOUT, |
| DIRECT_MODE_EXTRACT_SIGNATURES, |
| DIRECT_MODE_EXTRACT_TABLES, |
| DIRECT_MODE_FUZZY_MISTAKES, |
| DIRECT_MODE_GREEDY_MATCH, |
| DIRECT_MODE_IMAGES_DPI, |
| DIRECT_MODE_INPUT_FILE, |
| DIRECT_MODE_JOB_ID, |
| DIRECT_MODE_LANGUAGE, |
| DIRECT_MODE_MATCH_FUZZY_WHOLE_PHRASE_BOOL, |
| DIRECT_MODE_MIN_CONSECUTIVE_PAGES, |
| DIRECT_MODE_MIN_WORD_COUNT, |
| DIRECT_MODE_OCR_FIRST_PASS_MAX_WORKERS, |
| DIRECT_MODE_OCR_METHOD, |
| DIRECT_MODE_OUTPUT_DIR, |
| DIRECT_MODE_PAGE_MAX, |
| DIRECT_MODE_PAGE_MIN, |
| DIRECT_MODE_PII_DETECTOR, |
| DIRECT_MODE_PREPROCESS_LOCAL_OCR_IMAGES, |
| DIRECT_MODE_REMOVE_DUPLICATE_ROWS, |
| DIRECT_MODE_RETURN_PDF_END_OF_REDACTION, |
| DIRECT_MODE_SIMILARITY_THRESHOLD, |
| DIRECT_MODE_SUMMARY_PAGE_GROUP_MAX_WORKERS, |
| DIRECT_MODE_TASK, |
| DIRECT_MODE_TEXTRACT_ACTION, |
| DISPLAY_FILE_NAMES_IN_LOGS, |
| DO_INITIAL_TABULAR_DATA_CLEAN, |
| DOCUMENT_REDACTION_BUCKET, |
| DYNAMODB_ACCESS_LOG_HEADERS, |
| DYNAMODB_FEEDBACK_LOG_HEADERS, |
| DYNAMODB_USAGE_LOG_HEADERS, |
| EFFICIENT_OCR, |
| EFFICIENT_OCR_MIN_EMBEDDED_IMAGE_PX, |
| EFFICIENT_OCR_MIN_IMAGE_COVERAGE_FRACTION, |
| EFFICIENT_OCR_MIN_WORDS, |
| ENFORCE_COST_CODES, |
| EXTRACTION_AND_PII_OPTIONS_OPEN_BY_DEFAULT, |
| FASTAPI_ROOT_PATH, |
| FAVICON_PATH, |
| FEEDBACK_LOG_DYNAMODB_TABLE_NAME, |
| FEEDBACK_LOG_FILE_NAME, |
| FEEDBACK_LOGS_FOLDER, |
| FILE_INPUT_HEIGHT, |
| FILL_SCREEN_WIDTH, |
| FULL_COMPREHEND_ENTITY_LIST, |
| FULL_ENTITY_LIST, |
| FULL_LLM_ENTITY_LIST, |
| GEMINI_API_KEY, |
| GET_COST_CODES, |
| GET_DEFAULT_ALLOW_LIST, |
| GRADIO_SERVER_NAME, |
| GRADIO_SERVER_PORT, |
| GRADIO_TEMP_DIR, |
| HANDWRITE_SIGNATURE_TEXTBOX_FULL_OPTIONS, |
| HOST_NAME, |
| HYBRID_TEXTRACT_BEDROCK_VLM, |
| INFERENCE_SERVER_API_URL, |
| INFERENCE_SERVER_PII_OPTION, |
| INPUT_FOLDER, |
| INTRO_TEXT, |
| LANGUAGE_CHOICES, |
| LLM_MAX_NEW_TOKENS, |
| LLM_TEMPERATURE, |
| LOAD_PREVIOUS_TEXTRACT_JOBS_S3, |
| LOCAL_OCR_MODEL_OPTIONS, |
| LOCAL_OCR_MODEL_TEXT_EXTRACT_OPTION, |
| LOCAL_PII_OPTION, |
| LOCAL_TRANSFORMERS_LLM_PII_OPTION, |
| LOG_FILE_NAME, |
| MAPPED_LANGUAGE_CHOICES, |
| MAX_FILE_SIZE, |
| MAX_OPEN_TEXT_CHARACTERS, |
| MAX_QUEUE_SIZE, |
| MPLCONFIGDIR, |
| NO_REDACTION_PII_OPTION, |
| OUTPUT_COST_CODES_PATH, |
| OUTPUT_FOLDER, |
| OVERWRITE_EXISTING_OCR_RESULTS, |
| PADDLE_MODEL_PATH, |
| PII_DETECTION_MODELS, |
| REMOVE_DUPLICATE_ROWS, |
| ROOT_PATH, |
| RUN_ALL_EXAMPLES_THROUGH_AWS, |
| RUN_AWS_FUNCTIONS, |
| RUN_DIRECT_MODE, |
| RUN_FASTAPI, |
| RUN_MCP_SERVER, |
| S3_ACCESS_LOGS_FOLDER, |
| S3_ALLOW_LIST_PATH, |
| S3_COST_CODES_PATH, |
| S3_FEEDBACK_LOGS_FOLDER, |
| S3_OUTPUTS_BUCKET, |
| S3_OUTPUTS_FOLDER, |
| S3_USAGE_LOGS_FOLDER, |
| SAVE_LOGS_TO_CSV, |
| SAVE_LOGS_TO_DYNAMODB, |
| SAVE_OUTPUTS_TO_S3, |
| SAVE_PAGE_OCR_VISUALISATIONS, |
| SESSION_OUTPUT_FOLDER, |
| SHOW_ALL_OUTPUTS_IN_OUTPUT_FOLDER, |
| SHOW_AWS_API_KEYS, |
| SHOW_AWS_EXAMPLES, |
| SHOW_AWS_PII_DETECTION_OPTIONS, |
| SHOW_AWS_TEXT_EXTRACTION_OPTIONS, |
| SHOW_COSTS, |
| SHOW_DIFFICULT_OCR_EXAMPLES, |
| SHOW_EXAMPLES, |
| SHOW_HYBRID_TEXTRACT_BEDROCK_CHECKBOX, |
| SHOW_INFERENCE_SERVER_PII_OPTIONS, |
| SHOW_INFERENCE_SERVER_VLM_MODEL_OPTIONS, |
| SHOW_LANGUAGE_SELECTION, |
| SHOW_LOCAL_OCR_MODEL_OPTIONS, |
| SHOW_OCR_GUI_OPTIONS, |
| SHOW_PII_IDENTIFICATION_OPTIONS, |
| SHOW_QUICKSTART, |
| SHOW_SET_DEFAULT_COST_CODE_BUTTON, |
| SHOW_SUMMARISATION, |
| SHOW_TRANSFORMERS_LLM_PII_DETECTION_OPTIONS, |
| SHOW_WHOLE_DOCUMENT_TEXTRACT_CALL_OPTIONS, |
| SPACY_MODEL_PATH, |
| TABULAR_PII_DETECTION_MODELS, |
| TEXT_EXTRACTION_MODELS, |
| TEXTRACT_JOBS_LOCAL_LOC, |
| TEXTRACT_JOBS_S3_INPUT_LOC, |
| TEXTRACT_JOBS_S3_LOC, |
| TEXTRACT_TEXT_EXTRACT_OPTION, |
| TEXTRACT_WHOLE_DOCUMENT_ANALYSIS_BUCKET, |
| TEXTRACT_WHOLE_DOCUMENT_ANALYSIS_INPUT_SUBFOLDER, |
| TEXTRACT_WHOLE_DOCUMENT_ANALYSIS_OUTPUT_SUBFOLDER, |
| USAGE_LOG_DYNAMODB_TABLE_NAME, |
| USAGE_LOG_FILE_NAME, |
| USAGE_LOGS_FOLDER, |
| USE_GREEDY_DUPLICATE_DETECTION, |
| WHOLE_PAGE_REDACTION_LIST_PATH, |
| ) |
| from tools.custom_csvlogger import CSVLogger_custom |
| from tools.data_anonymise import ( |
| REDACTION_EXAMPLE_PLACEHOLDER, |
| anonymise_files_with_open_text, |
| ) |
| from tools.file_conversion import ( |
| combine_review_pdf_files, |
| get_document_file_names, |
| get_input_file_names, |
| is_pdf, |
| prepare_image_or_pdf, |
| prepare_image_or_pdf_with_efficient_ocr, |
| ) |
| from tools.file_redaction import choose_and_run_redactor, run_redaction |
| from tools.find_duplicate_pages import ( |
| apply_whole_page_redactions_from_list, |
| create_annotation_objects_from_duplicates, |
| exclude_match, |
| handle_selection_and_preview, |
| run_duplicate_analysis, |
| run_search_with_regex_option, |
| ) |
| from tools.find_duplicate_tabular import ( |
| clean_tabular_duplicates, |
| handle_tabular_row_selection, |
| run_tabular_duplicate_detection, |
| ) |
| from tools.helper_functions import ( |
| _file_name_from_pdf_path, |
| all_outputs_file_download_fn, |
| apply_session_default_cost_code, |
| auto_set_local_ocr_for_bedrock_vlm, |
| calculate_aws_costs, |
| calculate_time_taken, |
| change_tab_to_review_redactions, |
| change_tab_to_tabular_or_document_redactions, |
| check_duplicate_pages_checkbox, |
| check_for_existing_textract_file, |
| check_for_relevant_ocr_output_with_words, |
| custom_regex_load, |
| enforce_cost_codes, |
| ensure_folder_exists, |
| get_connection_params, |
| lifespan, |
| load_all_output_files, |
| load_in_default_allow_list, |
| load_in_default_cost_codes, |
| merge_csv_files, |
| put_columns_in_df, |
| reset_aws_call_vars, |
| reset_base_dataframe, |
| reset_data_vars, |
| reset_ocr_base_dataframe, |
| reset_ocr_with_words_base_dataframe, |
| reset_review_vars, |
| reset_state_vars, |
| reveal_feedback_buttons, |
| save_default_cost_code_for_session, |
| seed_bundled_example_textract_json, |
| show_duplicate_info_box_on_click, |
| show_info_box_on_click, |
| show_info_box_on_click_ocr_examples, |
| show_tabular_info_box_on_click, |
| update_cost_code_dataframe_from_dropdown_select, |
| update_language_dropdown, |
| ) |
| from tools.load_spacy_model_custom_recognisers import custom_entities |
| from tools.quickstart import ( |
| handle_main_pii_method_selection, |
| handle_main_redaction_method_selection, |
| handle_main_text_extract_method_selection, |
| handle_pii_method_selection, |
| handle_pii_method_selection_tabular, |
| handle_redaction_method_selection, |
| handle_step_2_next, |
| handle_step_3_next, |
| handle_text_extract_method_selection, |
| route_walkthrough_files, |
| update_step_2_on_data_file_upload, |
| update_step_3_tabular_visibility, |
| update_step_4_visibility, |
| ) |
| from tools.redaction_review import ( |
| apply_redactions_to_review_df_and_files, |
| convert_df_to_xfdf, |
| convert_xfdf_to_dataframe, |
| create_annotation_objects_from_filtered_ocr_results_with_words, |
| decrease_page, |
| df_select_callback_cost, |
| df_select_callback_dataframe_row, |
| df_select_callback_dataframe_row_ocr_with_words, |
| df_select_callback_ocr, |
| df_select_callback_textract_api, |
| exclude_selected_items_from_redaction, |
| get_all_rows_with_same_text, |
| get_all_rows_with_same_text_redact, |
| get_and_merge_current_page_annotations, |
| increase_bottom_page_count_based_on_top, |
| increase_page, |
| page_ocr_review_image, |
| page_redaction_review_image, |
| reset_dropdowns, |
| undo_last_removal, |
| update_all_entity_df_dropdowns, |
| update_all_page_annotation_object_based_on_previous_page, |
| update_annotator_object_and_filter_df, |
| update_annotator_page_from_review_df, |
| update_entities_df_page, |
| update_entities_df_recogniser_entities, |
| update_entities_df_text, |
| update_other_annotator_number_from_current, |
| update_redact_choice_df_from_page_dropdown, |
| update_selected_review_df_row_colour, |
| validate_review_file_df, |
| ) |
| from tools.redaction_types import RedactionContext, RedactionOptions |
| from tools.summaries import ( |
| _summarisation_upload_to_paths, |
| _upload_contains_pdf, |
| concise_summary_format_prompt, |
| detailed_summary_format_prompt, |
| summarise_document_wrapper, |
| ) |
| from tools.textract_batch_call import ( |
| analyse_document_with_textract_api, |
| check_for_provided_job_id, |
| check_textract_outputs_exist, |
| load_in_textract_job_details, |
| poll_whole_document_textract_analysis_progress_and_download, |
| replace_existing_pdf_input_for_whole_document_outputs, |
| ) |
|
|
| |
| ensure_folder_exists(CONFIG_FOLDER) |
| ensure_folder_exists(OUTPUT_FOLDER) |
| ensure_folder_exists(INPUT_FOLDER) |
| if GRADIO_TEMP_DIR: |
| ensure_folder_exists(GRADIO_TEMP_DIR) |
| if MPLCONFIGDIR: |
| ensure_folder_exists(MPLCONFIGDIR) |
|
|
| ensure_folder_exists(FEEDBACK_LOGS_FOLDER) |
| ensure_folder_exists(ACCESS_LOGS_FOLDER) |
| ensure_folder_exists(USAGE_LOGS_FOLDER) |
|
|
| |
| CHOSEN_COMPREHEND_ENTITIES.extend(custom_entities) |
| FULL_COMPREHEND_ENTITY_LIST.extend(custom_entities) |
| FULL_LLM_ENTITY_LIST.extend(custom_entities) |
|
|
|
|
| |
| |
| |
|
|
|
|
| |
| |
| |
| CLEAN_ROOT = f"/{FASTAPI_ROOT_PATH.strip('/')}" if FASTAPI_ROOT_PATH.strip("/") else "" |
| app = FastAPI(lifespan=lifespan, root_path=CLEAN_ROOT) |
|
|
| |
| if 0 == 1: |
| print(f"spaces.__name__: {spaces.__name__}") |
|
|
| |
| |
| |
|
|
|
|
| def _resolve_example_data_dir() -> Path | None: |
| """ |
| Resolve the example data directory both for repo checkouts and PyPI installs. |
| |
| - Repo checkout (legacy): ./example_data |
| - PyPI install (packaged): doc_redaction/example_data (inside site-packages) |
| """ |
| |
| try: |
| import doc_redaction as _doc_redaction_pkg |
|
|
| pkg_dir = Path(_doc_redaction_pkg.__file__).resolve().parent |
| packaged = pkg_dir / "example_data" |
| if packaged.is_dir(): |
| return packaged |
| except Exception: |
| pass |
|
|
| |
| legacy = Path("example_data").resolve() |
| if legacy.is_dir(): |
| return legacy |
|
|
| return None |
|
|
|
|
| _EXAMPLE_DATA_DIR = _resolve_example_data_dir() |
|
|
|
|
| def _example_data_path(rel: str) -> str: |
| if _EXAMPLE_DATA_DIR is None: |
| return rel |
| return str((_EXAMPLE_DATA_DIR / rel).resolve()) |
|
|
|
|
| def seed_example_textract_json_on_app_load(output_folder: str) -> None: |
| """On app load, copy shipped example Textract JSON into the active output folder.""" |
| seed_bundled_example_textract_json( |
| output_folder, _example_data_path("example_outputs") |
| ) |
|
|
|
|
| |
| example_files = [ |
| _example_data_path("example_of_emails_sent_to_a_professor_before_applying.pdf"), |
| _example_data_path("example_complaint_letter.jpg"), |
| _example_data_path("graduate-job-example-cover-letter.pdf"), |
| _example_data_path("Partnership-Agreement-Toolkit_0_0.pdf"), |
| _example_data_path("partnership_toolkit_redact_custom_deny_list.csv"), |
| _example_data_path("partnership_toolkit_redact_some_pages.csv"), |
| ] |
|
|
| ocr_example_files = [ |
| _example_data_path("Partnership-Agreement-Toolkit_0_0.pdf"), |
| _example_data_path("Difficult handwritten note.jpg"), |
| _example_data_path("Example-cv-university-graduaty-hr-role-with-photo-2.pdf"), |
| ] |
|
|
| |
|
|
|
|
| |
| |
| initial_show_pii_method = SHOW_PII_IDENTIFICATION_OPTIONS |
| default_pii_method = DEFAULT_PII_DETECTION_MODEL |
| initial_show_local_entities = initial_show_pii_method and ( |
| default_pii_method == LOCAL_PII_OPTION |
| ) |
| initial_show_comprehend_entities = initial_show_pii_method and ( |
| default_pii_method == AWS_PII_OPTION |
| ) |
| initial_is_llm_method = initial_show_pii_method and ( |
| default_pii_method == LOCAL_TRANSFORMERS_LLM_PII_OPTION |
| or default_pii_method == INFERENCE_SERVER_PII_OPTION |
| or default_pii_method == AWS_LLM_PII_OPTION |
| ) |
|
|
| |
| walkthrough_file_input = gr.File( |
| label="Choose a PDF document, image file (PDF, JPG, PNG), tabular data file (Excel, CSV, Parquet), or Word document (DOCX)", |
| file_count="multiple", |
| file_types=[ |
| ".pdf", |
| ".jpg", |
| ".png", |
| ".json", |
| ".zip", |
| ".xlsx", |
| ".xls", |
| ".csv", |
| ".parquet", |
| ".docx", |
| ], |
| height=FILE_INPUT_HEIGHT, |
| ) |
|
|
| walkthrough_in_redact_entities = gr.Dropdown( |
| value=CHOSEN_REDACT_ENTITIES, |
| choices=FULL_ENTITY_LIST, |
| multiselect=True, |
| label="Local PII identification model (click empty space in box for full list)", |
| visible=initial_show_local_entities, |
| allow_custom_value=True, |
| ) |
|
|
| walkthrough_in_redact_comprehend_entities = gr.Dropdown( |
| value=CHOSEN_COMPREHEND_ENTITIES, |
| choices=FULL_COMPREHEND_ENTITY_LIST, |
| multiselect=True, |
| label="AWS Comprehend PII identification model (click empty space in box for full list)", |
| visible=initial_show_comprehend_entities, |
| allow_custom_value=True, |
| ) |
|
|
| |
| initial_local_ocr_visible = ( |
| DEFAULT_TEXT_EXTRACTION_MODEL == LOCAL_OCR_MODEL_TEXT_EXTRACT_OPTION |
| ) |
| initial_aws_textract_visible = ( |
| DEFAULT_TEXT_EXTRACTION_MODEL == TEXTRACT_TEXT_EXTRACT_OPTION |
| ) |
|
|
| text_extract_method_radio_message = """Choose text extraction method""" |
|
|
|
|
| walkthrough_text_extract_method_radio = gr.Radio( |
| label=text_extract_method_radio_message, |
| value=DEFAULT_TEXT_EXTRACTION_MODEL, |
| choices=TEXT_EXTRACTION_MODELS, |
| visible=True, |
| ) |
|
|
| |
| |
| initial_walkthrough_local_ocr_value = DEFAULT_LOCAL_OCR_MODEL |
| if ( |
| DEFAULT_TEXT_EXTRACTION_MODEL == BEDROCK_VLM_TEXT_EXTRACT_OPTION |
| and "bedrock-vlm" in LOCAL_OCR_MODEL_OPTIONS |
| ): |
| initial_walkthrough_local_ocr_value = "bedrock-vlm" |
|
|
| walkthrough_local_ocr_method_radio = gr.Radio( |
| label=CHOSEN_LOCAL_MODEL_INTRO_TEXT, |
| value=initial_walkthrough_local_ocr_value, |
| choices=LOCAL_OCR_MODEL_OPTIONS, |
| interactive=True, |
| visible=True, |
| ) |
|
|
| walkthrough_handwrite_signature_checkbox = gr.CheckboxGroup( |
| label="AWS Textract extraction settings", |
| choices=HANDWRITE_SIGNATURE_TEXTBOX_FULL_OPTIONS, |
| value=DEFAULT_HANDWRITE_SIGNATURE_CHECKBOX, |
| visible=True, |
| ) |
|
|
| walkthrough_pii_identification_method_drop = gr.Radio( |
| label="""Choose personal information detection model. Note that AWS Comprehend, if shown, has a cost of around £0.0075 ($0.01) per 10,000 characters.""", |
| value=DEFAULT_PII_DETECTION_MODEL, |
| choices=PII_DETECTION_MODELS, |
| visible=initial_show_pii_method, |
| ) |
|
|
| walkthrough_deny_list_state = gr.Dropdown( |
| allow_custom_value=True, |
| label="Deny list (always redact these words)", |
| interactive=True, |
| multiselect=True, |
| visible=True, |
| ) |
|
|
| walkthrough_allow_list_state = gr.Dropdown( |
| allow_custom_value=True, |
| label="Allow list (never redact these words)", |
| interactive=True, |
| multiselect=True, |
| visible=True, |
| ) |
|
|
| walkthrough_fully_redacted_list_state = gr.Dropdown( |
| allow_custom_value=True, |
| label="Fully redacted pages (fully redact these page numbers)", |
| interactive=True, |
| multiselect=True, |
| visible=True, |
| ) |
|
|
| |
| redact_duplicate_pages_state = gr.State(value=False) |
|
|
| |
| redact_duplicate_pages_checkbox = gr.Checkbox( |
| info="Find and redact whole pages that contain duplicate text. See the 'Identify duplicate pages' tab for all settings and duplicate sentence/passage redaction.", |
| label="Redact duplicate pages", |
| value=False, |
| visible=SHOW_PII_IDENTIFICATION_OPTIONS, |
| elem_id="redact_duplicate_pages_checkbox", |
| ) |
| if SHOW_AWS_PII_DETECTION_OPTIONS: |
| aws_comprehend_cost_message = ( |
| ". AWS Comprehend has a cost of approximately $0.01 per 10,000 characters." |
| ) |
| else: |
| aws_comprehend_cost_message = "" |
| walkthrough_pii_identification_method_drop_tabular = gr.Radio( |
| label="Choose PII detection method" + aws_comprehend_cost_message, |
| value=DEFAULT_PII_DETECTION_MODEL, |
| choices=TABULAR_PII_DETECTION_MODELS, |
| visible=False, |
| ) |
|
|
| walkthrough_anon_strategy = gr.Radio( |
| choices=[ |
| "replace with 'REDACTED'", |
| "replace with <ENTITY_NAME>", |
| "redact completely", |
| "hash", |
| "mask", |
| ], |
| label="Select an anonymisation method", |
| value=DEFAULT_TABULAR_ANONYMISATION_STRATEGY, |
| visible=False, |
| ) |
|
|
| walkthrough_do_initial_clean = gr.Checkbox( |
| label="Do initial clean of text (remove URLs, HTML tags, and non-ASCII characters)", |
| value=DO_INITIAL_TABULAR_DATA_CLEAN, |
| visible=False, |
| ) |
|
|
| walkthrough_in_redact_llm_entities = gr.Dropdown( |
| value=CHOSEN_LLM_ENTITIES, |
| choices=FULL_LLM_ENTITY_LIST, |
| multiselect=True, |
| label="LLM PII identification model - subset of entities for LLM detection (click empty space in box for full list)", |
| visible=True, |
| allow_custom_value=True, |
| ) |
|
|
| walkthrough_custom_llm_instructions_textbox = gr.Textbox( |
| label="Custom instructions for LLM-based entity detection", |
| placeholder="Specify new labels to redact with a description. E.g. 'Redact information related to Mark Wilson with the label MARK_WILSON' or 'redact all company names with the label COMPANY_NAME'.", |
| value="", |
| lines=3, |
| visible=True, |
| ) |
|
|
| |
| in_doc_files = gr.File( |
| label="Choose a PDF document or image file (PDF, JPG, PNG)", |
| file_count="multiple", |
| file_types=[".pdf", ".jpg", ".png", ".json", ".zip"], |
| height=FILE_INPUT_HEIGHT, |
| ) |
|
|
| total_pdf_page_count = gr.Number( |
| label="Total page count", |
| value=0, |
| visible=SHOW_COSTS, |
| interactive=False, |
| ) |
|
|
| |
| if not SHOW_OCR_GUI_OPTIONS: |
| |
| SHOW_INFERENCE_SERVER_VLM_MODEL_OPTIONS = False |
| SHOW_LOCAL_OCR_MODEL_OPTIONS = False |
|
|
| text_extract_method_radio = gr.Radio( |
| label=text_extract_method_radio_message, |
| value=DEFAULT_TEXT_EXTRACTION_MODEL, |
| choices=TEXT_EXTRACTION_MODELS, |
| visible=SHOW_OCR_GUI_OPTIONS, |
| ) |
|
|
| |
| |
| initial_local_ocr_value = DEFAULT_LOCAL_OCR_MODEL |
| if ( |
| DEFAULT_TEXT_EXTRACTION_MODEL == BEDROCK_VLM_TEXT_EXTRACT_OPTION |
| and "bedrock-vlm" in LOCAL_OCR_MODEL_OPTIONS |
| ): |
| initial_local_ocr_value = "bedrock-vlm" |
|
|
| local_ocr_method_radio = gr.Radio( |
| label=CHOSEN_LOCAL_MODEL_INTRO_TEXT, |
| value=initial_local_ocr_value, |
| choices=LOCAL_OCR_MODEL_OPTIONS, |
| interactive=True, |
| visible=SHOW_LOCAL_OCR_MODEL_OPTIONS, |
| ) |
|
|
| handwrite_signature_checkbox = gr.CheckboxGroup( |
| label="AWS Textract extraction settings", |
| choices=HANDWRITE_SIGNATURE_TEXTBOX_FULL_OPTIONS, |
| value=DEFAULT_HANDWRITE_SIGNATURE_CHECKBOX, |
| visible=SHOW_AWS_TEXT_EXTRACTION_OPTIONS, |
| ) |
|
|
| inference_server_vlm_model_textbox = gr.Textbox( |
| label="Inference Server VLM Model Name", |
| placeholder="e.g., 'qwen2-vl-7b-instruct' or leave empty to use default", |
| value=( |
| DEFAULT_INFERENCE_SERVER_VLM_MODEL if DEFAULT_INFERENCE_SERVER_VLM_MODEL else "" |
| ), |
| lines=1, |
| visible=SHOW_INFERENCE_SERVER_VLM_MODEL_OPTIONS, |
| ) |
|
|
| |
|
|
| |
| if not SHOW_PII_IDENTIFICATION_OPTIONS: |
| SHOW_TRANSFORMERS_LLM_PII_DETECTION_OPTIONS = False |
|
|
| redaction_method_radio = gr.Radio( |
| label="Choose redaction method", |
| choices=[ |
| "Extract text only", |
| "Redact all PII", |
| "Redact selected terms", |
| ], |
| value="Redact all PII", |
| interactive=True, |
| ) |
|
|
| pii_identification_method_drop = gr.Radio( |
| label="""Choose personal information detection model. Note that AWS Comprehend, if shown, has a cost of around £0.0075 ($0.01) per 10,000 characters.""", |
| value=DEFAULT_PII_DETECTION_MODEL, |
| choices=PII_DETECTION_MODELS, |
| visible=SHOW_PII_IDENTIFICATION_OPTIONS, |
| ) |
|
|
| in_redact_entities = gr.Dropdown( |
| value=CHOSEN_REDACT_ENTITIES, |
| choices=FULL_ENTITY_LIST, |
| multiselect=True, |
| label="Local PII identification model (click empty space in box for full list)", |
| visible=initial_show_local_entities, |
| allow_custom_value=True, |
| ) |
| in_redact_comprehend_entities = gr.Dropdown( |
| value=CHOSEN_COMPREHEND_ENTITIES, |
| choices=FULL_COMPREHEND_ENTITY_LIST, |
| multiselect=True, |
| label="AWS Comprehend PII identification model (click empty space in box for full list)", |
| visible=initial_show_comprehend_entities, |
| allow_custom_value=True, |
| ) |
|
|
| in_redact_llm_entities = gr.Dropdown( |
| value=CHOSEN_LLM_ENTITIES, |
| choices=FULL_LLM_ENTITY_LIST, |
| multiselect=True, |
| label="LLM PII identification model - subset of entities for LLM detection (click empty space in box for full list)", |
| visible=initial_is_llm_method, |
| allow_custom_value=True, |
| ) |
|
|
| custom_llm_instructions_textbox = gr.Textbox( |
| label="Custom instructions for LLM-based entity detection", |
| placeholder="Specify new labels to redact with a description. E.g. 'Redact information related to Mark Wilson with the label MARK_WILSON' or 'redact all company names with the label COMPANY_NAME'.", |
| value="", |
| lines=3, |
| visible=True, |
| ) |
|
|
| |
|
|
| in_deny_list_state = gr.Dropdown( |
| allow_custom_value=True, |
| label="Deny list (always redact these words)", |
| interactive=True, |
| multiselect=True, |
| visible=SHOW_PII_IDENTIFICATION_OPTIONS, |
| ) |
|
|
| in_allow_list_state = gr.Dropdown( |
| allow_custom_value=True, |
| label="Allow list (never redact these words)", |
| interactive=True, |
| multiselect=True, |
| visible=SHOW_PII_IDENTIFICATION_OPTIONS, |
| ) |
|
|
| in_fully_redacted_list_state = gr.Dropdown( |
| allow_custom_value=True, |
| label="Fully redact these pages", |
| interactive=True, |
| multiselect=True, |
| visible=SHOW_PII_IDENTIFICATION_OPTIONS, |
| ) |
|
|
| in_deny_list = gr.File( |
| label="Import custom deny list - csv table with one column of a different word/phrase on each row (case insensitive). Terms in this file will always be redacted.", |
| file_count="multiple", |
| height=FILE_INPUT_HEIGHT, |
| ) |
|
|
| in_fully_redacted_list = gr.File( |
| label="Import fully redacted pages list - csv table with one column of page numbers on each row. Page numbers in this file will be fully redacted.", |
| file_count="multiple", |
| height=FILE_INPUT_HEIGHT, |
| ) |
|
|
| max_fuzzy_spelling_mistakes_num = gr.Number( |
| label="Maximum spelling mistakes for matching deny list terms (slows down PII detection).", |
| value=DEFAULT_FUZZY_SPELLING_MISTAKES_NUM, |
| minimum=0, |
| maximum=9, |
| precision=0, |
| ) |
|
|
| |
| cost_code_dataframe = gr.Dataframe( |
| value=pd.DataFrame(columns=["Cost code", "Description"]), |
| row_count=(0, "dynamic"), |
| label="Existing cost codes", |
| type="pandas", |
| interactive=True, |
| show_search="filter", |
| wrap=True, |
| max_height=200, |
| visible=GET_COST_CODES or ENFORCE_COST_CODES, |
| ) |
| cost_code_choice_drop = gr.Dropdown( |
| value=DEFAULT_COST_CODE, |
| label="Choose cost code for analysis", |
| choices=[DEFAULT_COST_CODE], |
| allow_custom_value=True, |
| visible=GET_COST_CODES or ENFORCE_COST_CODES, |
| ) |
| set_default_cost_code_button = gr.Button( |
| value="Set default cost code", |
| visible=(GET_COST_CODES or ENFORCE_COST_CODES) |
| and SHOW_SET_DEFAULT_COST_CODE_BUTTON, |
| ) |
|
|
| reset_cost_code_dataframe_button = gr.Button( |
| value="Reset code code table filter", |
| visible=GET_COST_CODES or ENFORCE_COST_CODES, |
| ) |
|
|
| |
|
|
| page_min = gr.Number( |
| value=DEFAULT_PAGE_MIN, |
| precision=0, |
| minimum=0, |
| maximum=9999, |
| label="Lowest page to redact (set to 0 to redact from the first page)", |
| ) |
|
|
| page_max = gr.Number( |
| value=DEFAULT_PAGE_MAX, |
| precision=0, |
| minimum=0, |
| maximum=9999, |
| label="Highest page to redact (set to 0 to redact to the last page)", |
| ) |
|
|
| |
| in_duplicate_pages = gr.File( |
| label="Upload one or multiple 'ocr_output.csv' files to find duplicate pages and subdocuments", |
| file_count="multiple", |
| height=FILE_INPUT_HEIGHT, |
| file_types=[".csv"], |
| ) |
|
|
| duplicate_threshold_input = gr.Number( |
| value=DEFAULT_DUPLICATE_DETECTION_THRESHOLD, |
| label="Similarity threshold", |
| info="Score (0-1) to consider pages/text lines a match.", |
| ) |
|
|
| min_word_count_input = gr.Number( |
| value=DEFAULT_MIN_WORD_COUNT, |
| label="Minimum word count", |
| info="Pages/text lines with fewer words than this value are ignored.", |
| ) |
|
|
| combine_page_text_for_duplicates_bool = gr.Radio( |
| label="Duplicate matching mode", |
| choices=[ |
| ("Find duplicates by page", True), |
| ("Find duplicates by text line", False), |
| ], |
| value=True, |
| info="By page: compare full-page text. By text line: compare individual lines.", |
| ) |
|
|
| |
| in_data_files = gr.File( |
| label="Choose Excel or csv files", |
| file_count="multiple", |
| file_types=[".xlsx", ".xls", ".csv", ".parquet", ".docx"], |
| height=FILE_INPUT_HEIGHT, |
| ) |
|
|
| in_colnames = gr.Dropdown( |
| choices=["Choose columns to anonymise"], |
| multiselect=True, |
| allow_custom_value=True, |
| label="Select columns that you want to anonymise (showing columns present across all files).", |
| ) |
|
|
| in_excel_sheets = gr.Dropdown( |
| choices=["Choose Excel sheets to anonymise"], |
| multiselect=True, |
| label="Select Excel sheets that you want to anonymise (showing sheets present across all Excel files).", |
| visible=False, |
| allow_custom_value=True, |
| ) |
|
|
| pii_identification_method_drop_tabular = gr.Radio( |
| label="Choose PII detection method. Specific entities for the chosen redaction model type can be chosen on the Redact PDF/image tab" |
| + aws_comprehend_cost_message, |
| value=DEFAULT_PII_DETECTION_MODEL, |
| choices=TABULAR_PII_DETECTION_MODELS, |
| ) |
|
|
| anon_strategy = gr.Radio( |
| choices=[ |
| "replace with 'REDACTED'", |
| "replace with <ENTITY_NAME>", |
| "redact completely", |
| "hash", |
| "mask", |
| ], |
| label="Select an anonymisation method.", |
| value=DEFAULT_TABULAR_ANONYMISATION_STRATEGY, |
| ) |
|
|
| do_initial_clean = gr.Checkbox( |
| label="Do initial clean of text (remove URLs, HTML tags, and non-ASCII characters)", |
| value=DO_INITIAL_TABULAR_DATA_CLEAN, |
| ) |
|
|
| in_tabular_duplicate_files = gr.File( |
| label="Upload CSV, Excel, or Parquet files to find duplicate cells/rows. Note that the app will remove duplicates from later cells/files that are found in earlier cells/files and not vice versa.", |
| file_count="multiple", |
| file_types=[".csv", ".xlsx", ".xls", ".parquet"], |
| height=FILE_INPUT_HEIGHT, |
| ) |
|
|
| tabular_text_columns = gr.Dropdown( |
| label="Choose columns to deduplicate", |
| multiselect=True, |
| allow_custom_value=True, |
| ) |
|
|
| tabular_min_word_count = gr.Number( |
| value=DEFAULT_MIN_WORD_COUNT, |
| label="Minimum word count", |
| info="Cells with fewer words than this are ignored.", |
| ) |
|
|
| |
| all_output_files_btn = gr.Button( |
| "Refresh files in output folder", |
| variant="secondary", |
| visible=SHOW_ALL_OUTPUTS_IN_OUTPUT_FOLDER, |
| ) |
| all_output_files = gr.FileExplorer( |
| root_dir=OUTPUT_FOLDER, |
| label="Choose output files for download", |
| file_count="multiple", |
| visible=SHOW_ALL_OUTPUTS_IN_OUTPUT_FOLDER, |
| interactive=True, |
| max_height=400, |
| ) |
|
|
| all_outputs_file_download = gr.File( |
| label="Download output files", |
| file_count="multiple", |
| file_types=[ |
| ".pdf", |
| ".jpg", |
| ".jpeg", |
| ".png", |
| ".csv", |
| ".xlsx", |
| ".xls", |
| ".txt", |
| ".doc", |
| ".docx", |
| ".json", |
| ], |
| interactive=False, |
| visible=SHOW_ALL_OUTPUTS_IN_OUTPUT_FOLDER, |
| height=200, |
| ) |
|
|
| clean_path = f"/{ROOT_PATH.strip('/')}" |
| base_href = f"{clean_path}/" if clean_path != "/" else "/" |
|
|
| if ROOT_PATH: |
| print(f"Setting HTML base href for Gradio to: '{base_href}'") |
|
|
| head_html = f"""<base href='{base_href}'> |
| |
| <script src="https://cdnjs.cloudflare.com/ajax/libs/iframe-resizer/4.3.1/iframeResizer.contentWindow.min.js" integrity="sha256-62pj+jS8t+leByFOFwjiY0T92YlWwowYgHnFRklgv0M=" crossorigin="anonymous"></script>""" |
|
|
| css = """ |
| /* Target tab navigation buttons only - not buttons inside tab content */ |
| /* Gradio renders tab buttons with role="tab" in the navigation area */ |
| button[role="tab"] { |
| font-size: 1.1em !important; |
| padding: 0.75em 1.2em !important; |
| } |
| |
| /* Alternative selectors for different Gradio versions */ |
| .tab-nav button, |
| nav button[role="tab"], |
| div[class*="tab-nav"] button { |
| font-size: 1.1em !important; |
| padding: 0.75em 1.2em !important; |
| } |
| |
| /* Tabular redaction example: wrap long lines instead of horizontal scroll */ |
| #text-redaction-example-markdown pre, |
| #text-redaction-example-markdown code { |
| white-space: pre-wrap !important; |
| word-break: break-word; |
| overflow-wrap: anywhere; |
| } |
| """ |
|
|
| |
| if RUN_FASTAPI: |
| blocks = gr.Blocks( |
| analytics_enabled=False, |
| title="Document Redaction App", |
| delete_cache=(43200, 43200), |
| fill_width=FILL_SCREEN_WIDTH, |
| ) |
| else: |
| blocks = gr.Blocks( |
| analytics_enabled=False, |
| title="Document Redaction App", |
| delete_cache=(43200, 43200), |
| fill_width=FILL_SCREEN_WIDTH, |
| ) |
|
|
| |
| _DEPS_WARNING_MD = _external_dep_warning_markdown() |
|
|
| with blocks: |
|
|
| |
| |
| |
|
|
| |
| pdf_doc_state = gr.State(list()) |
| all_image_annotations_state = gr.State(list()) |
|
|
| all_decision_process_table_state = gr.State(pd.DataFrame()) |
|
|
| all_page_line_level_ocr_results = gr.State(list()) |
| all_page_line_level_ocr_results_with_words = gr.State(list()) |
|
|
| session_hash_state = gr.Textbox(label="session_hash_state", value="", visible=False) |
| host_name_textbox = gr.Textbox( |
| label="host_name_textbox", value=HOST_NAME, visible=False |
| ) |
| s3_output_folder_state = gr.Textbox( |
| label="s3_output_folder_state", value=S3_OUTPUTS_FOLDER, visible=False |
| ) |
| session_output_folder_textbox = gr.Textbox( |
| value=str(SESSION_OUTPUT_FOLDER), |
| label="session_output_folder_textbox", |
| visible=False, |
| ) |
| output_folder_textbox = gr.Textbox( |
| value=OUTPUT_FOLDER, label="output_folder_textbox", visible=False |
| ) |
| input_folder_textbox = gr.Textbox( |
| value=INPUT_FOLDER, label="input_folder_textbox", visible=False |
| ) |
|
|
| first_loop_state = gr.Checkbox(label="first_loop_state", value=True, visible=False) |
| second_loop_state = gr.Checkbox( |
| label="second_loop_state", value=False, visible=False |
| ) |
| do_not_save_pdf_state = gr.Checkbox( |
| label="do_not_save_pdf_state", value=False, visible=False |
| ) |
| save_pdf_state = gr.Checkbox(label="save_pdf_state", value=True, visible=False) |
|
|
| prepared_pdf_state = gr.State(list()) |
| document_cropboxes = gr.State(list()) |
| page_sizes = gr.State(list()) |
| images_pdf_state = gr.State(list()) |
| all_img_details_state = gr.State(list()) |
|
|
| output_image_files_state = gr.State(list()) |
| output_file_list_state = gr.State(list()) |
| text_output_file_list_state = gr.State(list()) |
| log_files_output_list_state = gr.State(list()) |
| duplication_file_path_outputs_list_state = gr.State(list()) |
|
|
| |
| backup_review_state = gr.State(pd.DataFrame()) |
| backup_image_annotations_state = gr.State(list()) |
| backup_recogniser_entity_dataframe_base = gr.State(pd.DataFrame()) |
| backup_all_page_line_level_ocr_results_with_words_df_base = gr.State(pd.DataFrame()) |
|
|
| |
| access_logs_state = gr.State(value=ACCESS_LOGS_FOLDER + LOG_FILE_NAME) |
| access_s3_logs_loc_state = gr.State(value=S3_ACCESS_LOGS_FOLDER) |
| feedback_logs_state = gr.State(value=FEEDBACK_LOGS_FOLDER + FEEDBACK_LOG_FILE_NAME) |
| feedback_s3_logs_loc_state = gr.State(value=S3_FEEDBACK_LOGS_FOLDER) |
| usage_logs_state = gr.State(value=USAGE_LOGS_FOLDER + USAGE_LOG_FILE_NAME) |
| usage_s3_logs_loc_state = gr.State(value=S3_USAGE_LOGS_FOLDER) |
|
|
| session_hash_textbox = gr.State(value="") |
| textract_metadata_textbox = gr.State(value="") |
| comprehend_query_number = gr.State(value=0) |
| textract_query_number = gr.State(value=0) |
|
|
| |
| vlm_model_name_textbox = gr.State(value="") |
| vlm_total_input_tokens_number = gr.State(value=0) |
| vlm_total_output_tokens_number = gr.State(value=0) |
| llm_model_name_textbox = gr.State(value="") |
| llm_total_input_tokens_number = gr.State(value=0) |
| llm_total_output_tokens_number = gr.State(value=0) |
|
|
| |
| doc_full_file_name_textbox = gr.State(value="") |
| doc_file_name_no_extension_textbox = gr.State(value="") |
| doc_file_name_with_extension_textbox = gr.State(value="") |
| doc_file_name_textbox_list = gr.State(value="") |
|
|
| |
| blank_doc_file_name_no_extension_textbox_for_logs = gr.State(value="") |
| placeholder_doc_file_name_no_extension_textbox_for_logs = gr.State(value="document") |
|
|
| |
| data_full_file_name_textbox = gr.State(value="") |
| data_file_name_no_extension_textbox = gr.State(value="") |
| data_file_name_with_extension_textbox = gr.State(value="") |
| data_file_name_textbox_list = gr.State(value="") |
| blank_data_file_name_no_extension_textbox_for_logs = gr.State(value="") |
|
|
| placeholder_data_file_name_no_extension_textbox_for_logs = gr.State( |
| value="data_file" |
| ) |
|
|
| latest_review_file_path = gr.State( |
| value="" |
| ) |
| latest_ocr_file_path = gr.State( |
| value="" |
| ) |
|
|
| |
| label_name_const = gr.State(value="label") |
| text_name_const = gr.State(value="text") |
| page_name_const = gr.State(value="page") |
|
|
| actual_time_taken_number = gr.State( |
| value=0.0 |
| ) |
| annotate_previous_page = gr.State( |
| value=0 |
| ) |
| s3_logs_output_textbox = gr.State(value="") |
|
|
| |
| session_default_cost_codes_df = gr.State(pd.DataFrame()) |
|
|
| |
| annotator_zoom_number = gr.Number( |
| label="Current annotator zoom level", value=100, precision=0, visible=False |
| ) |
| zoom_true_bool = gr.Checkbox(label="zoom_true_bool", value=True, visible=False) |
| zoom_false_bool = gr.Checkbox(label="zoom_false_bool", value=False, visible=False) |
|
|
| clear_all_page_redactions = gr.Checkbox( |
| label="clear_all_page_redactions", value=True, visible=False |
| ) |
| prepare_for_review_bool = gr.Checkbox( |
| label="prepare_for_review_bool", value=True, visible=False |
| ) |
| prepare_for_review_bool_false = gr.Checkbox( |
| label="prepare_for_review_bool_false", value=False, visible=False |
| ) |
| prepare_images_bool_false = gr.Checkbox( |
| label="prepare_images_bool_false", value=False, visible=False |
| ) |
|
|
| |
| default_deny_list_file_name = "default_deny_list.csv" |
| default_deny_list_loc = OUTPUT_FOLDER + "/" + default_deny_list_file_name |
| in_deny_list_text_in = gr.Textbox(value="deny_list", visible=False) |
|
|
| fully_redacted_list_file_name = "default_fully_redacted_list.csv" |
| fully_redacted_list_loc = OUTPUT_FOLDER + "/" + fully_redacted_list_file_name |
| in_fully_redacted_text_in = gr.Textbox( |
| value="fully_redacted_pages_list", visible=False |
| ) |
|
|
| |
| s3_default_bucket = gr.State(value=DOCUMENT_REDACTION_BUCKET) |
| s3_default_allow_list_file = gr.State(value=S3_ALLOW_LIST_PATH) |
| default_allow_list_output_folder_location = gr.State(value=ALLOW_LIST_PATH) |
|
|
| s3_whole_document_textract_default_bucket = gr.State( |
| value=TEXTRACT_WHOLE_DOCUMENT_ANALYSIS_BUCKET |
| ) |
| s3_whole_document_textract_input_subfolder = gr.State( |
| value=TEXTRACT_WHOLE_DOCUMENT_ANALYSIS_INPUT_SUBFOLDER |
| ) |
| s3_whole_document_textract_output_subfolder = gr.State( |
| value=TEXTRACT_WHOLE_DOCUMENT_ANALYSIS_OUTPUT_SUBFOLDER |
| ) |
|
|
| successful_textract_api_call_number = gr.State(value=0) |
| no_redaction_method_drop = gr.State(value=NO_REDACTION_PII_OPTION) |
| textract_only_method_drop = gr.State(value=TEXTRACT_TEXT_EXTRACT_OPTION) |
| extract_text_only_tab_redaction_override = gr.State(value="Extract text only") |
|
|
| load_s3_whole_document_textract_logs_bool = gr.State( |
| value=LOAD_PREVIOUS_TEXTRACT_JOBS_S3 |
| ) |
| s3_whole_document_textract_logs_subfolder = gr.State(value=TEXTRACT_JOBS_S3_LOC) |
| local_whole_document_textract_logs_subfolder = gr.State( |
| value=TEXTRACT_JOBS_LOCAL_LOC |
| ) |
|
|
| s3_default_cost_codes_file = gr.State(value=S3_COST_CODES_PATH) |
| default_cost_codes_output_folder_location = gr.State(value=OUTPUT_COST_CODES_PATH) |
| enforce_cost_code_bool = gr.State(value=ENFORCE_COST_CODES) |
| default_cost_code_textbox = gr.State(value=DEFAULT_COST_CODE) |
|
|
| |
| recogniser_entity_dataframe_base = gr.State( |
| pd.DataFrame(columns=["page", "label", "text", "id"]) |
| ) |
| all_page_line_level_ocr_results_df_base = gr.State( |
| pd.DataFrame( |
| columns=[ |
| "page", |
| "text", |
| "left", |
| "top", |
| "width", |
| "height", |
| "line", |
| "conf", |
| ] |
| ) |
| ) |
| all_line_level_ocr_results_df_placeholder = gr.State( |
| pd.DataFrame( |
| columns=[ |
| "page", |
| "text", |
| "left", |
| "top", |
| "width", |
| "height", |
| "line", |
| "conf", |
| ] |
| ) |
| ) |
|
|
| all_page_line_level_ocr_results_with_words_df_base = gr.State( |
| value=pd.DataFrame( |
| columns=[ |
| "page", |
| "line", |
| "word_text", |
| "word_x0", |
| "word_y0", |
| "word_x1", |
| "word_y1", |
| "word_conf", |
| "line_text", |
| "line_x0", |
| "line_y0", |
| "line_x1", |
| "line_y1", |
| "line_conf", |
| ] |
| ) |
| ) |
|
|
| |
| selected_entity_id = gr.State(value="") |
| selected_entity_colour = gr.State(value="") |
| selected_entity_dataframe_row_text = gr.State(value="") |
| selected_entity_dataframe_row_text_redact = gr.State(value="") |
|
|
| |
| recogniser_entity_dataframe_same_text = gr.State( |
| value=pd.DataFrame( |
| data={"page": list(), "label": list(), "text": list(), "id": list()} |
| ) |
| ) |
|
|
| to_redact_dataframe_same_text = gr.State( |
| pd.DataFrame( |
| data={ |
| "page": list(), |
| "line": list(), |
| "word_text": list(), |
| "word_x0": list(), |
| "word_y0": list(), |
| "word_x1": list(), |
| "word_y1": list(), |
| "index": list(), |
| } |
| ) |
| ) |
|
|
| |
| selected_duplicate_data_row_index = gr.State(value=None) |
| full_duplicate_data_by_file = gr.State( |
| value={} |
| ) |
|
|
| |
| current_loop_page_number = gr.State(value=0) |
| page_break_return = gr.State(value=False) |
| latest_file_completed_num = gr.State(value=0) |
|
|
| |
| cost_code_dataframe_base = gr.State(value=pd.DataFrame()) |
|
|
| |
| updated_nlp_analyser_state = gr.State(list()) |
| tesseract_lang_data_file_path = gr.State(value="") |
|
|
| flag_value_placeholder = gr.State(value="") |
|
|
| |
|
|
| textract_output_found_checkbox = gr.Checkbox( |
| value=False, |
| label="Existing Textract output file found", |
| interactive=False, |
| visible=False, |
| ) |
| relevant_ocr_output_with_words_found_checkbox = gr.Checkbox( |
| value=False, |
| label="Existing local OCR output file found", |
| interactive=False, |
| visible=False, |
| ) |
|
|
| estimated_aws_costs_number = gr.Number( |
| label="Approximate AWS services cost ($)", |
| value=0, |
| visible=False, |
| precision=2, |
| ) |
| estimated_time_taken_number = gr.Number( |
| label="Approximate time for task (minutes)", |
| value=0, |
| visible=False, |
| precision=2, |
| ) |
|
|
| only_extract_text_radio = gr.Checkbox( |
| value=False, label="Only extract text (no redaction)", visible=False |
| ) |
|
|
| |
|
|
| job_name_textbox = gr.Textbox( |
| value="", label="whole_document Textract call", visible=False |
| ) |
| send_document_to_textract_api_btn = gr.Button( |
| "Analyse document with AWS Textract", variant="primary", visible=False |
| ) |
|
|
| job_id_textbox = gr.Textbox( |
| label="Latest job ID for whole_document document analysis", |
| value="", |
| visible=False, |
| ) |
| check_state_of_textract_api_call_btn = gr.Button( |
| "Check state of Textract document job and download", |
| variant="secondary", |
| visible=False, |
| ) |
| job_current_status = gr.Textbox( |
| value="", label="Analysis job current status", visible=False |
| ) |
| job_type_dropdown = gr.Dropdown( |
| value="document_text_detection", |
| choices=["document_text_detection", "document_analysis"], |
| label="Job type of Textract analysis job", |
| allow_custom_value=False, |
| visible=False, |
| ) |
| textract_job_detail_df = gr.Dataframe( |
| pd.DataFrame( |
| columns=[ |
| "job_id", |
| "file_name", |
| "job_type", |
| "signature_extraction", |
| "job_date_time", |
| ] |
| ), |
| label="Previous job details", |
| visible=False, |
| type="pandas", |
| wrap=True, |
| ) |
| selected_job_id_row = gr.Dataframe( |
| pd.DataFrame( |
| columns=[ |
| "job_id", |
| "file_name", |
| "job_type", |
| "signature_extraction", |
| "job_date_time", |
| ] |
| ), |
| label="Selected job id row", |
| visible=False, |
| type="pandas", |
| wrap=True, |
| ) |
| is_a_textract_api_call = gr.Checkbox( |
| value=False, label="is_this_a_textract_api_call", visible=False |
| ) |
| task_textbox = gr.Textbox( |
| value="redact", label="task", visible=False |
| ) |
| job_output_textbox = gr.Textbox( |
| value="", label="Textract call outputs", visible=False |
| ) |
| job_input_textbox = gr.Textbox( |
| value=TEXTRACT_JOBS_S3_INPUT_LOC, |
| label="Textract call outputs", |
| visible=False, |
| ) |
|
|
| textract_job_output_file = gr.File( |
| label="Textract job output files", height=FILE_INPUT_HEIGHT, visible=False |
| ) |
| convert_textract_outputs_to_ocr_results = gr.Button( |
| "Placeholder - Convert Textract job outputs to OCR results (needs relevant document file uploaded above)", |
| variant="secondary", |
| visible=False, |
| ) |
|
|
| |
| new_duplicate_search_annotation_object = gr.Dropdown( |
| value=None, |
| label="new_duplicate_search_annotation_object", |
| allow_custom_value=True, |
| visible=False, |
| ) |
|
|
| |
| annotate_zoom_in = gr.Button("Zoom in", visible=False) |
| annotate_zoom_out = gr.Button("Zoom out", visible=False) |
| clear_all_redactions_on_page_btn = gr.Button( |
| "Clear all redactions on page", visible=False |
| ) |
|
|
| |
| |
| |
|
|
| gr.Markdown(INTRO_TEXT) |
|
|
| if _DEPS_WARNING_MD: |
| gr.Markdown(_DEPS_WARNING_MD) |
|
|
| with gr.Accordion("API for agents (quickstart)", open=False, visible=False): |
| gr.Markdown(""" |
| If you are an LLM/agent calling this app programmatically, prefer the **short `gr.api` endpoints** and always use the schema from **`GET /gradio_api/info`**.\n |
| \n |
| **Universal protocol** (any endpoint):\n |
| - `GET /gradio_api/info`\n |
| - `POST /gradio_api/upload` (multipart field `files`) → internal paths like `/tmp/gradio_tmp/...`\n |
| - `POST /gradio_api/call/{api_name}` with `{"data":[...]}`\n |
| - poll `GET /gradio_api/call/{api_name}/{event_id}`\n |
| - download `GET /gradio_api/file={path}` (may 403 under some auth/proxies)\n |
| \n |
| **Prefer these short endpoints when present**:\n |
| - `/doc_redact` (PDF/JPG/PNG)\n |
| - `/review_apply` (PDF + `*_review_file.csv`)\n |
| - `/pdf_summarise` (PDF)\n |
| - `/tabular_redact` (CSV/XLSX/Parquet/DOCX)\n |
| \n |
| **Gotcha**: do not wrap server-internal upload paths (e.g. `/tmp/gradio_tmp/...`) in `gradio_client.handle_file()`; pass them as plain strings.\n |
| """) |
|
|
| |
| if SHOW_EXAMPLES: |
| gr.Markdown( |
| "### Try out general redaction tasks - click on an example below and then the 'Extract text and redact document' button:" |
| ) |
|
|
| available_examples = list() |
| example_labels = list() |
|
|
| |
| if os.path.exists(example_files[0]): |
| available_examples.append( |
| [ |
| [example_files[0]], |
| "Local model - selectable text", |
| "Local", |
| [], |
| CHOSEN_REDACT_ENTITIES, |
| CHOSEN_COMPREHEND_ENTITIES, |
| [example_files[0]], |
| example_files[0], |
| os.path.splitext(os.path.basename(example_files[0]))[0], |
| [], |
| [], |
| [], |
| [], |
| 2, |
| ] |
| ) |
| example_labels.append("PDF with selectable text redaction") |
|
|
| if os.path.exists(example_files[1]): |
| available_examples.append( |
| [ |
| [example_files[1]], |
| "Local OCR model - PDFs without selectable text", |
| "Local", |
| [], |
| CHOSEN_REDACT_ENTITIES, |
| CHOSEN_COMPREHEND_ENTITIES, |
| [example_files[1]], |
| example_files[1], |
| os.path.splitext(os.path.basename(example_files[1]))[0], |
| [], |
| [], |
| [], |
| [], |
| 1, |
| ] |
| ) |
| example_labels.append("Image redaction with local OCR") |
|
|
| if os.path.exists(example_files[2]): |
| available_examples.append( |
| [ |
| [example_files[2]], |
| "Local OCR model - PDFs without selectable text", |
| "Local", |
| [], |
| ["TITLES", "PERSON", "DATE_TIME"], |
| ["TITLES", "NAME", "DATE_TIME"], |
| [example_files[2]], |
| example_files[2], |
| os.path.splitext(os.path.basename(example_files[2]))[0], |
| [], |
| [], |
| [], |
| [], |
| 1, |
| ] |
| ) |
| example_labels.append( |
| "PDF redaction with custom entities (Titles, Person, Dates)" |
| ) |
|
|
| if os.path.exists(example_files[3]): |
| if SHOW_AWS_EXAMPLES: |
| available_examples.append( |
| [ |
| [example_files[3]], |
| "AWS Textract service - all PDF types", |
| "AWS Comprehend", |
| ["Extract handwriting", "Extract signatures"], |
| CHOSEN_REDACT_ENTITIES, |
| CHOSEN_COMPREHEND_ENTITIES, |
| [example_files[3]], |
| example_files[3], |
| os.path.splitext(os.path.basename(example_files[3]))[0], |
| [], |
| [], |
| [], |
| [], |
| 7, |
| ] |
| ) |
| example_labels.append( |
| "PDF redaction with AWS services and signature detection" |
| ) |
|
|
| |
| if ( |
| os.path.exists(example_files[3]) |
| and os.path.exists(example_files[4]) |
| and os.path.exists(example_files[5]) |
| ): |
| available_examples.append( |
| [ |
| [example_files[3]], |
| "Local OCR model - PDFs without selectable text", |
| "Local", |
| ["Extract handwriting", "Extract signatures"], |
| ["CUSTOM"], |
| ["CUSTOM"], |
| [example_files[3]], |
| example_files[3], |
| os.path.splitext(os.path.basename(example_files[3]))[0], |
| [example_files[4]], |
| [ |
| "Sister", |
| "Sister City", |
| "Sister Cities", |
| "Friendship City", |
| ], |
| [example_files[5]], |
| [ |
| 2, |
| 5, |
| ], |
| 7, |
| ], |
| ) |
| example_labels.append( |
| "PDF redaction with custom deny list and whole page redaction" |
| ) |
|
|
| |
| if RUN_ALL_EXAMPLES_THROUGH_AWS: |
| for ex in available_examples: |
| ex[1] = TEXTRACT_TEXT_EXTRACT_OPTION |
| if ex[2] != NO_REDACTION_PII_OPTION: |
| ex[2] = AWS_PII_OPTION |
|
|
| |
| if available_examples: |
|
|
| redaction_examples = gr.Examples( |
| examples=available_examples, |
| inputs=[ |
| in_doc_files, |
| text_extract_method_radio, |
| pii_identification_method_drop, |
| handwrite_signature_checkbox, |
| in_redact_entities, |
| in_redact_comprehend_entities, |
| prepared_pdf_state, |
| doc_full_file_name_textbox, |
| doc_file_name_no_extension_textbox, |
| in_deny_list, |
| in_deny_list_state, |
| in_fully_redacted_list, |
| in_fully_redacted_list_state, |
| total_pdf_page_count, |
| ], |
| outputs=[ |
| walkthrough_file_input, |
| walkthrough_in_redact_entities, |
| walkthrough_in_redact_comprehend_entities, |
| walkthrough_text_extract_method_radio, |
| walkthrough_local_ocr_method_radio, |
| walkthrough_handwrite_signature_checkbox, |
| walkthrough_pii_identification_method_drop, |
| walkthrough_allow_list_state, |
| walkthrough_deny_list_state, |
| walkthrough_fully_redacted_list_state, |
| in_redact_entities, |
| in_redact_comprehend_entities, |
| in_redact_llm_entities, |
| custom_llm_instructions_textbox, |
| ], |
| example_labels=example_labels, |
| fn=show_info_box_on_click, |
| run_on_click=True, |
| cache_examples=False, |
| ) |
|
|
| def _ocr_method_for_difficult_example(desired: str) -> str: |
| """Use *desired* for difficult-OCR examples if it exists on the local OCR radio; else first available fallback.""" |
| if desired in LOCAL_OCR_MODEL_OPTIONS: |
| return desired |
| chains = { |
| "vlm": ( |
| "vlm", |
| "inference-server", |
| "paddle", |
| "tesseract", |
| ), |
| "hybrid-paddle-vlm": ( |
| "hybrid-paddle-vlm", |
| "hybrid-paddle-inference-server", |
| "vlm", |
| "inference-server", |
| "paddle", |
| "tesseract", |
| ), |
| "paddle": ("paddle", "tesseract"), |
| "tesseract": ("tesseract",), |
| } |
| for candidate in chains.get(desired, ("tesseract",)): |
| if candidate in LOCAL_OCR_MODEL_OPTIONS: |
| return candidate |
| return "tesseract" |
|
|
| def _pii_method_for_difficult_example(desired: str) -> str: |
| """Map intended PII method to one present on pii_identification_method_drop (PII_DETECTION_MODELS).""" |
| if desired in PII_DETECTION_MODELS: |
| return desired |
| available = set(PII_DETECTION_MODELS) |
| chains = { |
| LOCAL_TRANSFORMERS_LLM_PII_OPTION: ( |
| LOCAL_TRANSFORMERS_LLM_PII_OPTION, |
| INFERENCE_SERVER_PII_OPTION, |
| AWS_LLM_PII_OPTION, |
| LOCAL_PII_OPTION, |
| NO_REDACTION_PII_OPTION, |
| ), |
| INFERENCE_SERVER_PII_OPTION: ( |
| INFERENCE_SERVER_PII_OPTION, |
| LOCAL_TRANSFORMERS_LLM_PII_OPTION, |
| AWS_LLM_PII_OPTION, |
| LOCAL_PII_OPTION, |
| NO_REDACTION_PII_OPTION, |
| ), |
| AWS_LLM_PII_OPTION: ( |
| AWS_LLM_PII_OPTION, |
| LOCAL_TRANSFORMERS_LLM_PII_OPTION, |
| INFERENCE_SERVER_PII_OPTION, |
| LOCAL_PII_OPTION, |
| NO_REDACTION_PII_OPTION, |
| ), |
| AWS_PII_OPTION: ( |
| AWS_PII_OPTION, |
| LOCAL_PII_OPTION, |
| NO_REDACTION_PII_OPTION, |
| ), |
| LOCAL_PII_OPTION: ( |
| LOCAL_PII_OPTION, |
| INFERENCE_SERVER_PII_OPTION, |
| LOCAL_TRANSFORMERS_LLM_PII_OPTION, |
| AWS_LLM_PII_OPTION, |
| AWS_PII_OPTION, |
| NO_REDACTION_PII_OPTION, |
| ), |
| NO_REDACTION_PII_OPTION: ( |
| NO_REDACTION_PII_OPTION, |
| LOCAL_PII_OPTION, |
| ), |
| } |
| for candidate in chains.get(desired, ()): |
| if candidate in available: |
| return candidate |
| return PII_DETECTION_MODELS[0] if PII_DETECTION_MODELS else desired |
|
|
| if SHOW_DIFFICULT_OCR_EXAMPLES: |
| gr.Markdown( |
| "### Test out the different OCR methods available. Click on an example below and then the 'Extract text and redact document' button:" |
| ) |
|
|
| available_ocr_examples = list() |
| ocr_example_labels = list() |
| if os.path.exists(ocr_example_files[0]): |
| available_ocr_examples.append( |
| [ |
| [ocr_example_files[0]], |
| "Local OCR model - PDFs without selectable text", |
| "Only extract text (no redaction)", |
| [], |
| [ocr_example_files[0]], |
| ocr_example_files[0], |
| os.path.splitext(os.path.basename(ocr_example_files[0]))[0], |
| 7, |
| 1, |
| 1, |
| _ocr_method_for_difficult_example("tesseract"), |
| CHOSEN_REDACT_ENTITIES, |
| CHOSEN_LLM_ENTITIES, |
| "", |
| ], |
| ) |
| ocr_example_labels.append("Baseline 'easy' document page") |
|
|
| available_ocr_examples.append( |
| [ |
| [ocr_example_files[0]], |
| "Local OCR model - PDFs without selectable text", |
| "Local", |
| ["Extract handwriting", "Extract signatures"], |
| [ocr_example_files[0]], |
| ocr_example_files[0], |
| os.path.splitext(os.path.basename(ocr_example_files[0]))[0], |
| 7, |
| 6, |
| 6, |
| _ocr_method_for_difficult_example("hybrid-paddle-vlm"), |
| CHOSEN_REDACT_ENTITIES + ["CUSTOM_VLM_SIGNATURE"], |
| CHOSEN_LLM_ENTITIES, |
| "", |
| ], |
| ) |
| ocr_example_labels.append("Scanned document page with signatures") |
|
|
| if os.path.exists(ocr_example_files[1]): |
| available_ocr_examples.append( |
| [ |
| [ocr_example_files[1]], |
| "Local OCR model - PDFs without selectable text", |
| "Only extract text (no redaction)", |
| ["Extract handwriting"], |
| [ocr_example_files[1]], |
| ocr_example_files[1], |
| os.path.splitext(os.path.basename(ocr_example_files[1]))[0], |
| 1, |
| 0, |
| 0, |
| _ocr_method_for_difficult_example("vlm"), |
| CHOSEN_REDACT_ENTITIES, |
| CHOSEN_LLM_ENTITIES, |
| "", |
| ], |
| ) |
| ocr_example_labels.append("Unclear text on handwritten note") |
|
|
| if os.path.exists(ocr_example_files[2]): |
| available_ocr_examples.append( |
| [ |
| [ocr_example_files[2]], |
| "Local OCR model - PDFs without selectable text", |
| "Local", |
| ["Extract handwriting"], |
| [ocr_example_files[2]], |
| ocr_example_files[2], |
| os.path.splitext(os.path.basename(ocr_example_files[2]))[0], |
| 1, |
| 0, |
| 0, |
| _ocr_method_for_difficult_example("hybrid-paddle-vlm"), |
| CHOSEN_REDACT_ENTITIES + ["CUSTOM_VLM_FACES"], |
| CHOSEN_LLM_ENTITIES, |
| "", |
| ], |
| ) |
| ocr_example_labels.append("CV with photo - face identification") |
|
|
| if os.path.exists(example_files[0]): |
| available_ocr_examples.append( |
| [ |
| [example_files[0]], |
| "Local model - selectable text", |
| LOCAL_TRANSFORMERS_LLM_PII_OPTION, |
| [], |
| [example_files[0]], |
| example_files[0], |
| os.path.splitext(os.path.basename(example_files[0]))[0], |
| 1, |
| 0, |
| 0, |
| _ocr_method_for_difficult_example("paddle"), |
| ["CUSTOM"], |
| ["CUSTOM"], |
| "Redact Lauren's name (always cover the full name if available), email addresses, and phone numbers with the label LAUREN. Redact university names with the label UNIVERSITY. Always include the full university name if available.", |
| ], |
| ) |
| ocr_example_labels.append("Example email LLM PII detection") |
|
|
| |
| if RUN_ALL_EXAMPLES_THROUGH_AWS: |
| for ex in available_ocr_examples: |
| ex[1] = TEXTRACT_TEXT_EXTRACT_OPTION |
| if ex[2] != NO_REDACTION_PII_OPTION: |
| ex[2] = AWS_LLM_PII_OPTION |
|
|
| for ex in available_ocr_examples: |
| ex[2] = _pii_method_for_difficult_example(ex[2]) |
|
|
| |
| if available_ocr_examples: |
|
|
| ocr_examples = gr.Examples( |
| examples=available_ocr_examples, |
| inputs=[ |
| in_doc_files, |
| text_extract_method_radio, |
| pii_identification_method_drop, |
| handwrite_signature_checkbox, |
| prepared_pdf_state, |
| doc_full_file_name_textbox, |
| doc_file_name_no_extension_textbox, |
| total_pdf_page_count, |
| page_min, |
| page_max, |
| local_ocr_method_radio, |
| in_redact_entities, |
| in_redact_llm_entities, |
| custom_llm_instructions_textbox, |
| ], |
| outputs=[ |
| walkthrough_file_input, |
| walkthrough_in_redact_entities, |
| walkthrough_text_extract_method_radio, |
| walkthrough_local_ocr_method_radio, |
| walkthrough_handwrite_signature_checkbox, |
| walkthrough_pii_identification_method_drop, |
| walkthrough_in_redact_llm_entities, |
| walkthrough_custom_llm_instructions_textbox, |
| in_redact_llm_entities, |
| custom_llm_instructions_textbox, |
| ], |
| example_labels=ocr_example_labels, |
| fn=show_info_box_on_click_ocr_examples, |
| run_on_click=True, |
| cache_examples=False, |
| ) |
|
|
| |
| |
| if not SHOW_QUICKSTART: |
| walkthrough_is_data_file = gr.State(value=False) |
| with gr.Column(visible=False): |
| walkthrough_list_accordion = gr.Accordion( |
| "Allow, deny, and full page redaction list settings", |
| open=False, |
| visible=False, |
| ) |
| with walkthrough_list_accordion: |
| walkthrough_deny_list_state.render() |
| walkthrough_allow_list_state.render() |
| walkthrough_fully_redacted_list_state.render() |
| walkthrough_file_input.render() |
| walkthrough_in_redact_entities.render() |
| walkthrough_in_redact_comprehend_entities.render() |
| walkthrough_in_redact_llm_entities.render() |
| walkthrough_custom_llm_instructions_textbox.render() |
| walkthrough_text_extract_method_radio.render() |
| walkthrough_local_ocr_method_radio.render() |
| walkthrough_handwrite_signature_checkbox.render() |
| walkthrough_pii_identification_method_drop.render() |
| walkthrough_pii_identification_method_drop_tabular.render() |
| walkthrough_anon_strategy.render() |
| walkthrough_do_initial_clean.render() |
| |
| walkthrough_excel_sheets = gr.Dropdown( |
| choices=["Choose Excel sheets to anonymise"], |
| multiselect=True, |
| label="Select Excel sheets that you want to anonymise (showing sheets present across all Excel files).", |
| visible=False, |
| allow_custom_value=True, |
| ) |
| walkthrough_colnames = gr.Dropdown( |
| choices=["Choose columns to anonymise"], |
| multiselect=True, |
| allow_custom_value=True, |
| label="Select columns that you want to anonymise (showing columns present across all files).", |
| visible=False, |
| ) |
| walkthrough_max_fuzzy_spelling_mistakes_num = gr.Number( |
| label="Maximum spelling mistakes for matching deny list terms (slows down PII detection).", |
| value=DEFAULT_FUZZY_SPELLING_MISTAKES_NUM, |
| minimum=0, |
| maximum=9, |
| precision=0, |
| visible=False, |
| ) |
| |
| if SHOW_COSTS: |
| walkthrough_textract_output_found_checkbox = gr.Checkbox( |
| value=False, |
| label="Existing Textract output file found", |
| interactive=False, |
| visible=False, |
| ) |
| walkthrough_relevant_ocr_output_with_words_found_checkbox = gr.Checkbox( |
| value=False, |
| label="Existing local OCR output file found", |
| interactive=False, |
| visible=False, |
| ) |
| walkthrough_total_pdf_page_count = gr.Number( |
| label="Total page count", |
| value=0, |
| visible=False, |
| interactive=False, |
| ) |
| walkthrough_estimated_aws_costs_number = gr.Number( |
| label="Approximate AWS services cost (£)", |
| value=0.00, |
| precision=2, |
| visible=False, |
| interactive=False, |
| ) |
| walkthrough_estimated_time_taken_number = gr.Number( |
| label="Approximate time for task (minutes)", |
| value=0, |
| visible=False, |
| precision=2, |
| interactive=False, |
| ) |
| |
| step_4_next_document_redact_btn = gr.Button( |
| "Redact document", variant="primary", visible=False |
| ) |
| step_4_next_tabular_redact_btn = gr.Button( |
| "Redact data files", variant="primary", visible=False |
| ) |
|
|
| with gr.Tabs() as tabs: |
| |
| |
| |
| if SHOW_QUICKSTART: |
| with gr.Tab("Quickstart", id=0): |
| |
| walkthrough_is_data_file = gr.State(value=False) |
| |
| walkthrough_last_data_file_keys = gr.State(value=None) |
|
|
| with gr.Walkthrough(selected=1) as walkthrough: |
| with gr.Step("Load document/data", id=1): |
|
|
| walkthrough_file_input.render() |
| with gr.Row(): |
| step_1_back_btn = gr.Button("Back", variant="secondary") |
|
|
| step_1_next_btn = gr.Button("Next", variant="primary") |
| with gr.Step("Choose text extraction (OCR) method", id=2): |
| |
| walkthrough_excel_sheets = gr.Dropdown( |
| choices=["Choose Excel sheets to anonymise"], |
| multiselect=True, |
| label="Select Excel sheets that you want to anonymise (showing sheets present across all Excel files).", |
| visible=False, |
| allow_custom_value=True, |
| ) |
| walkthrough_colnames = gr.Dropdown( |
| choices=["Choose columns to anonymise"], |
| multiselect=True, |
| allow_custom_value=True, |
| label="Select columns that you want to anonymise (showing columns present across all files).", |
| visible=False, |
| ) |
| |
| walkthrough_text_extract_method_radio.render() |
| |
| walkthrough_local_ocr_accordion = gr.Accordion( |
| "Local OCR method", |
| open=True, |
| visible=initial_local_ocr_visible, |
| ) |
| walkthrough_aws_textract_accordion = gr.Accordion( |
| "AWS Textract settings", |
| open=True, |
| visible=initial_aws_textract_visible, |
| ) |
| with walkthrough_local_ocr_accordion: |
| walkthrough_local_ocr_method_radio.render() |
| with walkthrough_aws_textract_accordion: |
| walkthrough_handwrite_signature_checkbox.render() |
|
|
| with gr.Row(): |
| step_2_back_btn = gr.Button("Back", variant="secondary") |
|
|
| step_2_next_btn = gr.Button("Next", variant="primary") |
| with gr.Step("Choose PII detection method", id=3): |
|
|
| with gr.Row(equal_height=True): |
| with gr.Column(scale=3): |
| walkthrough_redaction_method_dropdown = gr.Radio( |
| label="Choose redaction method", |
| choices=[ |
| "Extract text only", |
| "Redact all PII", |
| "Redact selected terms", |
| ], |
| value="Redact all PII", |
| interactive=True, |
| ) |
| with gr.Column(scale=1): |
| |
| walkthrough_redact_duplicate_pages_checkbox = gr.Checkbox( |
| info="Find and redact whole pages that contain duplicate text. See the 'Identify duplicate pages' tab for all settings and duplicate sentence/passage redaction.", |
| label="Redact duplicate pages", |
| value=False, |
| visible=True, |
| elem_id="redact_duplicate_pages_checkbox_walkthrough", |
| ) |
|
|
| |
| walkthrough_do_initial_clean.render() |
|
|
| walkthrough_pii_identification_method_drop.render() |
|
|
| walkthrough_in_redact_entities.render() |
|
|
| walkthrough_in_redact_comprehend_entities.render() |
|
|
| walkthrough_llm_entities_accordion = gr.Accordion( |
| "LLM PII identification model", |
| open=True, |
| visible=initial_is_llm_method, |
| ) |
| with walkthrough_llm_entities_accordion: |
| walkthrough_in_redact_llm_entities.render() |
| walkthrough_custom_llm_instructions_textbox.render() |
|
|
| |
| |
| with gr.Row(equal_height=True): |
| with gr.Column(scale=3): |
| walkthrough_list_accordion = gr.Accordion( |
| "Allow, deny, and full page redaction list settings", |
| open=True, |
| visible=True, |
| ) |
| with walkthrough_list_accordion: |
| with gr.Row(equal_height=True): |
| walkthrough_deny_list_state.render() |
| walkthrough_allow_list_state.render() |
| walkthrough_fully_redacted_list_state.render() |
|
|
| with gr.Column(scale=1): |
|
|
| walkthrough_max_fuzzy_spelling_mistakes_num = gr.Number( |
| label="Maximum spelling mistakes for matching deny list terms (slows down PII detection).", |
| value=DEFAULT_FUZZY_SPELLING_MISTAKES_NUM, |
| minimum=0, |
| maximum=9, |
| precision=0, |
| visible=True, |
| ) |
|
|
| |
|
|
| walkthrough_pii_identification_method_drop_tabular.render() |
|
|
| walkthrough_anon_strategy.render() |
|
|
| with gr.Row(): |
| step_3_back_btn = gr.Button("Back", variant="secondary") |
|
|
| step_3_next_btn = gr.Button("Next", variant="primary") |
| with gr.Step("Redact", id=4): |
| |
| with gr.Accordion( |
| "Redact only selected pages (default is all pages)", |
| open=False, |
| ): |
| with gr.Row(): |
| walkthrough_page_min = gr.Number( |
| value=DEFAULT_PAGE_MIN, |
| precision=0, |
| minimum=0, |
| maximum=9999, |
| label="Lowest page to redact (set to 0 to redact from the first page)", |
| ) |
| walkthrough_page_max = gr.Number( |
| value=DEFAULT_PAGE_MAX, |
| precision=0, |
| minimum=0, |
| maximum=9999, |
| label="Highest page to redact (set to 0 to redact to the last page)", |
| ) |
| with gr.Accordion( |
| "Costs and time taken estimates", |
| open=True, |
| visible=SHOW_COSTS, |
| ): |
| with gr.Row(): |
| |
| walkthrough_textract_output_found_checkbox = ( |
| gr.Checkbox( |
| value=False, |
| label="Existing Textract output file found", |
| interactive=False, |
| visible=SHOW_COSTS, |
| ) |
| ) |
| walkthrough_relevant_ocr_output_with_words_found_checkbox = gr.Checkbox( |
| value=False, |
| label="Existing local OCR output file found", |
| interactive=False, |
| visible=SHOW_COSTS, |
| ) |
| walkthrough_total_pdf_page_count = gr.Number( |
| label="Total page count", |
| value=0, |
| visible=SHOW_COSTS, |
| interactive=False, |
| ) |
| walkthrough_estimated_aws_costs_number = gr.Number( |
| label="Approximate AWS services cost (£)", |
| value=0.00, |
| precision=2, |
| visible=SHOW_COSTS, |
| interactive=False, |
| ) |
| walkthrough_estimated_time_taken_number = gr.Number( |
| label="Approximate time for task (minutes)", |
| value=0, |
| visible=SHOW_COSTS, |
| precision=2, |
| interactive=False, |
| ) |
|
|
| show_cost_codes = GET_COST_CODES or ENFORCE_COST_CODES |
| with gr.Accordion( |
| "Cost code selection", open=True, visible=show_cost_codes |
| ): |
| with gr.Row(): |
| |
|
|
| with gr.Column(): |
| with gr.Accordion( |
| "Existing cost codes table", |
| open=False, |
| visible=show_cost_codes, |
| ): |
| walkthrough_cost_code_dataframe = gr.Dataframe( |
| value=pd.DataFrame( |
| columns=["Cost code", "Description"] |
| ), |
| row_count=(0, "dynamic"), |
| label="Existing cost codes", |
| type="pandas", |
| interactive=True, |
| show_search="filter", |
| visible=show_cost_codes, |
| wrap=True, |
| max_height=200, |
| ) |
| walkthrough_reset_cost_code_dataframe_button = ( |
| gr.Button( |
| value="Reset code code table filter", |
| visible=show_cost_codes, |
| ) |
| ) |
| with gr.Column(): |
| walkthrough_cost_code_choice_drop = gr.Dropdown( |
| value=DEFAULT_COST_CODE, |
| label="Choose cost code for analysis", |
| choices=[DEFAULT_COST_CODE], |
| allow_custom_value=False, |
| visible=show_cost_codes, |
| ) |
| walkthrough_set_default_cost_code_button = ( |
| gr.Button( |
| value="Set default cost code", |
| visible=show_cost_codes |
| and SHOW_SET_DEFAULT_COST_CODE_BUTTON, |
| ) |
| ) |
|
|
| with gr.Row(): |
| step_4_back_btn = gr.Button("Back", variant="secondary") |
|
|
| step_4_next_document_redact_btn = gr.Button( |
| "Redact document", variant="primary", visible=True |
| ) |
| step_4_next_tabular_redact_btn = gr.Button( |
| "Redact data files", variant="primary", visible=False |
| ) |
|
|
| |
| |
| |
| step_1_back_btn.click( |
| lambda: gr.Walkthrough(selected=0), |
| outputs=walkthrough, |
| api_visibility="undocumented", |
| ) |
| |
| step_1_next_btn.click( |
| fn=route_walkthrough_files, |
| inputs=[walkthrough_file_input], |
| outputs=[ |
| in_doc_files, |
| in_data_files, |
| walkthrough_is_data_file, |
| walkthrough, |
| walkthrough_text_extract_method_radio, |
| walkthrough_local_ocr_accordion, |
| walkthrough_aws_textract_accordion, |
| ], |
| api_visibility="undocumented", |
| ) |
|
|
| |
|
|
| |
| |
| step_2_back_btn.click( |
| lambda: gr.Walkthrough(selected=1), |
| outputs=walkthrough, |
| api_visibility="undocumented", |
| ) |
|
|
| step_2_next_btn.click( |
| fn=handle_step_2_next, |
| inputs=[ |
| in_data_files, |
| walkthrough_is_data_file, |
| walkthrough_colnames, |
| walkthrough_excel_sheets, |
| walkthrough_text_extract_method_radio, |
| ], |
| outputs=[ |
| walkthrough_colnames, |
| walkthrough_excel_sheets, |
| in_colnames, |
| in_excel_sheets, |
| walkthrough_text_extract_method_radio, |
| walkthrough, |
| ], |
| api_visibility="undocumented", |
| ) |
|
|
| |
| |
| walkthrough_text_extract_method_radio.change( |
| fn=handle_text_extract_method_selection, |
| inputs=[walkthrough_text_extract_method_radio], |
| outputs=[ |
| walkthrough_local_ocr_accordion, |
| walkthrough_aws_textract_accordion, |
| ], |
| queue=False, |
| postprocess=False, |
| api_visibility="undocumented", |
| ) |
|
|
| |
| |
| in_data_files.change( |
| fn=update_step_2_on_data_file_upload, |
| inputs=[ |
| in_data_files, |
| walkthrough_is_data_file, |
| walkthrough_last_data_file_keys, |
| ], |
| outputs=[ |
| walkthrough_colnames, |
| walkthrough_excel_sheets, |
| walkthrough_last_data_file_keys, |
| ], |
| queue=False, |
| api_visibility="undocumented", |
| ) |
|
|
| |
| walkthrough_redaction_method_dropdown.change( |
| fn=handle_redaction_method_selection, |
| inputs=[ |
| walkthrough_redaction_method_dropdown, |
| walkthrough_pii_identification_method_drop, |
| ], |
| outputs=[ |
| walkthrough_pii_identification_method_drop, |
| walkthrough_in_redact_entities, |
| walkthrough_in_redact_comprehend_entities, |
| walkthrough_llm_entities_accordion, |
| walkthrough_in_redact_llm_entities, |
| walkthrough_list_accordion, |
| walkthrough_max_fuzzy_spelling_mistakes_num, |
| ], |
| api_visibility="undocumented", |
| ) |
|
|
| |
| walkthrough_pii_identification_method_drop.change( |
| fn=handle_pii_method_selection, |
| inputs=[walkthrough_pii_identification_method_drop], |
| outputs=[ |
| walkthrough_in_redact_entities, |
| walkthrough_in_redact_comprehend_entities, |
| walkthrough_llm_entities_accordion, |
| ], |
| queue=False, |
| postprocess=False, |
| api_visibility="undocumented", |
| ) |
|
|
| |
| |
| |
| walkthrough_pii_identification_method_drop_tabular.change( |
| fn=handle_pii_method_selection_tabular, |
| inputs=[walkthrough_pii_identification_method_drop_tabular], |
| outputs=[ |
| walkthrough_in_redact_entities, |
| walkthrough_in_redact_comprehend_entities, |
| walkthrough_llm_entities_accordion, |
| ], |
| queue=False, |
| postprocess=False, |
| api_visibility="undocumented", |
| ) |
|
|
| |
| walkthrough_is_data_file.change( |
| fn=update_step_3_tabular_visibility, |
| inputs=[walkthrough_is_data_file], |
| outputs=[ |
| walkthrough_local_ocr_method_radio, |
| walkthrough_pii_identification_method_drop, |
| walkthrough_fully_redacted_list_state, |
| walkthrough_redact_duplicate_pages_checkbox, |
| walkthrough_pii_identification_method_drop_tabular, |
| walkthrough_anon_strategy, |
| walkthrough_do_initial_clean, |
| ], |
| api_visibility="undocumented", |
| ) |
|
|
| |
| step_3_back_btn.click( |
| lambda: gr.Walkthrough(selected=2), |
| outputs=walkthrough, |
| api_visibility="undocumented", |
| ) |
|
|
| step_3_next_btn.click( |
| fn=handle_step_3_next, |
| inputs=[ |
| walkthrough_text_extract_method_radio, |
| walkthrough_local_ocr_method_radio, |
| walkthrough_handwrite_signature_checkbox, |
| walkthrough_pii_identification_method_drop, |
| walkthrough_in_redact_entities, |
| walkthrough_in_redact_comprehend_entities, |
| walkthrough_in_redact_llm_entities, |
| walkthrough_custom_llm_instructions_textbox, |
| walkthrough_deny_list_state, |
| walkthrough_allow_list_state, |
| walkthrough_fully_redacted_list_state, |
| walkthrough_pii_identification_method_drop_tabular, |
| walkthrough_anon_strategy, |
| walkthrough_do_initial_clean, |
| walkthrough_redact_duplicate_pages_checkbox, |
| walkthrough_max_fuzzy_spelling_mistakes_num, |
| ], |
| outputs=[ |
| text_extract_method_radio, |
| local_ocr_method_radio, |
| handwrite_signature_checkbox, |
| pii_identification_method_drop, |
| in_redact_entities, |
| in_redact_comprehend_entities, |
| in_redact_llm_entities, |
| custom_llm_instructions_textbox, |
| in_deny_list_state, |
| in_allow_list_state, |
| in_fully_redacted_list_state, |
| pii_identification_method_drop_tabular, |
| anon_strategy, |
| do_initial_clean, |
| redact_duplicate_pages_checkbox, |
| walkthrough, |
| max_fuzzy_spelling_mistakes_num, |
| ], |
| api_visibility="undocumented", |
| ) |
|
|
| |
| if GET_COST_CODES or ENFORCE_COST_CODES: |
| from tools.helper_functions import reset_base_dataframe |
|
|
| walkthrough_reset_cost_code_dataframe_button.click( |
| reset_base_dataframe, |
| inputs=[cost_code_dataframe_base], |
| outputs=[walkthrough_cost_code_dataframe], |
| api_visibility="undocumented", |
| ) |
|
|
| def _walkthrough_save_default_cost_code(sh, choice, df, output_folder): |
| msg = save_default_cost_code_for_session( |
| sh, choice, df, output_folder |
| ) |
| gr.Info(msg) |
|
|
| walkthrough_set_default_cost_code_button.click( |
| _walkthrough_save_default_cost_code, |
| inputs=[ |
| session_hash_textbox, |
| walkthrough_cost_code_choice_drop, |
| walkthrough_cost_code_dataframe, |
| input_folder_textbox, |
| ], |
| outputs=[], |
| api_visibility="undocumented", |
| ) |
|
|
| |
| walkthrough_is_data_file.change( |
| fn=update_step_4_visibility, |
| inputs=[walkthrough_is_data_file], |
| outputs=[ |
| step_4_next_document_redact_btn, |
| step_4_next_tabular_redact_btn, |
| ], |
| api_visibility="undocumented", |
| ) |
|
|
| |
|
|
| step_4_back_btn.click( |
| lambda: gr.Walkthrough(selected=3), |
| outputs=walkthrough, |
| api_visibility="undocumented", |
| ) |
|
|
| |
|
|
| |
| |
| |
| with gr.Tab("Redact PDFs/images", id=1): |
|
|
| if SHOW_QUICKSTART: |
| show_main_redaction_accordion = False |
| else: |
| show_main_redaction_accordion = True |
|
|
| with gr.Accordion("Redaction settings", open=show_main_redaction_accordion): |
| in_doc_files.render() |
| textract_text = "" |
|
|
| if ( |
| SHOW_AWS_TEXT_EXTRACTION_OPTIONS |
| and DEFAULT_TEXT_EXTRACTION_MODEL == TEXTRACT_TEXT_EXTRACT_OPTION |
| ): |
| textract_text = ". AWS Textract has a cost per page - $1.50 without signature detection (default), $3.50 per 1,000 pages with signature detection. Enable this in the tab below (AWS Textract signature detection)." |
| else: |
| textract_text = "" |
|
|
| with gr.Accordion( |
| label=f"Change text extraction settings{textract_text}".strip(), |
| open=EXTRACTION_AND_PII_OPTIONS_OPEN_BY_DEFAULT, |
| ): |
|
|
| with gr.Accordion( |
| "Change text extraction OCR method", |
| open=True, |
| visible=SHOW_OCR_GUI_OPTIONS, |
| ): |
| text_extract_method_radio.render() |
| |
| |
| local_ocr_accordion = gr.Accordion( |
| label="Change local OCR model", |
| open=EXTRACTION_AND_PII_OPTIONS_OPEN_BY_DEFAULT, |
| visible=( |
| DEFAULT_TEXT_EXTRACTION_MODEL |
| == LOCAL_OCR_MODEL_TEXT_EXTRACT_OPTION |
| ), |
| ) |
| with local_ocr_accordion: |
| local_ocr_method_radio.render() |
|
|
| inference_server_vlm_accordion = gr.Accordion( |
| "Inference Server VLM Model (for inference-server OCR only)", |
| open=False, |
| visible=( |
| SHOW_INFERENCE_SERVER_VLM_MODEL_OPTIONS |
| and DEFAULT_TEXT_EXTRACTION_MODEL |
| == LOCAL_OCR_MODEL_TEXT_EXTRACT_OPTION |
| ), |
| ) |
| with inference_server_vlm_accordion: |
| inference_server_vlm_model_textbox.render() |
|
|
| aws_textract_signature_accordion = gr.Accordion( |
| "Enable AWS Textract signature detection (default is off)", |
| open=False, |
| visible=( |
| SHOW_AWS_TEXT_EXTRACTION_OPTIONS |
| and DEFAULT_TEXT_EXTRACTION_MODEL |
| == TEXTRACT_TEXT_EXTRACT_OPTION |
| ), |
| ) |
| with aws_textract_signature_accordion: |
| handwrite_signature_checkbox.render() |
|
|
| if ( |
| SHOW_AWS_PII_DETECTION_OPTIONS |
| and DEFAULT_PII_DETECTION_MODEL == AWS_PII_OPTION |
| ): |
| comprehend_text = ( |
| ". AWS Comprehend has a small cost per character processed." |
| ) |
| else: |
| comprehend_text = "" |
|
|
| with gr.Accordion( |
| f"Change PII identification method{comprehend_text}".strip(), |
| open=True, |
| visible=SHOW_PII_IDENTIFICATION_OPTIONS, |
| ): |
| with gr.Row(equal_height=True): |
| with gr.Column(scale=3): |
| redaction_method_radio.render() |
| with gr.Column(scale=1): |
| |
| redact_duplicate_pages_checkbox.render() |
| with gr.Row(equal_height=True): |
| pii_identification_method_drop.render() |
|
|
| entity_types_to_redact_accordion = gr.Accordion( |
| "Select entity types to redact", open=True |
| ) |
| with entity_types_to_redact_accordion: |
| |
| |
| default_pii_method = DEFAULT_PII_DETECTION_MODEL |
| is_no_redaction_init = ( |
| default_pii_method == NO_REDACTION_PII_OPTION |
| ) |
| show_local_entities_init = not is_no_redaction_init and ( |
| default_pii_method == LOCAL_PII_OPTION |
| ) |
| show_comprehend_entities_init = ( |
| not is_no_redaction_init |
| and (default_pii_method == AWS_PII_OPTION) |
| ) |
| is_llm_method_init = not is_no_redaction_init and ( |
| default_pii_method == LOCAL_TRANSFORMERS_LLM_PII_OPTION |
| or default_pii_method == INFERENCE_SERVER_PII_OPTION |
| or default_pii_method == AWS_LLM_PII_OPTION |
| ) |
|
|
| in_redact_entities.render() |
| in_redact_comprehend_entities.render() |
| in_redact_llm_entities.render() |
|
|
| custom_llm_entities_accordion = gr.Accordion( |
| "Custom instructions for LLM-based entity detection", |
| open=True, |
| visible=initial_is_llm_method, |
| ) |
| with custom_llm_entities_accordion: |
| custom_llm_instructions_textbox.render() |
|
|
| with gr.Row(equal_height=True): |
| terms_accordion = gr.Accordion( |
| "Terms to always include or exclude in redactions, and whole page redaction. To add many terms at once, you can load in a file on the Redaction Settings tab.", |
| open=True, |
| ) |
| with terms_accordion: |
| with gr.Row(equal_height=True): |
| with gr.Column(scale=3): |
| with gr.Row(equal_height=True): |
| in_allow_list_state.render() |
| in_deny_list_state.render() |
| in_fully_redacted_list_state.render() |
| with gr.Column(scale=1): |
| max_fuzzy_spelling_mistakes_num.render() |
|
|
| if SHOW_COSTS: |
| with gr.Accordion( |
| "Estimated costs and time taken. Note that costs shown only include direct usage of AWS services and do not include other running costs (e.g. storage, run-time costs). Costs are an upper bound - if there are many PDF pages with selectable text in your document, then they may be skipped in practice if you are not extracting signatures.", |
| open=True, |
| visible=True, |
| ): |
| with gr.Row(equal_height=True): |
| with gr.Column(scale=1): |
| textract_output_found_checkbox = gr.Checkbox( |
| value=False, |
| label="Existing Textract output file found", |
| interactive=False, |
| visible=True, |
| ) |
| relevant_ocr_output_with_words_found_checkbox = ( |
| gr.Checkbox( |
| value=False, |
| label="Existing local OCR output file found", |
| interactive=False, |
| visible=True, |
| ) |
| ) |
| with gr.Column(scale=4): |
| with gr.Row(equal_height=True): |
| total_pdf_page_count.render() |
| estimated_aws_costs_number = gr.Number( |
| label="Approximate AWS services cost (£)", |
| value=0.00, |
| precision=2, |
| visible=True, |
| interactive=False, |
| ) |
| estimated_time_taken_number = gr.Number( |
| label="Approximate time for task (minutes)", |
| value=0, |
| visible=True, |
| precision=2, |
| interactive=False, |
| ) |
| else: |
| total_pdf_page_count.render() |
|
|
| if GET_COST_CODES or ENFORCE_COST_CODES: |
| with gr.Accordion( |
| "Assign task to cost code", |
| open=COST_CODE_ACCORDION_OPEN, |
| visible=True, |
| ): |
| gr.Markdown( |
| "Please ensure that you have approval from your budget holder before using this app for redaction tasks that incur a cost." |
| ) |
| with gr.Row(): |
| with gr.Column(): |
| with gr.Accordion( |
| "View and filter cost code table", |
| open=False, |
| visible=True, |
| ): |
| cost_code_dataframe.render() |
| reset_cost_code_dataframe_button.render() |
| with gr.Column(): |
| cost_code_choice_drop.render() |
| set_default_cost_code_button.render() |
| else: |
| cost_code_dataframe.render() |
| cost_code_choice_drop.render() |
| reset_cost_code_dataframe_button.render() |
| set_default_cost_code_button.render() |
|
|
| if SHOW_WHOLE_DOCUMENT_TEXTRACT_CALL_OPTIONS: |
| with gr.Accordion( |
| "Submit whole document to AWS Textract API (quickest text extraction for large documents)", |
| open=False, |
| visible=True, |
| ): |
| with gr.Row(equal_height=True): |
| gr.Markdown( |
| """Document will be submitted to AWS Textract API service to extract all text in the document. Processing will take place on (secure) AWS servers, and outputs will be stored on S3 for up to 7 days. To download the results, click 'Check status' below and they will be downloaded if ready.""" |
| ) |
| with gr.Row(equal_height=True): |
| send_document_to_textract_api_btn = gr.Button( |
| "Analyse document with AWS Textract API call", |
| variant="primary", |
| visible=True, |
| ) |
| with gr.Row(equal_height=False): |
| with gr.Column(scale=2): |
| textract_job_detail_df = gr.Dataframe( |
| pd.DataFrame( |
| columns=[ |
| "job_id", |
| "file_name", |
| "job_type", |
| "signature_extraction", |
| "job_date_time", |
| ] |
| ), |
| label="Previous job details", |
| visible=True, |
| type="pandas", |
| wrap=True, |
| ) |
| with gr.Column(scale=1): |
| job_id_textbox = gr.Textbox( |
| label="Job ID to check status", |
| value="", |
| visible=True, |
| lines=2, |
| ) |
| check_state_of_textract_api_call_btn = gr.Button( |
| "Check status of Textract job and download", |
| variant="secondary", |
| visible=True, |
| ) |
| with gr.Row(): |
| with gr.Column(): |
| textract_job_output_file = gr.File( |
| label="Textract job output files", |
| height=100, |
| visible=True, |
| ) |
| with gr.Column(): |
| job_current_status = gr.Textbox( |
| value="", |
| label="Analysis job current status", |
| visible=True, |
| ) |
| convert_textract_outputs_to_ocr_results = gr.Button( |
| "Convert Textract job outputs to OCR results", |
| variant="secondary", |
| visible=True, |
| ) |
|
|
| with gr.Accordion(label="Extract text and redact document", open=True): |
|
|
| document_redact_btn = gr.Button( |
| "Extract text and redact document", |
| variant="secondary", |
| scale=4, |
| elem_id="document-redact-btn", |
| ) |
|
|
| with gr.Row(equal_height=True): |
| with gr.Column(scale=1): |
| redaction_output_summary_textbox = gr.Textbox( |
| label="Output summary", scale=1, lines=4 |
| ) |
| with gr.Column(scale=2): |
| output_file = gr.File( |
| label="Output files", scale=2 |
| ) |
|
|
| go_to_review_redactions_tab_btn = gr.Button( |
| "Review and modify redactions", variant="primary", scale=1 |
| ) |
|
|
| |
| pdf_feedback_title = gr.Markdown( |
| value="## Please give feedback", visible=False |
| ) |
| pdf_feedback_radio = gr.Radio( |
| label="Quality of results", |
| choices=["The results were good", "The results were not good"], |
| visible=False, |
| ) |
| pdf_further_details_text = gr.Textbox( |
| label="Please give more detailed feedback about the results:", |
| visible=False, |
| ) |
| pdf_submit_feedback_btn = gr.Button(value="Submit feedback", visible=False) |
|
|
| |
| |
| |
| with gr.Tab("Review redactions", id=2): |
|
|
| with gr.Accordion( |
| label="Upload PDFs/images and OCR results for review", open=True |
| ): |
| with gr.Row(equal_height=True): |
| with gr.Column(scale=2): |
| input_pdf_for_review = gr.File( |
| label="1. Upload original or previously redacted '..._for_review.pdf' document to review redactions.", |
| file_count="multiple", |
| height=FILE_INPUT_HEIGHT, |
| ) |
| upload_pdf_for_review_btn = gr.Button( |
| "1. Load in original PDF or review PDF with redactions", |
| variant="secondary", |
| visible=False, |
| ) |
| with gr.Column(scale=1): |
| input_review_files = gr.File( |
| label="2. An '...ocr_results_with_words' file can be uploaded here for searching text and making new redactions.", |
| file_count="multiple", |
| height=FILE_INPUT_HEIGHT, |
| ) |
| upload_review_files_btn = gr.Button( |
| "2. Upload review or OCR csv files", |
| variant="secondary", |
| visible=False, |
| ) |
|
|
| with gr.Accordion(label="View and edit review table data", open=False): |
| review_file_df = gr.Dataframe( |
| value=pd.DataFrame(), |
| headers=[ |
| "image", |
| "page", |
| "label", |
| "color", |
| "xmin", |
| "ymin", |
| "xmax", |
| "ymax", |
| "id", |
| "text", |
| ], |
| row_count=(0, "dynamic"), |
| label="Review file data", |
| visible=True, |
| type="pandas", |
| max_chars=30, |
| wrap=False, |
| show_search="search", |
| column_count=10, |
| column_widths=[ |
| "10%", |
| "5%", |
| "10%", |
| "15%", |
| "8.75%", |
| "8.75%", |
| "8.75%", |
| "8.75%", |
| "10%", |
| "15%", |
| ], |
| static_columns=[0, 1, 8], |
| buttons=["fullscreen", "copy"], |
| |
| ) |
| with gr.Row(): |
| review_file_df_update_btn = gr.Button( |
| "Update review file data", variant="secondary" |
| ) |
|
|
| with gr.Row(): |
| with gr.Column(scale=2): |
| with gr.Row(equal_height=True): |
| annotation_last_page_button = gr.Button( |
| "Previous page", scale=4 |
| ) |
| annotate_current_page = gr.Number( |
| value=1, |
| label="Current page", |
| precision=0, |
| scale=2, |
| min_width=50, |
| minimum=1, |
| ) |
| annotate_max_pages = gr.Number( |
| value=1, |
| label="Total pages", |
| precision=0, |
| interactive=False, |
| scale=2, |
| min_width=50, |
| minimum=1, |
| ) |
| annotation_next_page_button = gr.Button("Next page", scale=4) |
|
|
| zoom_str = str(annotator_zoom_number) + "%" |
|
|
| annotator = image_annotator( |
| label="Modify redaction boxes", |
| label_list=["Redaction"], |
| label_colors=[(0, 0, 0)], |
| show_label=False, |
| height=zoom_str, |
| width=zoom_str, |
| boxes_alpha=0.1, |
| box_min_size=1, |
| box_selected_thickness=2, |
| handle_size=4, |
| sources=None, |
| show_clear_button=False, |
| show_share_button=False, |
| show_remove_button=False, |
| handles_cursor=True, |
| interactive=True, |
| enable_keyboard_shortcuts=True, |
| use_default_label=False, |
| image_type="numpy", |
| ) |
|
|
| with gr.Row(equal_height=True): |
| annotation_last_page_button_bottom = gr.Button( |
| "Previous page", scale=4 |
| ) |
| annotate_current_page_bottom = gr.Number( |
| value=1, |
| label="Current page", |
| precision=0, |
| interactive=True, |
| scale=2, |
| min_width=50, |
| minimum=1, |
| ) |
| annotate_max_pages_bottom = gr.Number( |
| value=1, |
| label="Total pages", |
| precision=0, |
| interactive=False, |
| scale=2, |
| min_width=50, |
| minimum=1, |
| ) |
| annotation_next_page_button_bottom = gr.Button( |
| "Next page", scale=4 |
| ) |
|
|
| with gr.Accordion( |
| label="Export image overview of page OCR results or redaction boxes", |
| open=False, |
| ): |
| gr.Markdown( |
| "Save a single-page JPEG of the current annotator view: " |
| "page image with hollow redaction outlines (colour and line " |
| "style by label) and a legend in the top-right." |
| ) |
| with gr.Row(equal_height=True): |
| with gr.Column(): |
| export_review_ocr_visualisation_btn = gr.Button( |
| "Export OCR visualisation image" |
| ) |
| with gr.Column(): |
| export_redaction_overlay_btn = gr.Button( |
| "Export redaction overlay image" |
| ) |
| with gr.Row(): |
| redaction_overlay_output_file = gr.File( |
| label="OCR/Redaction overlay output", |
| interactive=False, |
| file_count="single", |
| file_types=[".jpg"], |
| ) |
|
|
| with gr.Column(scale=1): |
| annotation_button_apply = gr.Button( |
| "Apply revised redactions to PDF", variant="primary" |
| ) |
| update_current_page_redactions_btn = gr.Button( |
| value="Save changes on current page to file", |
| variant="secondary", |
| ) |
|
|
| with gr.Tab("Modify redactions", id=3): |
| with gr.Accordion("Search suggested redactions", open=True): |
| with gr.Row(equal_height=True): |
| recogniser_entity_dropdown = gr.Dropdown( |
| label="Redaction category", |
| value="ALL", |
| allow_custom_value=True, |
| ) |
| page_entity_dropdown = gr.Dropdown( |
| label="Page", value="ALL", allow_custom_value=True |
| ) |
| text_entity_dropdown = gr.Dropdown( |
| label="Text", value="ALL", allow_custom_value=True |
| ) |
| reset_dropdowns_btn = gr.Button(value="Reset filters") |
| recogniser_entity_dataframe = gr.Dataframe( |
| pd.DataFrame( |
| data={ |
| "page": list(), |
| "label": list(), |
| "text": list(), |
| "id": list(), |
| } |
| ), |
| row_count=(0, "dynamic"), |
| type="pandas", |
| label="Click table row to select and go to page", |
| headers=["page", "label", "text", "id"], |
| column_widths=["10%", "40%", "40%", "10%"], |
| wrap=False, |
| max_height=400, |
| show_search="filter", |
| ) |
|
|
| with gr.Row(equal_height=True): |
| exclude_selected_btn = gr.Button( |
| value="Exclude all redactions in table" |
| ) |
|
|
| with gr.Accordion("Selected redaction row", open=True): |
| selected_entity_dataframe_row = gr.Dataframe( |
| pd.DataFrame( |
| data={ |
| "page": list(), |
| "label": list(), |
| "text": list(), |
| "id": list(), |
| } |
| ), |
| row_count=(0, "dynamic"), |
| type="pandas", |
| visible=True, |
| headers=["page", "label", "text", "id"], |
| wrap=True, |
| ) |
| exclude_selected_row_btn = gr.Button( |
| value="Exclude specific redaction row" |
| ) |
| exclude_text_with_same_as_selected_row_btn = gr.Button( |
| value="Exclude all redactions with same text as selected row" |
| ) |
|
|
| undo_last_removal_btn = gr.Button( |
| value="Undo last element removal", variant="primary" |
| ) |
|
|
| with gr.Tab("Search text and redact", id=7): |
| with gr.Accordion("Search text", open=True): |
| with gr.Row(equal_height=True): |
| page_entity_dropdown_redaction = gr.Dropdown( |
| label="Page", |
| value="1", |
| allow_custom_value=True, |
| scale=4, |
| ) |
| reset_dropdowns_btn_new = gr.Button( |
| value="Reset page filter", scale=1 |
| ) |
|
|
| with gr.Row(equal_height=True): |
| multi_word_search_text = gr.Textbox( |
| label="Multi-word text search (regex enabled below)", |
| value="", |
| scale=4, |
| ) |
| multi_word_search_text_btn = gr.Button( |
| value="Search", scale=1 |
| ) |
|
|
| with gr.Accordion("Search options", open=False): |
| similarity_search_score_minimum = gr.Number( |
| value=1.0, |
| minimum=0.4, |
| maximum=1.0, |
| label="Minimum similarity score for match (max=1)", |
| visible=False, |
| ) |
|
|
| with gr.Row(): |
| with gr.Column(): |
| new_redaction_text_label = gr.Textbox( |
| label="Label for new redactions", |
| value="Redaction", |
| ) |
| colour_label = gr.ColorPicker( |
| label="Colour for labels", |
| value=CUSTOM_BOX_COLOUR, |
| ) |
| with gr.Column(): |
| use_regex_search = gr.Checkbox( |
| label="Enable regex pattern matching", |
| value=False, |
| info="When enabled, the search text will be treated as a regular expression pattern instead of literal text", |
| ) |
|
|
| all_page_line_level_ocr_results_with_words_df = ( |
| gr.Dataframe( |
| pd.DataFrame( |
| data={ |
| "page": list(), |
| "line": list(), |
| "word_text": list(), |
| "index": list(), |
| } |
| ), |
| row_count=(0, "dynamic"), |
| type="pandas", |
| label="Click table row to select and go to page", |
| headers=[ |
| "page", |
| "line", |
| "word_text", |
| "index", |
| ], |
| wrap=False, |
| max_height=400, |
| show_search="filter", |
| column_widths=["15%", "15%", "55%", "15%"], |
| ) |
| ) |
|
|
| redact_selected_btn = gr.Button( |
| value="Redact all text in table" |
| ) |
| reset_ocr_with_words_df_btn = gr.Button( |
| value="Reset table to original state" |
| ) |
|
|
| with gr.Accordion("Selected row", open=True): |
| selected_entity_dataframe_row_redact = gr.Dataframe( |
| pd.DataFrame( |
| data={ |
| "page": list(), |
| "line": list(), |
| "word_text": list(), |
| "index": list(), |
| } |
| ), |
| row_count=(0, "dynamic"), |
| type="pandas", |
| headers=[ |
| "page", |
| "line", |
| "word_text", |
| "index", |
| ], |
| wrap=False, |
| column_widths=["15%", "15%", "55%", "15%"], |
| ) |
| redact_selected_row_btn = gr.Button( |
| value="Redact specific text row" |
| ) |
| redact_text_with_same_as_selected_row_btn = gr.Button( |
| value="Redact all words with same text as selected row" |
| ) |
|
|
| undo_last_redact_btn = gr.Button( |
| value="Undo latest redaction", variant="primary" |
| ) |
| with gr.Tab("View text", id=10): |
| with gr.Accordion("View extracted text", open=True): |
| all_page_line_level_ocr_results_df = gr.Dataframe( |
| value=pd.DataFrame(columns=["page", "line", "text"]), |
| headers=["page", "line", "text"], |
| row_count=(0, "dynamic"), |
| label="All OCR results", |
| visible=True, |
| type="pandas", |
| wrap=True, |
| show_label=False, |
| buttons=["copy", "fullscreen"], |
| column_widths=["15%", "15%", "70%"], |
| max_height=800, |
| show_search="search", |
| ) |
| reset_all_ocr_results_btn = gr.Button( |
| value="Reset OCR output table filter" |
| ) |
| selected_ocr_dataframe_row = gr.Dataframe( |
| pd.DataFrame( |
| data={ |
| "page": list(), |
| "line": list(), |
| "text": list(), |
| } |
| ), |
| column_count=3, |
| type="pandas", |
| visible=False, |
| headers=["page", "line", "text"], |
| wrap=True, |
| ) |
|
|
| with gr.Accordion( |
| "Convert review files loaded above to Adobe format, or convert from Adobe format to review file", |
| open=False, |
| ): |
| convert_review_file_to_adobe_btn = gr.Button( |
| "Convert review file to Adobe comment format", variant="primary" |
| ) |
| adobe_review_files_out = gr.File( |
| label="Output Adobe comment files will appear here. If converting from .xfdf file to review_file.csv, upload the original pdf with the xfdf file here then click Convert below.", |
| file_count="multiple", |
| file_types=[".csv", ".xfdf", ".pdf"], |
| ) |
| convert_adobe_to_review_file_btn = gr.Button( |
| "Convert Adobe .xfdf comment file to review_file.csv", |
| variant="secondary", |
| ) |
|
|
| |
| |
| |
| with gr.Tab(label="Identify duplicate pages", id=4): |
| gr.Markdown( |
| "Search for duplicate pages/subdocuments in your ocr_output files. By default, this function will search for duplicate text across multiple pages, and then join consecutive matching pages together into matched 'subdocuments'. The results can be reviewed below, false positives removed, and then the verified results applied to a document you have loaded in on the 'Review redactions' tab." |
| ) |
|
|
| |
| if SHOW_EXAMPLES: |
| gr.Markdown( |
| "### Try an example - Click on an example below and then the 'Identify duplicate pages/subdocuments' button:" |
| ) |
|
|
| |
| duplicate_example_file = _example_data_path( |
| "example_outputs/doubled_output_joined.pdf_ocr_output.csv" |
| ) |
|
|
| if os.path.exists(duplicate_example_file): |
|
|
| duplicate_examples = gr.Examples( |
| examples=[ |
| [ |
| [duplicate_example_file], |
| 0.95, |
| 10, |
| True, |
| ], |
| [ |
| [duplicate_example_file], |
| 0.95, |
| 3, |
| False, |
| ], |
| ], |
| inputs=[ |
| in_duplicate_pages, |
| duplicate_threshold_input, |
| min_word_count_input, |
| combine_page_text_for_duplicates_bool, |
| ], |
| example_labels=[ |
| "Find duplicate pages of text in document OCR outputs", |
| "Find duplicate text lines in document OCR outputs", |
| ], |
| fn=show_duplicate_info_box_on_click, |
| run_on_click=True, |
| cache_examples=False, |
| ) |
|
|
| with gr.Accordion("Step 1: Configure and run analysis", open=True): |
| in_duplicate_pages.render() |
|
|
| with gr.Accordion("Duplicate matching parameters", open=False): |
| with gr.Row(): |
| duplicate_threshold_input.render() |
|
|
| min_word_count_input.render() |
|
|
| combine_page_text_for_duplicates_bool.render() |
|
|
| gr.Markdown("#### Matching Strategy") |
| greedy_match_input = gr.Checkbox( |
| label="Combine consecutive matches into a single match (subdocument match)", |
| value=USE_GREEDY_DUPLICATE_DETECTION, |
| info="If checked, combines the longest possible sequence of consecutive matching pages into a single match.", |
| ) |
| min_consecutive_pages_input = gr.Slider( |
| minimum=1, |
| maximum=20, |
| value=DEFAULT_MIN_CONSECUTIVE_PAGES, |
| step=1, |
| label="Minimum consecutive matches to be considered a match", |
| info="A text match will need to have this minimum number of consecutive matches to be considered a match. E.g. if set to 3 for page matching, the text for three consecutive pages will need to be the same in two places in the document to be considered a match.", |
| visible=not USE_GREEDY_DUPLICATE_DETECTION, |
| ) |
|
|
| find_duplicate_pages_btn = gr.Button( |
| value="Identify duplicate pages/subdocuments", |
| variant="primary", |
| elem_id="duplicate-detection-btn", |
| ) |
|
|
| with gr.Accordion("Step 2: Review and refine results", open=True): |
| gr.Markdown( |
| "### Analysis summary\nClick on a row to select it for preview or exclusion." |
| ) |
|
|
| with gr.Row(): |
| results_df_preview = gr.Dataframe( |
| label="Similarity Results", |
| headers=[ |
| "Page1_File", |
| "Page1_Start_Page", |
| "Page1_End_Page", |
| "Page2_File", |
| "Page2_Start_Page", |
| "Page2_End_Page", |
| "Match_Length", |
| "Avg_Similarity", |
| "Page1_Text", |
| "Page2_Text", |
| ], |
| wrap=True, |
| show_search="search", |
| ) |
| with gr.Row(): |
| exclude_match_btn = gr.Button( |
| value="❌ Exclude Selected Match", variant="stop" |
| ) |
| gr.Markdown( |
| "Click a row in the table, then click this button to remove it from the results and update the downloadable files." |
| ) |
|
|
| gr.Markdown("### Full Text Preview of Selected Match") |
| with gr.Row(): |
| page1_text_preview = gr.Dataframe( |
| label="Match Source (Document 1)", |
| wrap=True, |
| headers=["page", "text"], |
| show_search="search", |
| ) |
| page2_text_preview = gr.Dataframe( |
| label="Match Duplicate (Document 2)", |
| wrap=True, |
| headers=["page", "text"], |
| show_search="search", |
| ) |
|
|
| gr.Markdown("### Downloadable Files") |
| duplicate_files_out = gr.File( |
| label="Download analysis summary and redaction lists (.csv)", |
| file_count="multiple", |
| height=FILE_INPUT_HEIGHT, |
| ) |
|
|
| with gr.Row(): |
| apply_match_btn = gr.Button( |
| value="Apply relevant duplicate page output to document currently under review", |
| variant="secondary", |
| elem_id="apply-duplicate-pages-btn", |
| ) |
| go_to_review_redactions_tab_btn_2 = gr.Button( |
| "Review and modify redactions", variant="primary", scale=1 |
| ) |
|
|
| |
| |
| |
| with gr.Tab(label="Open text, Word or Excel/CSV files", id=5): |
|
|
| gr.Markdown( |
| """Enter open text, or choose a Word/tabular data file (XLSX or CSV) to redact. Note that when redacting complex Word files with e.g. images, some content/formatting will be removed, and it may not attempt to redact headers. You may prefer to convert the document file to PDF in Word, and then run it through the first tab of this app (Redact PDFs/images).""" |
| ) |
|
|
| |
| if SHOW_EXAMPLES: |
| gr.Markdown( |
| "### Try an example - Click on an example below and then the 'Redact text/data files' button for redaction, or the 'Find duplicate cells/rows' button for duplicate detection:" |
| ) |
|
|
| |
| tabular_example_files = [ |
| _example_data_path("combined_case_notes.csv"), |
| _example_data_path( |
| "Bold minimalist professional cover letter.docx" |
| ), |
| _example_data_path("Lambeth_2030-Our_Future_Our_Lambeth.pdf.csv"), |
| ] |
|
|
| available_tabular_examples = list() |
| tabular_example_labels = list() |
|
|
| |
| if os.path.exists(tabular_example_files[0]): |
| available_tabular_examples.append( |
| [ |
| [tabular_example_files[0]], |
| ["Case Note", "Client"], |
| "Local", |
| "replace with 'REDACTED'", |
| [tabular_example_files[0]], |
| ["Case Note"], |
| 3, |
| ] |
| ) |
| tabular_example_labels.append( |
| "CSV file redaction with specific columns - remove text" |
| ) |
|
|
| if os.path.exists(tabular_example_files[1]): |
| available_tabular_examples.append( |
| [ |
| [tabular_example_files[1]], |
| [], |
| "Local", |
| "replace with 'REDACTED'", |
| [], |
| [], |
| 3, |
| ] |
| ) |
| tabular_example_labels.append( |
| "Word document redaction - replace with REDACTED" |
| ) |
|
|
| if os.path.exists(tabular_example_files[2]): |
| available_tabular_examples.append( |
| [ |
| [tabular_example_files[2]], |
| ["text"], |
| "Local", |
| "replace with 'REDACTED'", |
| [tabular_example_files[2]], |
| ["text"], |
| 3, |
| ] |
| ) |
| tabular_example_labels.append( |
| "Tabular duplicate detection in CSV files" |
| ) |
|
|
| |
| if RUN_ALL_EXAMPLES_THROUGH_AWS: |
| for ex in available_tabular_examples: |
| ex[2] = AWS_PII_OPTION |
|
|
| |
| if available_tabular_examples: |
|
|
| tabular_examples = gr.Examples( |
| examples=available_tabular_examples, |
| inputs=[ |
| in_data_files, |
| in_colnames, |
| pii_identification_method_drop_tabular, |
| anon_strategy, |
| in_tabular_duplicate_files, |
| tabular_text_columns, |
| tabular_min_word_count, |
| ], |
| outputs=[ |
| walkthrough_file_input, |
| walkthrough_pii_identification_method_drop_tabular, |
| walkthrough_anon_strategy, |
| ], |
| example_labels=tabular_example_labels, |
| fn=show_tabular_info_box_on_click, |
| run_on_click=True, |
| cache_examples=False, |
| ) |
|
|
| with gr.Accordion( |
| "Redact open text, Word or Excel/CSV files. Further settings such as entity types and custom allow/deny lists can be set in the first tab (Redact PDFs/images).", |
| open=show_main_redaction_accordion, |
| ): |
| with gr.Accordion("Redact open text", open=False): |
| in_text = gr.Textbox( |
| label="Enter open text", |
| lines=10, |
| max_length=MAX_OPEN_TEXT_CHARACTERS, |
| ) |
| with gr.Accordion("Upload docx, xlsx, or csv files", open=True): |
| in_data_files.render() |
|
|
| in_excel_sheets.render() |
|
|
| in_colnames.render() |
|
|
| pii_identification_method_drop_tabular.render() |
|
|
| with gr.Accordion( |
| "Anonymisation output format - by default will replace PII with a blank space. ", |
| open=False, |
| ): |
| with gr.Row(): |
| anon_strategy.render() |
|
|
| do_initial_clean.render() |
|
|
| with gr.Accordion(label="Redact Word/data files", open=True): |
| tabular_data_redact_btn = gr.Button( |
| "Redact text/data files", |
| variant="primary", |
| elem_id="tabular-redact-btn", |
| ) |
| with gr.Row(): |
| text_output_summary = gr.Textbox(label="Output result", lines=4) |
| text_output_file = gr.File(label="Output files") |
| text_tabular_files_done = gr.Number( |
| value=0, |
| label="Number of tabular files redacted", |
| interactive=False, |
| visible=False, |
| ) |
| text_redaction_example_markdown = gr.Markdown( |
| value=REDACTION_EXAMPLE_PLACEHOLDER, |
| label="Example redacted output", |
| elem_id="text-redaction-example-markdown", |
| buttons=["copy"], |
| ) |
|
|
| |
| |
| |
| |
| duplicate_pages_list_state = gr.Dropdown( |
| value=[], |
| multiselect=True, |
| allow_custom_value=True, |
| label="Duplicate pages list", |
| visible=False, |
| ) |
|
|
| with gr.Accordion(label="Find duplicate cells in tabular data", open=False): |
| gr.Markdown( |
| """Find duplicate cells or rows in CSV, Excel, or Parquet files. This tool analyses text content across all columns to identify similar or identical entries that may be duplicates. You can review the results and choose to remove duplicate rows from your files.""" |
| ) |
|
|
| with gr.Accordion( |
| "Step 1: Upload files and configure analysis", open=True |
| ): |
| in_tabular_duplicate_files.render() |
|
|
| with gr.Row(equal_height=True): |
| tabular_duplicate_threshold = gr.Number( |
| value=DEFAULT_DUPLICATE_DETECTION_THRESHOLD, |
| label="Similarity threshold", |
| info="Score (0-1) to consider cells a match. 1 = perfect match.", |
| ) |
|
|
| tabular_min_word_count.render() |
|
|
| do_initial_clean_dup = gr.Checkbox( |
| label="Do initial clean of text (remove URLs, HTML tags, and non-ASCII characters)", |
| value=DO_INITIAL_TABULAR_DATA_CLEAN, |
| ) |
| remove_duplicate_rows = gr.Checkbox( |
| label="Remove duplicate rows from deduplicated files", |
| value=REMOVE_DUPLICATE_ROWS, |
| ) |
|
|
| with gr.Row(): |
| in_excel_tabular_sheets = gr.Dropdown( |
| choices=list(), |
| multiselect=True, |
| label="Select Excel sheet names that you want to deduplicate (showing sheets present across all Excel files).", |
| visible=True, |
| allow_custom_value=True, |
| ) |
|
|
| tabular_text_columns.render() |
|
|
| find_tabular_duplicates_btn = gr.Button( |
| value="Find duplicate cells/rows", variant="primary" |
| ) |
|
|
| with gr.Accordion("Step 2: Review results", open=True): |
| gr.Markdown( |
| "### Duplicate Analysis Results\nClick on a row to see more details about the duplicate match." |
| ) |
|
|
| tabular_results_df = gr.Dataframe( |
| label="Duplicate Cell Matches", |
| headers=[ |
| "File1", |
| "Row1", |
| "File2", |
| "Row2", |
| "Similarity_Score", |
| "Text1", |
| "Text2", |
| ], |
| wrap=True, |
| show_search="search", |
| ) |
|
|
| with gr.Row(equal_height=True): |
| tabular_selected_row_index = gr.Number( |
| value=None, visible=False |
| ) |
| tabular_text1_preview = gr.Textbox( |
| label="Text from File 1", lines=3, interactive=False |
| ) |
| tabular_text2_preview = gr.Textbox( |
| label="Text from File 2", lines=3, interactive=False |
| ) |
|
|
| with gr.Accordion("Step 3: Remove duplicates", open=True): |
| gr.Markdown( |
| "### Remove duplicate rows\nSelect a file and click to remove duplicate rows based on the analysis above." |
| ) |
|
|
| with gr.Row(): |
| tabular_file_to_clean = gr.Dropdown( |
| choices=list(), |
| label="Select file to clean", |
| info="Choose which file to remove duplicates from", |
| visible=False, |
| ) |
| clean_duplicates_btn = gr.Button( |
| value="Remove duplicate rows from selected file", |
| variant="secondary", |
| visible=False, |
| ) |
|
|
| tabular_cleaned_file = gr.File( |
| label="Download cleaned file (duplicates removed)", |
| visible=True, |
| interactive=False, |
| ) |
|
|
| |
| data_feedback_title = gr.Markdown( |
| value="## Please give feedback", visible=False |
| ) |
| data_feedback_radio = gr.Radio( |
| label="Please give some feedback about the results of the redaction.", |
| choices=["The results were good", "The results were not good"], |
| visible=False, |
| show_label=True, |
| ) |
| data_further_details_text = gr.Textbox( |
| label="Please give more detailed feedback about the results:", |
| visible=False, |
| ) |
| data_submit_feedback_btn = gr.Button(value="Submit feedback", visible=False) |
|
|
| |
| |
| |
| |
| |
| summarisation_inference_method_options = [] |
| if SHOW_AWS_PII_DETECTION_OPTIONS: |
| summarisation_inference_method_options.append(AWS_LLM_PII_OPTION) |
| if SHOW_TRANSFORMERS_LLM_PII_DETECTION_OPTIONS: |
| summarisation_inference_method_options.append( |
| LOCAL_TRANSFORMERS_LLM_PII_OPTION |
| ) |
| if SHOW_INFERENCE_SERVER_PII_OPTIONS: |
| summarisation_inference_method_options.append(INFERENCE_SERVER_PII_OPTION) |
|
|
| |
| default_summarisation_inference_method = None |
| if summarisation_inference_method_options: |
| if SHOW_AWS_PII_DETECTION_OPTIONS: |
| default_summarisation_inference_method = AWS_LLM_PII_OPTION |
| elif SHOW_TRANSFORMERS_LLM_PII_DETECTION_OPTIONS: |
| default_summarisation_inference_method = ( |
| LOCAL_TRANSFORMERS_LLM_PII_OPTION |
| ) |
| elif SHOW_INFERENCE_SERVER_PII_OPTIONS: |
| default_summarisation_inference_method = INFERENCE_SERVER_PII_OPTION |
| else: |
| default_summarisation_inference_method = ( |
| summarisation_inference_method_options[0] |
| ) |
|
|
| |
| visible_summarisation_tab = SHOW_SUMMARISATION and ( |
| SHOW_AWS_PII_DETECTION_OPTIONS |
| or SHOW_TRANSFORMERS_LLM_PII_DETECTION_OPTIONS |
| or SHOW_INFERENCE_SERVER_PII_OPTIONS |
| ) |
| with gr.Tab( |
| label="Document summarisation", id=8, visible=visible_summarisation_tab |
| ): |
|
|
| gr.Markdown( |
| """This tab allows you to summarise documents using Large Language Model (LLM)-based summarisation. Upload a PDF or OCR CSV file (from a previous redaction run) to summarise. The summarisation process: |
| 1. Groups pages to fit within the maximum LLM context length, or by a maximum number of pages per group defined below if smaller |
| 2. Summarises each page group |
| 3. Creates an overall summary of the entire document based on the page group summaries |
| |
| Large language models can hallucinate or make mistakes - the summaries produced here are intended for informational purposes only and not for further distribution or use.""", |
| line_breaks=True, |
| ) |
|
|
| if SHOW_COSTS: |
| gr.Markdown( |
| "Note that the summarisation process using AWS Bedrock has a cost (approximately $0.50 per 1,000 pages summarised), and this will be charged to the same cost code as the redaction process (see Redact PDFs/images tab to select a cost code)." |
| ) |
|
|
| in_summarisation_ocr_files = gr.File( |
| label="Upload PDF or OCR CSV files to summarise", |
| file_count="multiple", |
| height=FILE_INPUT_HEIGHT, |
| file_types=[".csv", ".pdf"], |
| ) |
|
|
| with gr.Accordion("Summarisation Settings", open=True): |
| with gr.Row(): |
| summarisation_inference_method = gr.Radio( |
| label="Choose LLM inference method for summarisation", |
| choices=summarisation_inference_method_options, |
| value=default_summarisation_inference_method, |
| interactive=True, |
| ) |
| summarisation_temperature = gr.Slider( |
| label="Temperature", |
| minimum=0.0, |
| maximum=2.0, |
| value=0.6, |
| step=0.1, |
| interactive=True, |
| visible=False, |
| ) |
| summarisation_max_pages_per_group = gr.Number( |
| label="Max pages per page-group summary", |
| info="No single page group will exceed this many pages (in addition to context-length token limits).", |
| value=30, |
| minimum=1, |
| maximum=9999, |
| precision=0, |
| interactive=True, |
| visible=True, |
| ) |
|
|
| with gr.Row(): |
| summarisation_api_key = gr.Textbox( |
| label="API Key (if required)", |
| type="password", |
| visible=False, |
| ) |
| summarisation_context = gr.Textbox( |
| label="Additional context (optional)", |
| placeholder="e.g., 'This is a consultation response document'", |
| lines=2, |
| visible=False, |
| ) |
|
|
| with gr.Row(): |
| summarisation_format = gr.Radio( |
| label="Summary format", |
| choices=[ |
| concise_summary_format_prompt, |
| detailed_summary_format_prompt, |
| ], |
| value=detailed_summary_format_prompt, |
| interactive=True, |
| ) |
| summarisation_additional_instructions = gr.Textbox( |
| label="Additional summary instructions (optional)", |
| placeholder="e.g., 'Focus on key decisions and recommendations'", |
| lines=2, |
| ) |
|
|
| |
| |
| |
| summarisation_aws_region_hidden = gr.Textbox( |
| value=AWS_REGION, |
| visible=False, |
| ) |
| summarisation_hf_api_key_hidden = gr.Textbox( |
| value="", |
| visible=False, |
| ) |
| summarisation_azure_endpoint_hidden = gr.Textbox( |
| value=AZURE_OPENAI_INFERENCE_ENDPOINT, |
| visible=False, |
| ) |
| summarisation_api_url_hidden = gr.Textbox( |
| value=INFERENCE_SERVER_API_URL, |
| visible=False, |
| ) |
|
|
| summarise_btn = gr.Button( |
| "Generate summary", |
| variant="primary", |
| elem_id="summarise-document-btn", |
| ) |
|
|
| with gr.Row(equal_height=True): |
| summarisation_status = gr.Textbox( |
| label="Status", |
| lines=3, |
| interactive=False, |
| ) |
| summarisation_output_files = gr.File( |
| label="Download Summary Files", |
| file_count="multiple", |
| interactive=False, |
| ) |
|
|
| summarisation_display = gr.Markdown( |
| label="Summary", |
| value="", |
| line_breaks=True, |
| buttons=["copy"], |
| visible=True, |
| ) |
|
|
| |
| |
| |
| with gr.Tab(label="Settings", id=9): |
| with gr.Accordion( |
| "Custom allow, deny, and full page redaction lists", open=True |
| ): |
| with gr.Row(): |
| with gr.Column(): |
| in_allow_list = gr.File( |
| label="Import allow list file - csv table with one column of a different word/phrase on each row (case insensitive). Terms in this file will not be redacted.", |
| file_count="multiple", |
| height=FILE_INPUT_HEIGHT, |
| ) |
| in_allow_list_text = gr.Textbox( |
| label="Custom allow list load status" |
| ) |
| with gr.Column(): |
| in_deny_list.render() |
| in_deny_list_text = gr.Textbox( |
| label="Custom deny list load status" |
| ) |
| with gr.Column(): |
| in_fully_redacted_list.render() |
| in_fully_redacted_list_text = gr.Textbox( |
| label="Fully redacted page list load status" |
| ) |
|
|
| with gr.Row(): |
| with gr.Column(scale=2): |
| markdown_placeholder = gr.Markdown("") |
| with gr.Column(scale=1): |
| apply_fully_redacted_list_btn = gr.Button( |
| value="Apply whole page redaction list to document currently under review", |
| variant="secondary", |
| ) |
|
|
| with gr.Accordion( |
| "Select entity types to redact", open=True, visible=False |
| ): |
|
|
| with gr.Row(): |
|
|
| match_fuzzy_whole_phrase_bool = gr.Checkbox( |
| label="Should fuzzy search match on entire phrases in deny list (as opposed to each word individually)?", |
| value=True, |
| visible=False, |
| ) |
|
|
| with gr.Accordion("Redact only selected pages", open=False): |
| with gr.Row(): |
| page_min.render() |
| page_max.render() |
|
|
| with gr.Accordion("Advanced OCR settings", open=False): |
| with gr.Row(equal_height=True): |
| with gr.Column(scale=5): |
| with gr.Row(): |
| efficient_ocr_checkbox = gr.Checkbox( |
| label="Use efficient OCR", |
| value=EFFICIENT_OCR, |
| ) |
| efficient_ocr_min_words_number = gr.Number( |
| label="Minimum words on page to run text-only extraction with efficient OCR", |
| value=EFFICIENT_OCR_MIN_WORDS, |
| precision=0, |
| minimum=0, |
| step=1, |
| ) |
| efficient_ocr_min_image_coverage_number = gr.Number( |
| label="Min. page-area fraction for an embedded image to force OCR (0 = word count only)", |
| value=EFFICIENT_OCR_MIN_IMAGE_COVERAGE_FRACTION, |
| precision=3, |
| minimum=0.0, |
| maximum=1.0, |
| step=0.005, |
| ) |
| efficient_ocr_min_embedded_image_px_number = gr.Number( |
| label="Min. embedded image width/height (PDF pt, ~px@72dpi) to force OCR; 0 = no minimum", |
| value=EFFICIENT_OCR_MIN_EMBEDDED_IMAGE_PX, |
| precision=0, |
| minimum=0, |
| step=1, |
| visible=False, |
| ) |
| with gr.Column(scale=1): |
| overwrite_existing_ocr_checkbox = gr.Checkbox( |
| label="Always overwrite existing OCR results for new redaction tasks", |
| value=OVERWRITE_EXISTING_OCR_RESULTS, |
| ) |
| with gr.Column(scale=1): |
| save_page_ocr_visualisations_checkbox = gr.Checkbox( |
| label="Save page OCR visualisations (debug bounding boxes)", |
| value=SAVE_PAGE_OCR_VISUALISATIONS, |
| ) |
| with gr.Column(scale=1): |
| high_quality_textract_ocr_checkbox = gr.Checkbox( |
| label="High-quality Textract OCR (re-run low-confidence lines with Bedrock VLM for higher quality)", |
| value=HYBRID_TEXTRACT_BEDROCK_VLM, |
| visible=SHOW_AWS_TEXT_EXTRACTION_OPTIONS |
| and SHOW_HYBRID_TEXTRACT_BEDROCK_CHECKBOX, |
| ) |
|
|
| with gr.Accordion( |
| "Language selection", open=False, visible=SHOW_LANGUAGE_SELECTION |
| ): |
| gr.Markdown( |
| """Note that AWS Textract is compatible with English, Spanish, Italian, Portuguese, French, and German, and handwriting detection is only available in English. AWS Comprehend for detecting PII is only compatible with English and Spanish. |
| The local models (Tesseract and SpaCy) are compatible with the other languages in the list below. However, the language packs for these models need to be installed on your system. When you first run a document through the app, the language packs will be downloaded automatically, but please expect a delay as the models are large.""" |
| ) |
| with gr.Row(): |
| chosen_language_full_name_drop = gr.Dropdown( |
| value=DEFAULT_LANGUAGE_FULL_NAME, |
| choices=MAPPED_LANGUAGE_CHOICES, |
| label="Chosen language", |
| multiselect=False, |
| allow_custom_value=False, |
| visible=True, |
| ) |
| chosen_language_drop = gr.Dropdown( |
| value=DEFAULT_LANGUAGE, |
| choices=LANGUAGE_CHOICES, |
| label="Chosen language short code", |
| multiselect=False, |
| allow_custom_value=True, |
| visible=True, |
| interactive=False, |
| ) |
|
|
| with gr.Accordion( |
| "Use API keys for AWS services", open=False, visible=SHOW_AWS_API_KEYS |
| ): |
| with gr.Row(): |
| aws_access_key_textbox = gr.Textbox( |
| value="", |
| label="AWS access key for account with permissions for AWS Textract and Comprehend", |
| visible=True, |
| type="password", |
| ) |
| aws_secret_key_textbox = gr.Textbox( |
| value="", |
| label="AWS secret key for account with permissions for AWS Textract and Comprehend", |
| visible=True, |
| type="password", |
| ) |
|
|
| with gr.Accordion("Log file outputs", open=False): |
| log_files_output = gr.File(label="Log file output", interactive=False) |
|
|
| with gr.Accordion( |
| "S3 output settings", open=False, visible=SAVE_OUTPUTS_TO_S3 |
| ): |
| save_outputs_to_s3_checkbox = gr.Checkbox( |
| label="Save redaction outputs to S3", |
| value=SAVE_OUTPUTS_TO_S3, |
| visible=SAVE_OUTPUTS_TO_S3, |
| ) |
| s3_output_folder_display = gr.Textbox( |
| label="S3 outputs folder", |
| value="", |
| interactive=False, |
| visible=SAVE_OUTPUTS_TO_S3, |
| ) |
|
|
| with gr.Accordion("Combine multiple review PDFs or CSV files", open=False): |
| gr.Markdown( |
| "Upload multiple '_redactions_for_review' PDFs from the same base document. " |
| "All files must share the same base file name and page count. " |
| "Comments from all files will be merged into one PDF: base_name_redactions_for_review_combined.pdf" |
| ) |
| combine_review_pdfs_in_out = gr.File( |
| label="Combine multiple _redactions_for_review PDFs", |
| file_count="multiple", |
| file_types=[".pdf"], |
| ) |
| combine_review_pdfs_btn = gr.Button( |
| "Combine review PDFs into one", variant="primary" |
| ) |
|
|
| multiple_review_files_in_out = gr.File( |
| label="Combine multiple review_file.csv files together here.", |
| file_count="multiple", |
| file_types=[".csv"], |
| ) |
| merge_multiple_review_files_btn = gr.Button( |
| "Merge multiple review files into one", variant="primary" |
| ) |
|
|
| if SHOW_ALL_OUTPUTS_IN_OUTPUT_FOLDER: |
| with gr.Accordion( |
| "View all and download all output files from this session", |
| open=False, |
| ): |
| all_output_files_btn.render() |
| all_output_files.render() |
| all_outputs_file_download.render() |
| else: |
| all_output_files_btn.render() |
| all_output_files.render() |
| all_outputs_file_download.render() |
|
|
| |
| |
| |
|
|
| |
| |
| |
| |
| def _get_document_file_names_with_walkthrough(files): |
| r = get_document_file_names(files) |
| return (*r, r[4]) |
|
|
| def _prepare_image_or_pdf_with_walkthrough_sync( |
| file_paths, |
| text_extract_method, |
| all_page_line_level_ocr_results_df_base, |
| all_page_line_level_ocr_results_with_words_df_base, |
| latest_file_completed_num, |
| out_message, |
| first_loop_state, |
| number_of_pages, |
| all_annotations_object, |
| prepare_for_review, |
| in_fully_redacted_list, |
| output_folder, |
| input_folder, |
| efficient_ocr, |
| prepare_images_bool_false, |
| page_sizes, |
| pymupdf_doc, |
| page_min, |
| page_max, |
| ): |
| r = prepare_image_or_pdf_with_efficient_ocr( |
| file_paths, |
| text_extract_method, |
| all_page_line_level_ocr_results_df_base, |
| all_page_line_level_ocr_results_with_words_df_base, |
| latest_file_completed_num, |
| out_message, |
| first_loop_state, |
| number_of_pages, |
| all_annotations_object, |
| prepare_for_review, |
| in_fully_redacted_list, |
| output_folder, |
| input_folder, |
| efficient_ocr, |
| prepare_images_bool_false, |
| page_sizes, |
| pymupdf_doc, |
| page_min, |
| page_max, |
| ) |
| return (*r, r[10], r[13]) |
|
|
| def _check_for_existing_textract_file_sync(doc_name, output_folder, handwrite): |
| x = check_for_existing_textract_file(doc_name, output_folder, handwrite) |
| return (x, x) |
|
|
| def _check_for_relevant_ocr_output_with_words_sync( |
| doc_name, text_extract, output_folder |
| ): |
| x = check_for_relevant_ocr_output_with_words( |
| doc_name, text_extract, output_folder |
| ) |
| return (x, x) |
|
|
| |
| if SHOW_COSTS: |
|
|
| def _calculate_aws_costs_sync( |
| number_of_pages, |
| text_extract_method_radio, |
| handwrite_signature_checkbox, |
| pii_identification_method_drop, |
| textract_output_found_checkbox, |
| only_extract_text_radio, |
| ): |
| cost = calculate_aws_costs( |
| number_of_pages, |
| text_extract_method_radio, |
| handwrite_signature_checkbox, |
| pii_identification_method_drop, |
| textract_output_found_checkbox, |
| only_extract_text_radio, |
| ) |
| return (cost, cost) |
|
|
| def _calculate_time_taken_sync( |
| number_of_pages, |
| text_extract_method_radio, |
| pii_identification_method_drop, |
| textract_output_found_checkbox, |
| only_extract_text_radio, |
| relevant_ocr_output_with_words_found_checkbox, |
| handwrite_signature_checkbox, |
| ): |
| t = calculate_time_taken( |
| number_of_pages, |
| text_extract_method_radio, |
| pii_identification_method_drop, |
| textract_output_found_checkbox, |
| only_extract_text_radio, |
| relevant_ocr_output_with_words_found_checkbox, |
| handwrite_signature_checkbox, |
| ) |
| return (t, t) |
|
|
| |
| total_pdf_page_count.change( |
| _calculate_aws_costs_sync, |
| inputs=[ |
| total_pdf_page_count, |
| text_extract_method_radio, |
| handwrite_signature_checkbox, |
| pii_identification_method_drop, |
| textract_output_found_checkbox, |
| only_extract_text_radio, |
| ], |
| outputs=[ |
| estimated_aws_costs_number, |
| walkthrough_estimated_aws_costs_number, |
| ], |
| api_visibility="undocumented", |
| ) |
| text_extract_method_radio.change( |
| fn=_check_for_relevant_ocr_output_with_words_sync, |
| inputs=[ |
| doc_file_name_no_extension_textbox, |
| text_extract_method_radio, |
| output_folder_textbox, |
| ], |
| outputs=[ |
| relevant_ocr_output_with_words_found_checkbox, |
| walkthrough_relevant_ocr_output_with_words_found_checkbox, |
| ], |
| api_visibility="undocumented", |
| ).success( |
| _calculate_aws_costs_sync, |
| inputs=[ |
| total_pdf_page_count, |
| text_extract_method_radio, |
| handwrite_signature_checkbox, |
| pii_identification_method_drop, |
| textract_output_found_checkbox, |
| only_extract_text_radio, |
| ], |
| outputs=[ |
| estimated_aws_costs_number, |
| walkthrough_estimated_aws_costs_number, |
| ], |
| api_visibility="undocumented", |
| ) |
| pii_identification_method_drop.change( |
| _calculate_aws_costs_sync, |
| inputs=[ |
| total_pdf_page_count, |
| text_extract_method_radio, |
| handwrite_signature_checkbox, |
| pii_identification_method_drop, |
| textract_output_found_checkbox, |
| only_extract_text_radio, |
| ], |
| outputs=[ |
| estimated_aws_costs_number, |
| walkthrough_estimated_aws_costs_number, |
| ], |
| api_visibility="undocumented", |
| ) |
| handwrite_signature_checkbox.change( |
| fn=_check_for_existing_textract_file_sync, |
| inputs=[ |
| doc_file_name_no_extension_textbox, |
| output_folder_textbox, |
| handwrite_signature_checkbox, |
| ], |
| outputs=[ |
| textract_output_found_checkbox, |
| walkthrough_textract_output_found_checkbox, |
| ], |
| api_visibility="undocumented", |
| ).then( |
| _calculate_aws_costs_sync, |
| inputs=[ |
| total_pdf_page_count, |
| text_extract_method_radio, |
| handwrite_signature_checkbox, |
| pii_identification_method_drop, |
| textract_output_found_checkbox, |
| only_extract_text_radio, |
| ], |
| outputs=[ |
| estimated_aws_costs_number, |
| walkthrough_estimated_aws_costs_number, |
| ], |
| api_visibility="undocumented", |
| ) |
| textract_output_found_checkbox.change( |
| _calculate_aws_costs_sync, |
| inputs=[ |
| total_pdf_page_count, |
| text_extract_method_radio, |
| handwrite_signature_checkbox, |
| pii_identification_method_drop, |
| textract_output_found_checkbox, |
| only_extract_text_radio, |
| ], |
| outputs=[ |
| estimated_aws_costs_number, |
| walkthrough_estimated_aws_costs_number, |
| ], |
| api_visibility="undocumented", |
| ) |
| only_extract_text_radio.change( |
| _calculate_aws_costs_sync, |
| inputs=[ |
| total_pdf_page_count, |
| text_extract_method_radio, |
| handwrite_signature_checkbox, |
| pii_identification_method_drop, |
| textract_output_found_checkbox, |
| only_extract_text_radio, |
| ], |
| outputs=[ |
| estimated_aws_costs_number, |
| walkthrough_estimated_aws_costs_number, |
| ], |
| api_visibility="undocumented", |
| ) |
| textract_output_found_checkbox.change( |
| _calculate_aws_costs_sync, |
| inputs=[ |
| total_pdf_page_count, |
| text_extract_method_radio, |
| handwrite_signature_checkbox, |
| pii_identification_method_drop, |
| textract_output_found_checkbox, |
| only_extract_text_radio, |
| ], |
| outputs=[ |
| estimated_aws_costs_number, |
| walkthrough_estimated_aws_costs_number, |
| ], |
| api_visibility="undocumented", |
| ) |
|
|
| |
| total_pdf_page_count.change( |
| _calculate_time_taken_sync, |
| inputs=[ |
| total_pdf_page_count, |
| text_extract_method_radio, |
| pii_identification_method_drop, |
| textract_output_found_checkbox, |
| only_extract_text_radio, |
| relevant_ocr_output_with_words_found_checkbox, |
| handwrite_signature_checkbox, |
| ], |
| outputs=[ |
| estimated_time_taken_number, |
| walkthrough_estimated_time_taken_number, |
| ], |
| api_visibility="undocumented", |
| ) |
| text_extract_method_radio.change( |
| _calculate_time_taken_sync, |
| inputs=[ |
| total_pdf_page_count, |
| text_extract_method_radio, |
| pii_identification_method_drop, |
| textract_output_found_checkbox, |
| only_extract_text_radio, |
| relevant_ocr_output_with_words_found_checkbox, |
| handwrite_signature_checkbox, |
| ], |
| outputs=[ |
| estimated_time_taken_number, |
| walkthrough_estimated_time_taken_number, |
| ], |
| api_visibility="undocumented", |
| ) |
| pii_identification_method_drop.change( |
| _calculate_time_taken_sync, |
| inputs=[ |
| total_pdf_page_count, |
| text_extract_method_radio, |
| pii_identification_method_drop, |
| textract_output_found_checkbox, |
| only_extract_text_radio, |
| relevant_ocr_output_with_words_found_checkbox, |
| handwrite_signature_checkbox, |
| ], |
| outputs=[ |
| estimated_time_taken_number, |
| walkthrough_estimated_time_taken_number, |
| ], |
| api_visibility="undocumented", |
| ) |
| handwrite_signature_checkbox.change( |
| fn=_check_for_existing_textract_file_sync, |
| inputs=[ |
| doc_file_name_no_extension_textbox, |
| output_folder_textbox, |
| handwrite_signature_checkbox, |
| ], |
| outputs=[ |
| textract_output_found_checkbox, |
| walkthrough_textract_output_found_checkbox, |
| ], |
| api_visibility="undocumented", |
| ).then( |
| _calculate_time_taken_sync, |
| inputs=[ |
| total_pdf_page_count, |
| text_extract_method_radio, |
| pii_identification_method_drop, |
| textract_output_found_checkbox, |
| only_extract_text_radio, |
| relevant_ocr_output_with_words_found_checkbox, |
| handwrite_signature_checkbox, |
| ], |
| outputs=[ |
| estimated_time_taken_number, |
| walkthrough_estimated_time_taken_number, |
| ], |
| api_visibility="undocumented", |
| ) |
| textract_output_found_checkbox.change( |
| _calculate_time_taken_sync, |
| inputs=[ |
| total_pdf_page_count, |
| text_extract_method_radio, |
| pii_identification_method_drop, |
| textract_output_found_checkbox, |
| only_extract_text_radio, |
| relevant_ocr_output_with_words_found_checkbox, |
| handwrite_signature_checkbox, |
| ], |
| outputs=[ |
| estimated_time_taken_number, |
| walkthrough_estimated_time_taken_number, |
| ], |
| api_visibility="undocumented", |
| ) |
| only_extract_text_radio.change( |
| _calculate_time_taken_sync, |
| inputs=[ |
| total_pdf_page_count, |
| text_extract_method_radio, |
| pii_identification_method_drop, |
| textract_output_found_checkbox, |
| only_extract_text_radio, |
| relevant_ocr_output_with_words_found_checkbox, |
| handwrite_signature_checkbox, |
| ], |
| outputs=[ |
| estimated_time_taken_number, |
| walkthrough_estimated_time_taken_number, |
| ], |
| api_visibility="undocumented", |
| ) |
| textract_output_found_checkbox.change( |
| _calculate_time_taken_sync, |
| inputs=[ |
| total_pdf_page_count, |
| text_extract_method_radio, |
| pii_identification_method_drop, |
| textract_output_found_checkbox, |
| only_extract_text_radio, |
| relevant_ocr_output_with_words_found_checkbox, |
| handwrite_signature_checkbox, |
| ], |
| outputs=[ |
| estimated_time_taken_number, |
| walkthrough_estimated_time_taken_number, |
| ], |
| api_visibility="undocumented", |
| ) |
| relevant_ocr_output_with_words_found_checkbox.change( |
| _calculate_time_taken_sync, |
| inputs=[ |
| total_pdf_page_count, |
| text_extract_method_radio, |
| pii_identification_method_drop, |
| textract_output_found_checkbox, |
| only_extract_text_radio, |
| relevant_ocr_output_with_words_found_checkbox, |
| handwrite_signature_checkbox, |
| ], |
| outputs=[ |
| estimated_time_taken_number, |
| walkthrough_estimated_time_taken_number, |
| ], |
| api_visibility="undocumented", |
| ) |
|
|
| text_extract_method_radio.change( |
| fn=auto_set_local_ocr_for_bedrock_vlm, |
| inputs=[text_extract_method_radio], |
| outputs=[local_ocr_method_radio], |
| api_visibility="undocumented", |
| ) |
|
|
| |
| text_extract_method_radio.change( |
| fn=handle_main_text_extract_method_selection, |
| inputs=[text_extract_method_radio], |
| outputs=[ |
| local_ocr_accordion, |
| inference_server_vlm_accordion, |
| aws_textract_signature_accordion, |
| ], |
| api_visibility="undocumented", |
| ) |
|
|
| redaction_method_radio.change( |
| fn=handle_main_redaction_method_selection, |
| inputs=[redaction_method_radio, pii_identification_method_drop], |
| outputs=[ |
| pii_identification_method_drop, |
| in_redact_entities, |
| in_redact_comprehend_entities, |
| in_redact_llm_entities, |
| custom_llm_entities_accordion, |
| walkthrough_list_accordion, |
| max_fuzzy_spelling_mistakes_num, |
| entity_types_to_redact_accordion, |
| terms_accordion, |
| only_extract_text_radio, |
| ], |
| api_visibility="undocumented", |
| ) |
|
|
| |
| pii_identification_method_drop.change( |
| fn=handle_main_pii_method_selection, |
| inputs=[pii_identification_method_drop], |
| outputs=[ |
| in_redact_entities, |
| in_redact_comprehend_entities, |
| in_redact_llm_entities, |
| custom_llm_entities_accordion, |
| ], |
| api_visibility="undocumented", |
| ) |
|
|
| |
| if SHOW_COSTS and (GET_COST_CODES or ENFORCE_COST_CODES): |
| cost_code_dataframe.select( |
| df_select_callback_cost, |
| inputs=[cost_code_dataframe], |
| outputs=[cost_code_choice_drop], |
| api_visibility="undocumented", |
| ) |
| reset_cost_code_dataframe_button.click( |
| reset_base_dataframe, |
| inputs=[cost_code_dataframe_base], |
| outputs=[cost_code_dataframe], |
| api_visibility="undocumented", |
| ) |
|
|
| cost_code_choice_drop.select( |
| update_cost_code_dataframe_from_dropdown_select, |
| inputs=[cost_code_choice_drop, cost_code_dataframe_base], |
| outputs=[cost_code_dataframe], |
| api_visibility="undocumented", |
| ) |
|
|
| def _save_default_cost_code_and_notify( |
| session_hash, cost_code_choice, cost_code_df, output_folder |
| ): |
| msg = save_default_cost_code_for_session( |
| session_hash, cost_code_choice, cost_code_df, output_folder |
| ) |
| gr.Info(msg) |
|
|
| set_default_cost_code_button.click( |
| _save_default_cost_code_and_notify, |
| inputs=[ |
| session_hash_textbox, |
| cost_code_choice_drop, |
| cost_code_dataframe, |
| input_folder_textbox, |
| ], |
| outputs=[], |
| api_visibility="undocumented", |
| ) |
|
|
| |
| _doc_upload_fn = ( |
| _get_document_file_names_with_walkthrough |
| if SHOW_COSTS |
| else get_document_file_names |
| ) |
| _doc_upload_outputs = [ |
| doc_file_name_no_extension_textbox, |
| doc_file_name_with_extension_textbox, |
| doc_full_file_name_textbox, |
| doc_file_name_textbox_list, |
| total_pdf_page_count, |
| ] |
| if SHOW_COSTS: |
| _doc_upload_outputs = _doc_upload_outputs + [walkthrough_total_pdf_page_count] |
| _prepare_fn = ( |
| _prepare_image_or_pdf_with_walkthrough_sync |
| if SHOW_COSTS |
| else prepare_image_or_pdf_with_efficient_ocr |
| ) |
| _prepare_outputs = [ |
| redaction_output_summary_textbox, |
| prepared_pdf_state, |
| images_pdf_state, |
| annotate_max_pages, |
| annotate_max_pages_bottom, |
| pdf_doc_state, |
| all_image_annotations_state, |
| review_file_df, |
| document_cropboxes, |
| page_sizes, |
| textract_output_found_checkbox, |
| all_img_details_state, |
| all_page_line_level_ocr_results_df_base, |
| relevant_ocr_output_with_words_found_checkbox, |
| all_page_line_level_ocr_results_with_words_df_base, |
| ] |
| if SHOW_COSTS: |
| _prepare_outputs = _prepare_outputs + [ |
| walkthrough_textract_output_found_checkbox, |
| walkthrough_relevant_ocr_output_with_words_found_checkbox, |
| ] |
| _textract_check_fn = ( |
| _check_for_existing_textract_file_sync |
| if SHOW_COSTS |
| else check_for_existing_textract_file |
| ) |
| _textract_check_outputs = ( |
| [textract_output_found_checkbox, walkthrough_textract_output_found_checkbox] |
| if SHOW_COSTS |
| else [textract_output_found_checkbox] |
| ) |
| _ocr_check_fn = ( |
| _check_for_relevant_ocr_output_with_words_sync |
| if SHOW_COSTS |
| else check_for_relevant_ocr_output_with_words |
| ) |
| _ocr_check_outputs = ( |
| [ |
| relevant_ocr_output_with_words_found_checkbox, |
| walkthrough_relevant_ocr_output_with_words_found_checkbox, |
| ] |
| if SHOW_COSTS |
| else [relevant_ocr_output_with_words_found_checkbox] |
| ) |
| in_doc_files.upload( |
| fn=_doc_upload_fn, |
| inputs=[in_doc_files], |
| outputs=_doc_upload_outputs, |
| api_visibility="undocumented", |
| ).success( |
| fn=_prepare_fn, |
| inputs=[ |
| in_doc_files, |
| text_extract_method_radio, |
| all_page_line_level_ocr_results_df_base, |
| all_page_line_level_ocr_results_with_words_df_base, |
| latest_file_completed_num, |
| redaction_output_summary_textbox, |
| first_loop_state, |
| annotate_max_pages, |
| all_image_annotations_state, |
| prepare_for_review_bool_false, |
| in_fully_redacted_list_state, |
| output_folder_textbox, |
| input_folder_textbox, |
| efficient_ocr_checkbox, |
| prepare_images_bool_false, |
| page_sizes, |
| pdf_doc_state, |
| page_min, |
| page_max, |
| ], |
| outputs=_prepare_outputs, |
| show_progress_on=[redaction_output_summary_textbox], |
| api_visibility="undocumented", |
| ).success( |
| fn=_textract_check_fn, |
| inputs=[ |
| doc_file_name_no_extension_textbox, |
| output_folder_textbox, |
| handwrite_signature_checkbox, |
| ], |
| outputs=_textract_check_outputs, |
| api_visibility="undocumented", |
| ).success( |
| fn=_ocr_check_fn, |
| inputs=[ |
| doc_file_name_no_extension_textbox, |
| text_extract_method_radio, |
| output_folder_textbox, |
| ], |
| outputs=_ocr_check_outputs, |
| api_visibility="undocumented", |
| ) |
|
|
| |
| walkthrough_file_input.upload( |
| fn=_doc_upload_fn, |
| inputs=[walkthrough_file_input], |
| outputs=_doc_upload_outputs, |
| api_visibility="undocumented", |
| ).success( |
| fn=_prepare_fn, |
| inputs=[ |
| walkthrough_file_input, |
| text_extract_method_radio, |
| all_page_line_level_ocr_results_df_base, |
| all_page_line_level_ocr_results_with_words_df_base, |
| latest_file_completed_num, |
| redaction_output_summary_textbox, |
| first_loop_state, |
| annotate_max_pages, |
| all_image_annotations_state, |
| prepare_for_review_bool_false, |
| in_fully_redacted_list_state, |
| output_folder_textbox, |
| input_folder_textbox, |
| efficient_ocr_checkbox, |
| prepare_images_bool_false, |
| page_sizes, |
| pdf_doc_state, |
| page_min, |
| page_max, |
| ], |
| outputs=_prepare_outputs, |
| show_progress_on=[redaction_output_summary_textbox], |
| api_visibility="undocumented", |
| ).success( |
| fn=_textract_check_fn, |
| inputs=[ |
| doc_file_name_no_extension_textbox, |
| output_folder_textbox, |
| handwrite_signature_checkbox, |
| ], |
| outputs=_textract_check_outputs, |
| api_visibility="undocumented", |
| ).success( |
| fn=_ocr_check_fn, |
| inputs=[ |
| doc_file_name_no_extension_textbox, |
| text_extract_method_radio, |
| output_folder_textbox, |
| ], |
| outputs=_ocr_check_outputs, |
| api_visibility="undocumented", |
| ) |
|
|
| |
| |
| |
|
|
| |
| usage_callback = CSVLogger_custom(dataset_file_name=USAGE_LOG_FILE_NAME) |
|
|
| if DISPLAY_FILE_NAMES_IN_LOGS: |
| usage_callback.setup( |
| [ |
| session_hash_textbox, |
| doc_file_name_no_extension_textbox, |
| data_file_name_with_extension_textbox, |
| total_pdf_page_count, |
| actual_time_taken_number, |
| textract_query_number, |
| pii_identification_method_drop, |
| comprehend_query_number, |
| cost_code_choice_drop, |
| handwrite_signature_checkbox, |
| host_name_textbox, |
| text_extract_method_radio, |
| is_a_textract_api_call, |
| task_textbox, |
| vlm_model_name_textbox, |
| vlm_total_input_tokens_number, |
| vlm_total_output_tokens_number, |
| llm_model_name_textbox, |
| llm_total_input_tokens_number, |
| llm_total_output_tokens_number, |
| ], |
| USAGE_LOGS_FOLDER, |
| ) |
| else: |
| usage_callback.setup( |
| [ |
| session_hash_textbox, |
| blank_doc_file_name_no_extension_textbox_for_logs, |
| blank_data_file_name_no_extension_textbox_for_logs, |
| total_pdf_page_count, |
| actual_time_taken_number, |
| textract_query_number, |
| pii_identification_method_drop, |
| comprehend_query_number, |
| cost_code_choice_drop, |
| handwrite_signature_checkbox, |
| host_name_textbox, |
| text_extract_method_radio, |
| is_a_textract_api_call, |
| task_textbox, |
| vlm_model_name_textbox, |
| vlm_total_input_tokens_number, |
| vlm_total_output_tokens_number, |
| llm_model_name_textbox, |
| llm_total_input_tokens_number, |
| llm_total_output_tokens_number, |
| ], |
| USAGE_LOGS_FOLDER, |
| ) |
|
|
| |
| step_4_next_document_redact_btn.click( |
| change_tab_to_tabular_or_document_redactions, |
| inputs=walkthrough_is_data_file, |
| outputs=tabs, |
| api_visibility="undocumented", |
| ).then( |
| fn=reset_state_vars, |
| outputs=[ |
| all_image_annotations_state, |
| all_page_line_level_ocr_results_df_base, |
| all_decision_process_table_state, |
| comprehend_query_number, |
| textract_metadata_textbox, |
| annotator, |
| output_file_list_state, |
| log_files_output_list_state, |
| recogniser_entity_dataframe, |
| recogniser_entity_dataframe_base, |
| pdf_doc_state, |
| duplication_file_path_outputs_list_state, |
| redaction_output_summary_textbox, |
| is_a_textract_api_call, |
| textract_query_number, |
| all_page_line_level_ocr_results_with_words, |
| input_review_files, |
| latest_file_completed_num, |
| llm_total_input_tokens_number, |
| llm_total_output_tokens_number, |
| vlm_total_input_tokens_number, |
| vlm_total_output_tokens_number, |
| ], |
| api_visibility="undocumented", |
| ).success( |
| fn=enforce_cost_codes, |
| inputs=[ |
| enforce_cost_code_bool, |
| cost_code_choice_drop, |
| cost_code_dataframe_base, |
| ], |
| api_visibility="undocumented", |
| ).success( |
| fn=choose_and_run_redactor, |
| inputs=[ |
| in_doc_files, |
| prepared_pdf_state, |
| images_pdf_state, |
| in_redact_entities, |
| in_redact_comprehend_entities, |
| in_redact_llm_entities, |
| text_extract_method_radio, |
| in_allow_list_state, |
| in_deny_list_state, |
| in_fully_redacted_list_state, |
| latest_file_completed_num, |
| redaction_output_summary_textbox, |
| output_file_list_state, |
| log_files_output_list_state, |
| page_min, |
| page_max, |
| actual_time_taken_number, |
| handwrite_signature_checkbox, |
| textract_metadata_textbox, |
| all_image_annotations_state, |
| all_page_line_level_ocr_results_df_base, |
| all_decision_process_table_state, |
| pdf_doc_state, |
| pii_identification_method_drop, |
| max_fuzzy_spelling_mistakes_num, |
| match_fuzzy_whole_phrase_bool, |
| aws_access_key_textbox, |
| aws_secret_key_textbox, |
| annotate_max_pages, |
| review_file_df, |
| output_folder_textbox, |
| document_cropboxes, |
| page_sizes, |
| textract_output_found_checkbox, |
| only_extract_text_radio, |
| duplication_file_path_outputs_list_state, |
| latest_review_file_path, |
| input_folder_textbox, |
| latest_ocr_file_path, |
| all_page_line_level_ocr_results, |
| all_page_line_level_ocr_results_with_words, |
| all_page_line_level_ocr_results_with_words_df_base, |
| local_ocr_method_radio, |
| chosen_language_drop, |
| input_review_files, |
| custom_llm_instructions_textbox, |
| inference_server_vlm_model_textbox, |
| efficient_ocr_checkbox, |
| efficient_ocr_min_words_number, |
| efficient_ocr_min_image_coverage_number, |
| efficient_ocr_min_embedded_image_px_number, |
| high_quality_textract_ocr_checkbox, |
| overwrite_existing_ocr_checkbox, |
| save_page_ocr_visualisations_checkbox, |
| ], |
| outputs=[ |
| redaction_output_summary_textbox, |
| output_file, |
| output_file_list_state, |
| latest_file_completed_num, |
| log_files_output, |
| log_files_output_list_state, |
| actual_time_taken_number, |
| textract_metadata_textbox, |
| pdf_doc_state, |
| all_image_annotations_state, |
| current_loop_page_number, |
| page_break_return, |
| all_page_line_level_ocr_results_df_base, |
| all_decision_process_table_state, |
| comprehend_query_number, |
| input_pdf_for_review, |
| annotate_max_pages, |
| annotate_max_pages_bottom, |
| prepared_pdf_state, |
| images_pdf_state, |
| review_file_df, |
| page_sizes, |
| duplication_file_path_outputs_list_state, |
| in_duplicate_pages, |
| in_summarisation_ocr_files, |
| latest_review_file_path, |
| textract_query_number, |
| latest_ocr_file_path, |
| all_page_line_level_ocr_results, |
| all_page_line_level_ocr_results_with_words, |
| all_page_line_level_ocr_results_with_words_df_base, |
| backup_review_state, |
| task_textbox, |
| input_review_files, |
| vlm_model_name_textbox, |
| vlm_total_input_tokens_number, |
| vlm_total_output_tokens_number, |
| llm_model_name_textbox, |
| llm_total_input_tokens_number, |
| llm_total_output_tokens_number, |
| total_pdf_page_count, |
| ], |
| api_name="redact_document", |
| show_progress_on=[redaction_output_summary_textbox], |
| ).success( |
| fn=lambda *args: usage_callback.flag( |
| list(args), |
| save_to_csv=SAVE_LOGS_TO_CSV, |
| save_to_dynamodb=SAVE_LOGS_TO_DYNAMODB, |
| dynamodb_table_name=USAGE_LOG_DYNAMODB_TABLE_NAME, |
| dynamodb_headers=DYNAMODB_USAGE_LOG_HEADERS, |
| replacement_headers=CSV_USAGE_LOG_HEADERS, |
| ), |
| inputs=( |
| [ |
| session_hash_textbox, |
| doc_file_name_no_extension_textbox, |
| blank_data_file_name_no_extension_textbox_for_logs, |
| actual_time_taken_number, |
| total_pdf_page_count, |
| textract_query_number, |
| pii_identification_method_drop, |
| comprehend_query_number, |
| cost_code_choice_drop, |
| handwrite_signature_checkbox, |
| host_name_textbox, |
| text_extract_method_radio, |
| is_a_textract_api_call, |
| task_textbox, |
| vlm_model_name_textbox, |
| vlm_total_input_tokens_number, |
| vlm_total_output_tokens_number, |
| llm_model_name_textbox, |
| llm_total_input_tokens_number, |
| llm_total_output_tokens_number, |
| ] |
| if DISPLAY_FILE_NAMES_IN_LOGS |
| else [ |
| session_hash_textbox, |
| placeholder_doc_file_name_no_extension_textbox_for_logs, |
| blank_data_file_name_no_extension_textbox_for_logs, |
| actual_time_taken_number, |
| total_pdf_page_count, |
| textract_query_number, |
| pii_identification_method_drop, |
| comprehend_query_number, |
| cost_code_choice_drop, |
| handwrite_signature_checkbox, |
| host_name_textbox, |
| text_extract_method_radio, |
| is_a_textract_api_call, |
| task_textbox, |
| vlm_model_name_textbox, |
| vlm_total_input_tokens_number, |
| vlm_total_output_tokens_number, |
| llm_model_name_textbox, |
| llm_total_input_tokens_number, |
| llm_total_output_tokens_number, |
| ] |
| ), |
| outputs=[flag_value_placeholder], |
| preprocess=False, |
| api_visibility="undocumented", |
| ).success( |
| fn=upload_log_file_to_s3, |
| inputs=[usage_logs_state, usage_s3_logs_loc_state], |
| outputs=[s3_logs_output_textbox], |
| api_visibility="undocumented", |
| ).success( |
| fn=export_outputs_to_s3, |
| inputs=[ |
| output_file_list_state, |
| s3_output_folder_state, |
| save_outputs_to_s3_checkbox, |
| in_doc_files, |
| ], |
| outputs=None, |
| api_visibility="undocumented", |
| ).success( |
| fn=update_annotator_object_and_filter_df, |
| inputs=[ |
| all_image_annotations_state, |
| page_min, |
| recogniser_entity_dropdown, |
| page_entity_dropdown, |
| page_entity_dropdown_redaction, |
| text_entity_dropdown, |
| recogniser_entity_dataframe_base, |
| annotator_zoom_number, |
| review_file_df, |
| page_sizes, |
| doc_full_file_name_textbox, |
| input_folder_textbox, |
| ], |
| outputs=[ |
| annotator, |
| annotate_current_page, |
| annotate_current_page_bottom, |
| annotate_previous_page, |
| recogniser_entity_dropdown, |
| recogniser_entity_dataframe, |
| recogniser_entity_dataframe_base, |
| text_entity_dropdown, |
| page_entity_dropdown, |
| page_entity_dropdown_redaction, |
| page_sizes, |
| all_image_annotations_state, |
| ], |
| show_progress_on=[annotator], |
| api_visibility="undocumented", |
| ).success( |
| fn=check_for_existing_textract_file, |
| inputs=[ |
| doc_file_name_no_extension_textbox, |
| output_folder_textbox, |
| handwrite_signature_checkbox, |
| ], |
| outputs=[textract_output_found_checkbox], |
| api_visibility="undocumented", |
| ).success( |
| fn=check_for_relevant_ocr_output_with_words, |
| inputs=[ |
| doc_file_name_no_extension_textbox, |
| text_extract_method_radio, |
| output_folder_textbox, |
| ], |
| outputs=[relevant_ocr_output_with_words_found_checkbox], |
| api_visibility="undocumented", |
| ).success( |
| fn=reveal_feedback_buttons, |
| outputs=[ |
| pdf_feedback_radio, |
| pdf_further_details_text, |
| pdf_submit_feedback_btn, |
| pdf_feedback_title, |
| ], |
| api_visibility="undocumented", |
| ).success( |
| fn=check_duplicate_pages_checkbox, |
| inputs=[redact_duplicate_pages_checkbox], |
| outputs=None, |
| api_visibility="undocumented", |
| ).failure( |
| fn=lambda: None, |
| api_visibility="undocumented", |
| ).then( |
| fn=reset_aws_call_vars, |
| outputs=[ |
| comprehend_query_number, |
| textract_query_number, |
| vlm_total_input_tokens_number, |
| vlm_total_output_tokens_number, |
| llm_total_input_tokens_number, |
| llm_total_output_tokens_number, |
| llm_model_name_textbox, |
| vlm_model_name_textbox, |
| ], |
| api_visibility="undocumented", |
| ).success( |
| fn=run_duplicate_analysis, |
| inputs=[ |
| all_page_line_level_ocr_results_df_base, |
| duplicate_threshold_input, |
| min_word_count_input, |
| min_consecutive_pages_input, |
| greedy_match_input, |
| all_page_line_level_ocr_results_df_base, |
| input_review_files, |
| combine_page_text_for_duplicates_bool, |
| doc_file_name_with_extension_textbox, |
| output_folder_textbox, |
| ], |
| outputs=[ |
| results_df_preview, |
| duplicate_files_out, |
| full_duplicate_data_by_file, |
| actual_time_taken_number, |
| task_textbox, |
| all_page_line_level_ocr_results_df_base, |
| input_review_files, |
| duplicate_pages_list_state, |
| ], |
| show_progress_on=[results_df_preview, redaction_output_summary_textbox], |
| api_visibility="undocumented", |
| ).success( |
| fn=export_outputs_to_s3, |
| |
| inputs=[ |
| duplicate_files_out, |
| s3_output_folder_state, |
| save_outputs_to_s3_checkbox, |
| in_duplicate_pages, |
| ], |
| outputs=None, |
| api_visibility="undocumented", |
| ).success( |
| fn=lambda: "deduplicate", outputs=[task_textbox], api_visibility="undocumented" |
| ).success( |
| fn=lambda *args: usage_callback.flag( |
| list(args), |
| save_to_csv=SAVE_LOGS_TO_CSV, |
| save_to_dynamodb=SAVE_LOGS_TO_DYNAMODB, |
| dynamodb_table_name=USAGE_LOG_DYNAMODB_TABLE_NAME, |
| dynamodb_headers=DYNAMODB_USAGE_LOG_HEADERS, |
| replacement_headers=CSV_USAGE_LOG_HEADERS, |
| ), |
| inputs=( |
| [ |
| session_hash_textbox, |
| doc_file_name_no_extension_textbox, |
| blank_data_file_name_no_extension_textbox_for_logs, |
| actual_time_taken_number, |
| total_pdf_page_count, |
| textract_query_number, |
| pii_identification_method_drop, |
| comprehend_query_number, |
| cost_code_choice_drop, |
| handwrite_signature_checkbox, |
| host_name_textbox, |
| text_extract_method_radio, |
| is_a_textract_api_call, |
| task_textbox, |
| vlm_model_name_textbox, |
| vlm_total_input_tokens_number, |
| vlm_total_output_tokens_number, |
| llm_model_name_textbox, |
| llm_total_input_tokens_number, |
| llm_total_output_tokens_number, |
| ] |
| if DISPLAY_FILE_NAMES_IN_LOGS |
| else [ |
| session_hash_textbox, |
| placeholder_doc_file_name_no_extension_textbox_for_logs, |
| blank_data_file_name_no_extension_textbox_for_logs, |
| actual_time_taken_number, |
| total_pdf_page_count, |
| textract_query_number, |
| pii_identification_method_drop, |
| comprehend_query_number, |
| cost_code_choice_drop, |
| handwrite_signature_checkbox, |
| host_name_textbox, |
| text_extract_method_radio, |
| is_a_textract_api_call, |
| task_textbox, |
| vlm_model_name_textbox, |
| vlm_total_input_tokens_number, |
| vlm_total_output_tokens_number, |
| llm_model_name_textbox, |
| llm_total_input_tokens_number, |
| llm_total_output_tokens_number, |
| ] |
| ), |
| outputs=[flag_value_placeholder], |
| preprocess=False, |
| api_visibility="undocumented", |
| ).success( |
| fn=upload_log_file_to_s3, |
| inputs=[usage_logs_state, usage_s3_logs_loc_state], |
| outputs=[s3_logs_output_textbox], |
| api_visibility="undocumented", |
| ).success( |
| fn=create_annotation_objects_from_duplicates, |
| inputs=[ |
| results_df_preview, |
| all_page_line_level_ocr_results_df_base, |
| page_sizes, |
| combine_page_text_for_duplicates_bool, |
| ], |
| outputs=[new_duplicate_search_annotation_object], |
| show_progress_on=[ |
| new_duplicate_search_annotation_object, |
| redaction_output_summary_textbox, |
| ], |
| api_visibility="undocumented", |
| ).success( |
| fn=apply_whole_page_redactions_from_list, |
| inputs=[ |
| duplicate_pages_list_state, |
| doc_file_name_with_extension_textbox, |
| review_file_df, |
| duplicate_files_out, |
| pdf_doc_state, |
| page_sizes, |
| all_image_annotations_state, |
| combine_page_text_for_duplicates_bool, |
| new_duplicate_search_annotation_object, |
| latest_review_file_path, |
| ], |
| outputs=[review_file_df, all_image_annotations_state], |
| api_visibility="undocumented", |
| ).success( |
| update_annotator_page_from_review_df, |
| inputs=[ |
| review_file_df, |
| images_pdf_state, |
| page_sizes, |
| all_image_annotations_state, |
| annotator, |
| selected_entity_dataframe_row, |
| input_folder_textbox, |
| doc_full_file_name_textbox, |
| ], |
| outputs=[ |
| annotator, |
| all_image_annotations_state, |
| annotate_current_page, |
| page_sizes, |
| review_file_df, |
| annotate_previous_page, |
| ], |
| show_progress_on=[annotator], |
| api_visibility="undocumented", |
| ).success( |
| update_annotator_object_and_filter_df, |
| inputs=[ |
| all_image_annotations_state, |
| annotate_current_page, |
| recogniser_entity_dropdown, |
| page_entity_dropdown, |
| page_entity_dropdown_redaction, |
| text_entity_dropdown, |
| recogniser_entity_dataframe_base, |
| annotator_zoom_number, |
| review_file_df, |
| page_sizes, |
| doc_full_file_name_textbox, |
| input_folder_textbox, |
| ], |
| outputs=[ |
| annotator, |
| annotate_current_page, |
| annotate_current_page_bottom, |
| annotate_previous_page, |
| recogniser_entity_dropdown, |
| recogniser_entity_dataframe, |
| recogniser_entity_dataframe_base, |
| text_entity_dropdown, |
| page_entity_dropdown, |
| page_entity_dropdown_redaction, |
| page_sizes, |
| all_image_annotations_state, |
| ], |
| show_progress_on=[annotator], |
| api_visibility="undocumented", |
| ) |
|
|
| |
| document_redact_btn.click( |
| fn=reset_state_vars, |
| outputs=[ |
| all_image_annotations_state, |
| all_page_line_level_ocr_results_df_base, |
| all_decision_process_table_state, |
| comprehend_query_number, |
| textract_metadata_textbox, |
| annotator, |
| output_file_list_state, |
| log_files_output_list_state, |
| recogniser_entity_dataframe, |
| recogniser_entity_dataframe_base, |
| pdf_doc_state, |
| duplication_file_path_outputs_list_state, |
| redaction_output_summary_textbox, |
| is_a_textract_api_call, |
| textract_query_number, |
| all_page_line_level_ocr_results_with_words, |
| input_review_files, |
| latest_file_completed_num, |
| llm_total_input_tokens_number, |
| llm_total_output_tokens_number, |
| vlm_total_input_tokens_number, |
| vlm_total_output_tokens_number, |
| ], |
| api_visibility="undocumented", |
| ).success( |
| fn=enforce_cost_codes, |
| inputs=[ |
| enforce_cost_code_bool, |
| cost_code_choice_drop, |
| cost_code_dataframe_base, |
| ], |
| api_visibility="undocumented", |
| ).success( |
| fn=choose_and_run_redactor, |
| inputs=[ |
| in_doc_files, |
| prepared_pdf_state, |
| images_pdf_state, |
| in_redact_entities, |
| in_redact_comprehend_entities, |
| in_redact_llm_entities, |
| text_extract_method_radio, |
| in_allow_list_state, |
| in_deny_list_state, |
| in_fully_redacted_list_state, |
| latest_file_completed_num, |
| redaction_output_summary_textbox, |
| output_file_list_state, |
| log_files_output_list_state, |
| page_min, |
| page_max, |
| actual_time_taken_number, |
| handwrite_signature_checkbox, |
| textract_metadata_textbox, |
| all_image_annotations_state, |
| all_page_line_level_ocr_results_df_base, |
| all_decision_process_table_state, |
| pdf_doc_state, |
| pii_identification_method_drop, |
| max_fuzzy_spelling_mistakes_num, |
| match_fuzzy_whole_phrase_bool, |
| aws_access_key_textbox, |
| aws_secret_key_textbox, |
| annotate_max_pages, |
| review_file_df, |
| output_folder_textbox, |
| document_cropboxes, |
| page_sizes, |
| textract_output_found_checkbox, |
| only_extract_text_radio, |
| duplication_file_path_outputs_list_state, |
| latest_review_file_path, |
| input_folder_textbox, |
| latest_ocr_file_path, |
| all_page_line_level_ocr_results, |
| all_page_line_level_ocr_results_with_words, |
| all_page_line_level_ocr_results_with_words_df_base, |
| local_ocr_method_radio, |
| chosen_language_drop, |
| input_review_files, |
| custom_llm_instructions_textbox, |
| inference_server_vlm_model_textbox, |
| efficient_ocr_checkbox, |
| efficient_ocr_min_words_number, |
| efficient_ocr_min_image_coverage_number, |
| efficient_ocr_min_embedded_image_px_number, |
| high_quality_textract_ocr_checkbox, |
| overwrite_existing_ocr_checkbox, |
| save_page_ocr_visualisations_checkbox, |
| ], |
| outputs=[ |
| redaction_output_summary_textbox, |
| output_file, |
| output_file_list_state, |
| latest_file_completed_num, |
| log_files_output, |
| log_files_output_list_state, |
| actual_time_taken_number, |
| textract_metadata_textbox, |
| pdf_doc_state, |
| all_image_annotations_state, |
| current_loop_page_number, |
| page_break_return, |
| all_page_line_level_ocr_results_df_base, |
| all_decision_process_table_state, |
| comprehend_query_number, |
| input_pdf_for_review, |
| annotate_max_pages, |
| annotate_max_pages_bottom, |
| prepared_pdf_state, |
| images_pdf_state, |
| review_file_df, |
| page_sizes, |
| duplication_file_path_outputs_list_state, |
| in_duplicate_pages, |
| in_summarisation_ocr_files, |
| latest_review_file_path, |
| textract_query_number, |
| latest_ocr_file_path, |
| all_page_line_level_ocr_results, |
| all_page_line_level_ocr_results_with_words, |
| all_page_line_level_ocr_results_with_words_df_base, |
| backup_review_state, |
| task_textbox, |
| input_review_files, |
| vlm_model_name_textbox, |
| vlm_total_input_tokens_number, |
| vlm_total_output_tokens_number, |
| llm_model_name_textbox, |
| llm_total_input_tokens_number, |
| llm_total_output_tokens_number, |
| total_pdf_page_count, |
| ], |
| show_progress_on=[redaction_output_summary_textbox], |
| api_visibility="undocumented", |
| ).success( |
| fn=lambda *args: usage_callback.flag( |
| list(args), |
| save_to_csv=SAVE_LOGS_TO_CSV, |
| save_to_dynamodb=SAVE_LOGS_TO_DYNAMODB, |
| dynamodb_table_name=USAGE_LOG_DYNAMODB_TABLE_NAME, |
| dynamodb_headers=DYNAMODB_USAGE_LOG_HEADERS, |
| replacement_headers=CSV_USAGE_LOG_HEADERS, |
| ), |
| inputs=( |
| [ |
| session_hash_textbox, |
| doc_file_name_no_extension_textbox, |
| blank_data_file_name_no_extension_textbox_for_logs, |
| actual_time_taken_number, |
| total_pdf_page_count, |
| textract_query_number, |
| pii_identification_method_drop, |
| comprehend_query_number, |
| cost_code_choice_drop, |
| handwrite_signature_checkbox, |
| host_name_textbox, |
| text_extract_method_radio, |
| is_a_textract_api_call, |
| task_textbox, |
| vlm_model_name_textbox, |
| vlm_total_input_tokens_number, |
| vlm_total_output_tokens_number, |
| llm_model_name_textbox, |
| llm_total_input_tokens_number, |
| llm_total_output_tokens_number, |
| ] |
| if DISPLAY_FILE_NAMES_IN_LOGS |
| else [ |
| session_hash_textbox, |
| placeholder_doc_file_name_no_extension_textbox_for_logs, |
| blank_data_file_name_no_extension_textbox_for_logs, |
| actual_time_taken_number, |
| total_pdf_page_count, |
| textract_query_number, |
| pii_identification_method_drop, |
| comprehend_query_number, |
| cost_code_choice_drop, |
| handwrite_signature_checkbox, |
| host_name_textbox, |
| text_extract_method_radio, |
| is_a_textract_api_call, |
| task_textbox, |
| vlm_model_name_textbox, |
| vlm_total_input_tokens_number, |
| vlm_total_output_tokens_number, |
| llm_model_name_textbox, |
| llm_total_input_tokens_number, |
| llm_total_output_tokens_number, |
| ] |
| ), |
| outputs=[flag_value_placeholder], |
| preprocess=False, |
| api_visibility="undocumented", |
| ).success( |
| fn=upload_log_file_to_s3, |
| inputs=[usage_logs_state, usage_s3_logs_loc_state], |
| outputs=[s3_logs_output_textbox], |
| api_visibility="undocumented", |
| ).success( |
| fn=export_outputs_to_s3, |
| inputs=[ |
| output_file_list_state, |
| s3_output_folder_state, |
| save_outputs_to_s3_checkbox, |
| in_doc_files, |
| ], |
| outputs=None, |
| api_visibility="undocumented", |
| ).success( |
| fn=update_annotator_object_and_filter_df, |
| inputs=[ |
| all_image_annotations_state, |
| page_min, |
| recogniser_entity_dropdown, |
| page_entity_dropdown, |
| page_entity_dropdown_redaction, |
| text_entity_dropdown, |
| recogniser_entity_dataframe_base, |
| annotator_zoom_number, |
| review_file_df, |
| page_sizes, |
| doc_full_file_name_textbox, |
| input_folder_textbox, |
| ], |
| outputs=[ |
| annotator, |
| annotate_current_page, |
| annotate_current_page_bottom, |
| annotate_previous_page, |
| recogniser_entity_dropdown, |
| recogniser_entity_dataframe, |
| recogniser_entity_dataframe_base, |
| text_entity_dropdown, |
| page_entity_dropdown, |
| page_entity_dropdown_redaction, |
| page_sizes, |
| all_image_annotations_state, |
| ], |
| show_progress_on=[annotator], |
| api_visibility="undocumented", |
| ).success( |
| fn=check_for_existing_textract_file, |
| inputs=[ |
| doc_file_name_no_extension_textbox, |
| output_folder_textbox, |
| handwrite_signature_checkbox, |
| ], |
| outputs=[textract_output_found_checkbox], |
| api_visibility="undocumented", |
| ).success( |
| fn=check_for_relevant_ocr_output_with_words, |
| inputs=[ |
| doc_file_name_no_extension_textbox, |
| text_extract_method_radio, |
| output_folder_textbox, |
| ], |
| outputs=[relevant_ocr_output_with_words_found_checkbox], |
| api_visibility="undocumented", |
| ).success( |
| fn=reveal_feedback_buttons, |
| outputs=[ |
| pdf_feedback_radio, |
| pdf_further_details_text, |
| pdf_submit_feedback_btn, |
| pdf_feedback_title, |
| ], |
| api_visibility="undocumented", |
| ).success( |
| fn=check_duplicate_pages_checkbox, |
| inputs=[redact_duplicate_pages_checkbox], |
| outputs=None, |
| api_visibility="undocumented", |
| ).failure( |
| fn=lambda: None, |
| api_visibility="undocumented", |
| ).then( |
| fn=reset_aws_call_vars, |
| outputs=[ |
| comprehend_query_number, |
| textract_query_number, |
| vlm_total_input_tokens_number, |
| vlm_total_output_tokens_number, |
| llm_total_input_tokens_number, |
| llm_total_output_tokens_number, |
| llm_model_name_textbox, |
| vlm_model_name_textbox, |
| ], |
| api_visibility="undocumented", |
| ).success( |
| fn=run_duplicate_analysis, |
| inputs=[ |
| all_page_line_level_ocr_results_df_base, |
| duplicate_threshold_input, |
| min_word_count_input, |
| min_consecutive_pages_input, |
| greedy_match_input, |
| all_page_line_level_ocr_results_df_base, |
| input_review_files, |
| combine_page_text_for_duplicates_bool, |
| doc_file_name_with_extension_textbox, |
| output_folder_textbox, |
| ], |
| outputs=[ |
| results_df_preview, |
| duplicate_files_out, |
| full_duplicate_data_by_file, |
| actual_time_taken_number, |
| task_textbox, |
| all_page_line_level_ocr_results_df_base, |
| input_review_files, |
| duplicate_pages_list_state, |
| ], |
| show_progress_on=[results_df_preview, redaction_output_summary_textbox], |
| api_visibility="undocumented", |
| ).success( |
| fn=export_outputs_to_s3, |
| |
| inputs=[ |
| duplicate_files_out, |
| s3_output_folder_state, |
| save_outputs_to_s3_checkbox, |
| in_duplicate_pages, |
| ], |
| outputs=None, |
| api_visibility="undocumented", |
| ).success( |
| fn=lambda: "deduplicate", outputs=[task_textbox], api_visibility="undocumented" |
| ).success( |
| fn=lambda *args: usage_callback.flag( |
| list(args), |
| save_to_csv=SAVE_LOGS_TO_CSV, |
| save_to_dynamodb=SAVE_LOGS_TO_DYNAMODB, |
| dynamodb_table_name=USAGE_LOG_DYNAMODB_TABLE_NAME, |
| dynamodb_headers=DYNAMODB_USAGE_LOG_HEADERS, |
| replacement_headers=CSV_USAGE_LOG_HEADERS, |
| ), |
| inputs=( |
| [ |
| session_hash_textbox, |
| doc_file_name_no_extension_textbox, |
| blank_data_file_name_no_extension_textbox_for_logs, |
| actual_time_taken_number, |
| total_pdf_page_count, |
| textract_query_number, |
| pii_identification_method_drop, |
| comprehend_query_number, |
| cost_code_choice_drop, |
| handwrite_signature_checkbox, |
| host_name_textbox, |
| text_extract_method_radio, |
| is_a_textract_api_call, |
| task_textbox, |
| vlm_model_name_textbox, |
| vlm_total_input_tokens_number, |
| vlm_total_output_tokens_number, |
| llm_model_name_textbox, |
| llm_total_input_tokens_number, |
| llm_total_output_tokens_number, |
| ] |
| if DISPLAY_FILE_NAMES_IN_LOGS |
| else [ |
| session_hash_textbox, |
| placeholder_doc_file_name_no_extension_textbox_for_logs, |
| blank_data_file_name_no_extension_textbox_for_logs, |
| actual_time_taken_number, |
| total_pdf_page_count, |
| textract_query_number, |
| pii_identification_method_drop, |
| comprehend_query_number, |
| cost_code_choice_drop, |
| handwrite_signature_checkbox, |
| host_name_textbox, |
| text_extract_method_radio, |
| is_a_textract_api_call, |
| task_textbox, |
| vlm_model_name_textbox, |
| vlm_total_input_tokens_number, |
| vlm_total_output_tokens_number, |
| llm_model_name_textbox, |
| llm_total_input_tokens_number, |
| llm_total_output_tokens_number, |
| ] |
| ), |
| outputs=[flag_value_placeholder], |
| preprocess=False, |
| api_visibility="undocumented", |
| ).success( |
| fn=upload_log_file_to_s3, |
| inputs=[usage_logs_state, usage_s3_logs_loc_state], |
| outputs=[s3_logs_output_textbox], |
| api_visibility="undocumented", |
| ).success( |
| fn=create_annotation_objects_from_duplicates, |
| inputs=[ |
| results_df_preview, |
| all_page_line_level_ocr_results_df_base, |
| page_sizes, |
| combine_page_text_for_duplicates_bool, |
| ], |
| outputs=[new_duplicate_search_annotation_object], |
| show_progress_on=[ |
| new_duplicate_search_annotation_object, |
| redaction_output_summary_textbox, |
| ], |
| api_visibility="undocumented", |
| ).success( |
| fn=apply_whole_page_redactions_from_list, |
| inputs=[ |
| duplicate_pages_list_state, |
| doc_file_name_with_extension_textbox, |
| review_file_df, |
| duplicate_files_out, |
| pdf_doc_state, |
| page_sizes, |
| all_image_annotations_state, |
| combine_page_text_for_duplicates_bool, |
| new_duplicate_search_annotation_object, |
| latest_review_file_path, |
| ], |
| outputs=[review_file_df, all_image_annotations_state], |
| api_visibility="undocumented", |
| ).success( |
| update_annotator_page_from_review_df, |
| inputs=[ |
| review_file_df, |
| images_pdf_state, |
| page_sizes, |
| all_image_annotations_state, |
| annotator, |
| selected_entity_dataframe_row, |
| input_folder_textbox, |
| doc_full_file_name_textbox, |
| ], |
| outputs=[ |
| annotator, |
| all_image_annotations_state, |
| annotate_current_page, |
| page_sizes, |
| review_file_df, |
| annotate_previous_page, |
| ], |
| show_progress_on=[annotator], |
| api_visibility="undocumented", |
| ).success( |
| update_annotator_object_and_filter_df, |
| inputs=[ |
| all_image_annotations_state, |
| annotate_current_page, |
| recogniser_entity_dropdown, |
| page_entity_dropdown, |
| page_entity_dropdown_redaction, |
| text_entity_dropdown, |
| recogniser_entity_dataframe_base, |
| annotator_zoom_number, |
| review_file_df, |
| page_sizes, |
| doc_full_file_name_textbox, |
| input_folder_textbox, |
| ], |
| outputs=[ |
| annotator, |
| annotate_current_page, |
| annotate_current_page_bottom, |
| annotate_previous_page, |
| recogniser_entity_dropdown, |
| recogniser_entity_dataframe, |
| recogniser_entity_dataframe_base, |
| text_entity_dropdown, |
| page_entity_dropdown, |
| page_entity_dropdown_redaction, |
| page_sizes, |
| all_image_annotations_state, |
| ], |
| show_progress_on=[annotator], |
| api_visibility="undocumented", |
| ) |
|
|
| |
| all_page_line_level_ocr_results_df_base.change( |
| reset_ocr_base_dataframe, |
| inputs=[all_page_line_level_ocr_results_df_base], |
| outputs=[all_page_line_level_ocr_results_df], |
| api_visibility="undocumented", |
| ) |
| all_page_line_level_ocr_results_with_words_df_base.change( |
| reset_ocr_with_words_base_dataframe, |
| inputs=[ |
| all_page_line_level_ocr_results_with_words_df_base, |
| page_entity_dropdown_redaction, |
| ], |
| outputs=[ |
| all_page_line_level_ocr_results_with_words_df, |
| backup_all_page_line_level_ocr_results_with_words_df_base, |
| ], |
| api_visibility="undocumented", |
| ) |
|
|
| |
| send_document_to_textract_api_btn.click( |
| analyse_document_with_textract_api, |
| inputs=[ |
| prepared_pdf_state, |
| s3_whole_document_textract_input_subfolder, |
| s3_whole_document_textract_output_subfolder, |
| textract_job_detail_df, |
| s3_whole_document_textract_default_bucket, |
| output_folder_textbox, |
| handwrite_signature_checkbox, |
| successful_textract_api_call_number, |
| total_pdf_page_count, |
| ], |
| outputs=[ |
| job_output_textbox, |
| job_id_textbox, |
| job_type_dropdown, |
| successful_textract_api_call_number, |
| is_a_textract_api_call, |
| textract_query_number, |
| task_textbox, |
| ], |
| show_progress_on=[job_current_status], |
| api_visibility="send_document_to_textract_api", |
| ).success( |
| check_for_provided_job_id, |
| inputs=[job_id_textbox], |
| api_visibility="undocumented", |
| ).success( |
| poll_whole_document_textract_analysis_progress_and_download, |
| inputs=[ |
| job_id_textbox, |
| job_type_dropdown, |
| s3_whole_document_textract_output_subfolder, |
| doc_file_name_no_extension_textbox, |
| textract_job_detail_df, |
| s3_whole_document_textract_default_bucket, |
| output_folder_textbox, |
| s3_whole_document_textract_logs_subfolder, |
| local_whole_document_textract_logs_subfolder, |
| ], |
| outputs=[ |
| textract_job_output_file, |
| job_current_status, |
| textract_job_detail_df, |
| doc_file_name_no_extension_textbox, |
| ], |
| show_progress_on=[job_current_status], |
| api_visibility="undocumented", |
| ).success( |
| fn=check_for_existing_textract_file, |
| inputs=[doc_file_name_no_extension_textbox, output_folder_textbox], |
| outputs=[textract_output_found_checkbox], |
| show_progress_on=[job_current_status], |
| api_visibility="undocumented", |
| ) |
|
|
| check_state_of_textract_api_call_btn.click( |
| check_for_provided_job_id, |
| inputs=[job_id_textbox], |
| show_progress_on=[job_current_status], |
| api_visibility="undocumented", |
| ).success( |
| poll_whole_document_textract_analysis_progress_and_download, |
| inputs=[ |
| job_id_textbox, |
| job_type_dropdown, |
| s3_whole_document_textract_output_subfolder, |
| doc_file_name_no_extension_textbox, |
| textract_job_detail_df, |
| s3_whole_document_textract_default_bucket, |
| output_folder_textbox, |
| s3_whole_document_textract_logs_subfolder, |
| local_whole_document_textract_logs_subfolder, |
| ], |
| outputs=[ |
| textract_job_output_file, |
| job_current_status, |
| textract_job_detail_df, |
| doc_file_name_no_extension_textbox, |
| ], |
| show_progress_on=[job_current_status], |
| api_visibility="download_textract_job_output", |
| ).success( |
| fn=check_for_existing_textract_file, |
| inputs=[doc_file_name_no_extension_textbox, output_folder_textbox], |
| outputs=[textract_output_found_checkbox], |
| show_progress_on=[job_current_status], |
| api_visibility="undocumented", |
| ) |
|
|
| textract_job_detail_df.select( |
| df_select_callback_textract_api, |
| inputs=[textract_output_found_checkbox], |
| outputs=[job_id_textbox, job_type_dropdown, selected_job_id_row], |
| api_visibility="undocumented", |
| ) |
|
|
| convert_textract_outputs_to_ocr_results.click( |
| replace_existing_pdf_input_for_whole_document_outputs, |
| inputs=[ |
| s3_whole_document_textract_input_subfolder, |
| doc_file_name_no_extension_textbox, |
| output_folder_textbox, |
| s3_whole_document_textract_default_bucket, |
| in_doc_files, |
| input_folder_textbox, |
| ], |
| outputs=[ |
| in_doc_files, |
| doc_file_name_no_extension_textbox, |
| doc_file_name_with_extension_textbox, |
| doc_full_file_name_textbox, |
| doc_file_name_textbox_list, |
| total_pdf_page_count, |
| ], |
| show_progress_on=[redaction_output_summary_textbox], |
| api_visibility="undocumented", |
| ).success( |
| fn=prepare_image_or_pdf_with_efficient_ocr, |
| inputs=[ |
| in_doc_files, |
| text_extract_method_radio, |
| all_page_line_level_ocr_results_df_base, |
| all_page_line_level_ocr_results_with_words_df_base, |
| latest_file_completed_num, |
| redaction_output_summary_textbox, |
| first_loop_state, |
| annotate_max_pages, |
| all_image_annotations_state, |
| prepare_for_review_bool_false, |
| in_fully_redacted_list_state, |
| output_folder_textbox, |
| input_folder_textbox, |
| efficient_ocr_checkbox, |
| prepare_images_bool_false, |
| page_sizes, |
| pdf_doc_state, |
| page_min, |
| page_max, |
| ], |
| outputs=[ |
| redaction_output_summary_textbox, |
| prepared_pdf_state, |
| images_pdf_state, |
| annotate_max_pages, |
| annotate_max_pages_bottom, |
| pdf_doc_state, |
| all_image_annotations_state, |
| review_file_df, |
| document_cropboxes, |
| page_sizes, |
| textract_output_found_checkbox, |
| all_img_details_state, |
| all_page_line_level_ocr_results_df_base, |
| relevant_ocr_output_with_words_found_checkbox, |
| all_page_line_level_ocr_results_with_words_df_base, |
| ], |
| show_progress_on=[redaction_output_summary_textbox], |
| api_name="load_and_prepare_documents_or_data", |
| ).success( |
| fn=check_for_existing_textract_file, |
| inputs=[ |
| doc_file_name_no_extension_textbox, |
| output_folder_textbox, |
| handwrite_signature_checkbox, |
| ], |
| outputs=[textract_output_found_checkbox], |
| api_visibility="undocumented", |
| ).success( |
| fn=check_for_relevant_ocr_output_with_words, |
| inputs=[ |
| doc_file_name_no_extension_textbox, |
| text_extract_method_radio, |
| output_folder_textbox, |
| ], |
| outputs=[relevant_ocr_output_with_words_found_checkbox], |
| api_visibility="undocumented", |
| ).success( |
| fn=check_textract_outputs_exist, |
| inputs=[textract_output_found_checkbox], |
| api_visibility="undocumented", |
| ).success( |
| fn=reset_state_vars, |
| outputs=[ |
| all_image_annotations_state, |
| all_page_line_level_ocr_results_df_base, |
| all_decision_process_table_state, |
| comprehend_query_number, |
| textract_metadata_textbox, |
| annotator, |
| output_file_list_state, |
| log_files_output_list_state, |
| recogniser_entity_dataframe, |
| recogniser_entity_dataframe_base, |
| pdf_doc_state, |
| duplication_file_path_outputs_list_state, |
| redaction_output_summary_textbox, |
| is_a_textract_api_call, |
| textract_query_number, |
| all_page_line_level_ocr_results_with_words, |
| input_review_files, |
| llm_total_input_tokens_number, |
| llm_total_output_tokens_number, |
| vlm_total_input_tokens_number, |
| vlm_total_output_tokens_number, |
| ], |
| api_visibility="undocumented", |
| ).success( |
| fn=choose_and_run_redactor, |
| inputs=[ |
| in_doc_files, |
| prepared_pdf_state, |
| images_pdf_state, |
| in_redact_entities, |
| in_redact_comprehend_entities, |
| in_redact_llm_entities, |
| textract_only_method_drop, |
| in_allow_list_state, |
| in_deny_list_state, |
| in_fully_redacted_list_state, |
| latest_file_completed_num, |
| redaction_output_summary_textbox, |
| output_file_list_state, |
| log_files_output_list_state, |
| page_min, |
| page_max, |
| actual_time_taken_number, |
| handwrite_signature_checkbox, |
| textract_metadata_textbox, |
| all_image_annotations_state, |
| all_page_line_level_ocr_results_df_base, |
| all_decision_process_table_state, |
| pdf_doc_state, |
| no_redaction_method_drop, |
| max_fuzzy_spelling_mistakes_num, |
| match_fuzzy_whole_phrase_bool, |
| aws_access_key_textbox, |
| aws_secret_key_textbox, |
| annotate_max_pages, |
| review_file_df, |
| output_folder_textbox, |
| document_cropboxes, |
| page_sizes, |
| textract_output_found_checkbox, |
| only_extract_text_radio, |
| extract_text_only_tab_redaction_override, |
| duplication_file_path_outputs_list_state, |
| latest_review_file_path, |
| input_folder_textbox, |
| latest_ocr_file_path, |
| all_page_line_level_ocr_results, |
| all_page_line_level_ocr_results_with_words, |
| all_page_line_level_ocr_results_with_words_df_base, |
| local_ocr_method_radio, |
| chosen_language_drop, |
| input_review_files, |
| custom_llm_instructions_textbox, |
| inference_server_vlm_model_textbox, |
| efficient_ocr_checkbox, |
| efficient_ocr_min_words_number, |
| efficient_ocr_min_image_coverage_number, |
| efficient_ocr_min_embedded_image_px_number, |
| high_quality_textract_ocr_checkbox, |
| overwrite_existing_ocr_checkbox, |
| save_page_ocr_visualisations_checkbox, |
| ], |
| outputs=[ |
| redaction_output_summary_textbox, |
| output_file, |
| output_file_list_state, |
| latest_file_completed_num, |
| log_files_output, |
| log_files_output_list_state, |
| actual_time_taken_number, |
| textract_metadata_textbox, |
| pdf_doc_state, |
| all_image_annotations_state, |
| current_loop_page_number, |
| page_break_return, |
| all_page_line_level_ocr_results_df_base, |
| all_decision_process_table_state, |
| comprehend_query_number, |
| input_pdf_for_review, |
| annotate_max_pages, |
| annotate_max_pages_bottom, |
| prepared_pdf_state, |
| images_pdf_state, |
| review_file_df, |
| page_sizes, |
| duplication_file_path_outputs_list_state, |
| in_duplicate_pages, |
| in_summarisation_ocr_files, |
| latest_review_file_path, |
| textract_query_number, |
| latest_ocr_file_path, |
| all_page_line_level_ocr_results, |
| all_page_line_level_ocr_results_with_words, |
| all_page_line_level_ocr_results_with_words_df_base, |
| backup_review_state, |
| task_textbox, |
| input_review_files, |
| vlm_model_name_textbox, |
| vlm_total_input_tokens_number, |
| vlm_total_output_tokens_number, |
| llm_model_name_textbox, |
| llm_total_input_tokens_number, |
| llm_total_output_tokens_number, |
| total_pdf_page_count, |
| ], |
| show_progress_on=[redaction_output_summary_textbox], |
| api_visibility="undocumented", |
| ).success( |
| fn=export_outputs_to_s3, |
| inputs=[ |
| output_file_list_state, |
| s3_output_folder_state, |
| save_outputs_to_s3_checkbox, |
| in_doc_files, |
| ], |
| outputs=None, |
| api_visibility="undocumented", |
| ).success( |
| fn=update_annotator_object_and_filter_df, |
| inputs=[ |
| all_image_annotations_state, |
| page_min, |
| recogniser_entity_dropdown, |
| page_entity_dropdown, |
| page_entity_dropdown_redaction, |
| text_entity_dropdown, |
| recogniser_entity_dataframe_base, |
| annotator_zoom_number, |
| review_file_df, |
| page_sizes, |
| doc_full_file_name_textbox, |
| input_folder_textbox, |
| ], |
| outputs=[ |
| annotator, |
| annotate_current_page, |
| annotate_current_page_bottom, |
| annotate_previous_page, |
| recogniser_entity_dropdown, |
| recogniser_entity_dataframe, |
| recogniser_entity_dataframe_base, |
| text_entity_dropdown, |
| page_entity_dropdown, |
| page_entity_dropdown_redaction, |
| page_sizes, |
| all_image_annotations_state, |
| ], |
| show_progress_on=[annotator], |
| api_visibility="undocumented", |
| ) |
|
|
| go_to_review_redactions_tab_btn.click( |
| fn=change_tab_to_review_redactions, |
| inputs=None, |
| outputs=tabs, |
| api_visibility="undocumented", |
| ) |
|
|
| |
| |
| |
|
|
| |
| input_pdf_for_review.upload( |
| fn=reset_review_vars, |
| inputs=None, |
| outputs=[recogniser_entity_dataframe, recogniser_entity_dataframe_base], |
| api_visibility="undocumented", |
| ).success( |
| fn=get_document_file_names, |
| inputs=[input_pdf_for_review], |
| outputs=[ |
| doc_file_name_no_extension_textbox, |
| doc_file_name_with_extension_textbox, |
| doc_full_file_name_textbox, |
| doc_file_name_textbox_list, |
| total_pdf_page_count, |
| ], |
| api_visibility="undocumented", |
| ).success( |
| fn=prepare_image_or_pdf_with_efficient_ocr, |
| inputs=[ |
| input_pdf_for_review, |
| text_extract_method_radio, |
| all_page_line_level_ocr_results_df_base, |
| all_page_line_level_ocr_results_with_words_df_base, |
| latest_file_completed_num, |
| redaction_output_summary_textbox, |
| second_loop_state, |
| annotate_max_pages, |
| all_image_annotations_state, |
| prepare_for_review_bool, |
| in_fully_redacted_list_state, |
| output_folder_textbox, |
| input_folder_textbox, |
| efficient_ocr_checkbox, |
| prepare_images_bool_false, |
| page_sizes, |
| pdf_doc_state, |
| page_min, |
| page_max, |
| ], |
| outputs=[ |
| redaction_output_summary_textbox, |
| prepared_pdf_state, |
| images_pdf_state, |
| annotate_max_pages, |
| annotate_max_pages_bottom, |
| pdf_doc_state, |
| all_image_annotations_state, |
| review_file_df, |
| document_cropboxes, |
| page_sizes, |
| textract_output_found_checkbox, |
| all_img_details_state, |
| all_page_line_level_ocr_results_df_base, |
| relevant_ocr_output_with_words_found_checkbox, |
| all_page_line_level_ocr_results_with_words_df_base, |
| ], |
| show_progress_on=[redaction_output_summary_textbox, input_pdf_for_review], |
| api_visibility="undocumented", |
| ).success( |
| update_annotator_object_and_filter_df, |
| inputs=[ |
| all_image_annotations_state, |
| annotate_current_page, |
| recogniser_entity_dropdown, |
| page_entity_dropdown, |
| page_entity_dropdown_redaction, |
| text_entity_dropdown, |
| recogniser_entity_dataframe_base, |
| annotator_zoom_number, |
| review_file_df, |
| page_sizes, |
| doc_full_file_name_textbox, |
| input_folder_textbox, |
| ], |
| outputs=[ |
| annotator, |
| annotate_current_page, |
| annotate_current_page_bottom, |
| annotate_previous_page, |
| recogniser_entity_dropdown, |
| recogniser_entity_dataframe, |
| recogniser_entity_dataframe_base, |
| text_entity_dropdown, |
| page_entity_dropdown, |
| page_entity_dropdown_redaction, |
| page_sizes, |
| all_image_annotations_state, |
| ], |
| show_progress_on=[annotator], |
| api_visibility="undocumented", |
| ).success( |
| apply_redactions_to_review_df_and_files, |
| inputs=[ |
| annotator, |
| doc_full_file_name_textbox, |
| pdf_doc_state, |
| all_image_annotations_state, |
| annotate_current_page, |
| review_file_df, |
| output_folder_textbox, |
| do_not_save_pdf_state, |
| page_sizes, |
| input_folder_textbox, |
| ], |
| outputs=[ |
| pdf_doc_state, |
| all_image_annotations_state, |
| input_pdf_for_review, |
| log_files_output, |
| review_file_df, |
| ], |
| show_progress_on=[input_pdf_for_review], |
| api_visibility="undocumented", |
| ) |
|
|
| |
| input_review_files.upload( |
| fn=prepare_image_or_pdf_with_efficient_ocr, |
| inputs=[ |
| input_review_files, |
| text_extract_method_radio, |
| all_page_line_level_ocr_results_df_base, |
| all_page_line_level_ocr_results_with_words_df_base, |
| latest_file_completed_num, |
| redaction_output_summary_textbox, |
| second_loop_state, |
| annotate_max_pages, |
| all_image_annotations_state, |
| prepare_for_review_bool, |
| in_fully_redacted_list_state, |
| output_folder_textbox, |
| input_folder_textbox, |
| efficient_ocr_checkbox, |
| prepare_images_bool_false, |
| page_sizes, |
| pdf_doc_state, |
| page_min, |
| page_max, |
| ], |
| outputs=[ |
| redaction_output_summary_textbox, |
| prepared_pdf_state, |
| images_pdf_state, |
| annotate_max_pages, |
| annotate_max_pages_bottom, |
| pdf_doc_state, |
| all_image_annotations_state, |
| review_file_df, |
| document_cropboxes, |
| page_sizes, |
| textract_output_found_checkbox, |
| all_img_details_state, |
| all_page_line_level_ocr_results_df_base, |
| relevant_ocr_output_with_words_found_checkbox, |
| all_page_line_level_ocr_results_with_words_df_base, |
| ], |
| show_progress_on=[redaction_output_summary_textbox], |
| api_visibility="undocumented", |
| ).success( |
| update_annotator_object_and_filter_df, |
| inputs=[ |
| all_image_annotations_state, |
| annotate_current_page, |
| recogniser_entity_dropdown, |
| page_entity_dropdown, |
| page_entity_dropdown_redaction, |
| text_entity_dropdown, |
| recogniser_entity_dataframe_base, |
| annotator_zoom_number, |
| review_file_df, |
| page_sizes, |
| doc_full_file_name_textbox, |
| input_folder_textbox, |
| ], |
| outputs=[ |
| annotator, |
| annotate_current_page, |
| annotate_current_page_bottom, |
| annotate_previous_page, |
| recogniser_entity_dropdown, |
| recogniser_entity_dataframe, |
| recogniser_entity_dataframe_base, |
| text_entity_dropdown, |
| page_entity_dropdown, |
| page_entity_dropdown_redaction, |
| page_sizes, |
| all_image_annotations_state, |
| ], |
| show_progress_on=[annotator], |
| api_visibility="undocumented", |
| ).success( |
| apply_redactions_to_review_df_and_files, |
| inputs=[ |
| annotator, |
| doc_full_file_name_textbox, |
| pdf_doc_state, |
| all_image_annotations_state, |
| annotate_current_page, |
| review_file_df, |
| output_folder_textbox, |
| do_not_save_pdf_state, |
| page_sizes, |
| input_folder_textbox, |
| ], |
| outputs=[ |
| pdf_doc_state, |
| all_image_annotations_state, |
| input_pdf_for_review, |
| log_files_output, |
| review_file_df, |
| ], |
| show_progress_on=[input_pdf_for_review], |
| api_visibility="undocumented", |
| ) |
|
|
| |
| |
| |
| |
| |
| |
| |
|
|
| review_file_df_update_btn.click( |
| validate_review_file_df, |
| inputs=[review_file_df], |
| outputs=[], |
| api_visibility="undocumented", |
| ).success( |
| update_annotator_page_from_review_df, |
| inputs=[ |
| review_file_df, |
| images_pdf_state, |
| page_sizes, |
| all_image_annotations_state, |
| annotator, |
| selected_entity_dataframe_row, |
| input_folder_textbox, |
| doc_full_file_name_textbox, |
| ], |
| outputs=[ |
| annotator, |
| all_image_annotations_state, |
| annotate_current_page, |
| page_sizes, |
| review_file_df, |
| annotate_previous_page, |
| ], |
| show_progress_on=[annotator], |
| api_visibility="undocumented", |
| ).success( |
| update_annotator_object_and_filter_df, |
| inputs=[ |
| all_image_annotations_state, |
| annotate_current_page, |
| recogniser_entity_dropdown, |
| page_entity_dropdown, |
| page_entity_dropdown_redaction, |
| text_entity_dropdown, |
| recogniser_entity_dataframe_base, |
| annotator_zoom_number, |
| review_file_df, |
| page_sizes, |
| doc_full_file_name_textbox, |
| input_folder_textbox, |
| ], |
| outputs=[ |
| annotator, |
| annotate_current_page, |
| annotate_current_page_bottom, |
| annotate_previous_page, |
| recogniser_entity_dropdown, |
| recogniser_entity_dataframe, |
| recogniser_entity_dataframe_base, |
| text_entity_dropdown, |
| page_entity_dropdown, |
| page_entity_dropdown_redaction, |
| page_sizes, |
| all_image_annotations_state, |
| ], |
| show_progress_on=[annotator], |
| api_visibility="undocumented", |
| ) |
|
|
| |
| annotate_current_page.submit( |
| update_all_page_annotation_object_based_on_previous_page, |
| inputs=[ |
| annotator, |
| annotate_current_page, |
| annotate_previous_page, |
| all_image_annotations_state, |
| page_sizes, |
| ], |
| outputs=[ |
| all_image_annotations_state, |
| annotate_previous_page, |
| annotate_current_page_bottom, |
| ], |
| api_visibility="undocumented", |
| ).success( |
| update_annotator_object_and_filter_df, |
| inputs=[ |
| all_image_annotations_state, |
| annotate_current_page, |
| recogniser_entity_dropdown, |
| page_entity_dropdown, |
| page_entity_dropdown_redaction, |
| text_entity_dropdown, |
| recogniser_entity_dataframe_base, |
| annotator_zoom_number, |
| review_file_df, |
| page_sizes, |
| doc_full_file_name_textbox, |
| input_folder_textbox, |
| ], |
| outputs=[ |
| annotator, |
| annotate_current_page, |
| annotate_current_page_bottom, |
| annotate_previous_page, |
| recogniser_entity_dropdown, |
| recogniser_entity_dataframe, |
| recogniser_entity_dataframe_base, |
| text_entity_dropdown, |
| page_entity_dropdown, |
| page_entity_dropdown_redaction, |
| page_sizes, |
| all_image_annotations_state, |
| ], |
| show_progress_on=[annotator], |
| api_visibility="undocumented", |
| ).success( |
| apply_redactions_to_review_df_and_files, |
| inputs=[ |
| annotator, |
| doc_full_file_name_textbox, |
| pdf_doc_state, |
| all_image_annotations_state, |
| annotate_current_page, |
| review_file_df, |
| output_folder_textbox, |
| do_not_save_pdf_state, |
| page_sizes, |
| input_folder_textbox, |
| ], |
| outputs=[ |
| pdf_doc_state, |
| all_image_annotations_state, |
| input_pdf_for_review, |
| log_files_output, |
| review_file_df, |
| ], |
| show_progress_on=[input_pdf_for_review], |
| api_visibility="undocumented", |
| ) |
|
|
| annotation_last_page_button.click( |
| fn=decrease_page, |
| inputs=[annotate_current_page, all_image_annotations_state], |
| outputs=[annotate_current_page, annotate_current_page_bottom], |
| show_progress_on=[all_image_annotations_state], |
| api_visibility="undocumented", |
| ).success( |
| update_all_page_annotation_object_based_on_previous_page, |
| inputs=[ |
| annotator, |
| annotate_current_page, |
| annotate_previous_page, |
| all_image_annotations_state, |
| page_sizes, |
| ], |
| outputs=[ |
| all_image_annotations_state, |
| annotate_previous_page, |
| annotate_current_page_bottom, |
| ], |
| api_visibility="undocumented", |
| ).success( |
| update_annotator_object_and_filter_df, |
| inputs=[ |
| all_image_annotations_state, |
| annotate_current_page, |
| recogniser_entity_dropdown, |
| page_entity_dropdown, |
| page_entity_dropdown_redaction, |
| text_entity_dropdown, |
| recogniser_entity_dataframe_base, |
| annotator_zoom_number, |
| review_file_df, |
| page_sizes, |
| doc_full_file_name_textbox, |
| input_folder_textbox, |
| ], |
| outputs=[ |
| annotator, |
| annotate_current_page, |
| annotate_current_page_bottom, |
| annotate_previous_page, |
| recogniser_entity_dropdown, |
| recogniser_entity_dataframe, |
| recogniser_entity_dataframe_base, |
| text_entity_dropdown, |
| page_entity_dropdown, |
| page_entity_dropdown_redaction, |
| page_sizes, |
| all_image_annotations_state, |
| ], |
| show_progress_on=[annotator], |
| api_visibility="undocumented", |
| ).success( |
| apply_redactions_to_review_df_and_files, |
| inputs=[ |
| annotator, |
| doc_full_file_name_textbox, |
| pdf_doc_state, |
| all_image_annotations_state, |
| annotate_current_page, |
| review_file_df, |
| output_folder_textbox, |
| do_not_save_pdf_state, |
| page_sizes, |
| input_folder_textbox, |
| ], |
| outputs=[ |
| pdf_doc_state, |
| all_image_annotations_state, |
| input_pdf_for_review, |
| log_files_output, |
| review_file_df, |
| ], |
| show_progress_on=[input_pdf_for_review], |
| api_visibility="undocumented", |
| ) |
|
|
| annotation_next_page_button.click( |
| fn=increase_page, |
| inputs=[annotate_current_page, all_image_annotations_state], |
| outputs=[annotate_current_page, annotate_current_page_bottom], |
| show_progress_on=[all_image_annotations_state], |
| api_visibility="undocumented", |
| ).success( |
| update_all_page_annotation_object_based_on_previous_page, |
| inputs=[ |
| annotator, |
| annotate_current_page, |
| annotate_previous_page, |
| all_image_annotations_state, |
| page_sizes, |
| ], |
| outputs=[ |
| all_image_annotations_state, |
| annotate_previous_page, |
| annotate_current_page_bottom, |
| ], |
| api_visibility="undocumented", |
| ).success( |
| update_annotator_object_and_filter_df, |
| inputs=[ |
| all_image_annotations_state, |
| annotate_current_page, |
| recogniser_entity_dropdown, |
| page_entity_dropdown, |
| page_entity_dropdown_redaction, |
| text_entity_dropdown, |
| recogniser_entity_dataframe_base, |
| annotator_zoom_number, |
| review_file_df, |
| page_sizes, |
| doc_full_file_name_textbox, |
| input_folder_textbox, |
| ], |
| outputs=[ |
| annotator, |
| annotate_current_page, |
| annotate_current_page_bottom, |
| annotate_previous_page, |
| recogniser_entity_dropdown, |
| recogniser_entity_dataframe, |
| recogniser_entity_dataframe_base, |
| text_entity_dropdown, |
| page_entity_dropdown, |
| page_entity_dropdown_redaction, |
| page_sizes, |
| all_image_annotations_state, |
| ], |
| show_progress_on=[annotator], |
| api_visibility="undocumented", |
| ).success( |
| apply_redactions_to_review_df_and_files, |
| inputs=[ |
| annotator, |
| doc_full_file_name_textbox, |
| pdf_doc_state, |
| all_image_annotations_state, |
| annotate_current_page, |
| review_file_df, |
| output_folder_textbox, |
| do_not_save_pdf_state, |
| page_sizes, |
| input_folder_textbox, |
| ], |
| outputs=[ |
| pdf_doc_state, |
| all_image_annotations_state, |
| input_pdf_for_review, |
| log_files_output, |
| review_file_df, |
| ], |
| show_progress_on=[input_pdf_for_review], |
| api_visibility="undocumented", |
| ) |
|
|
| annotation_last_page_button_bottom.click( |
| fn=decrease_page, |
| inputs=[annotate_current_page, all_image_annotations_state], |
| outputs=[annotate_current_page, annotate_current_page_bottom], |
| show_progress_on=[all_image_annotations_state], |
| api_visibility="undocumented", |
| ).success( |
| update_all_page_annotation_object_based_on_previous_page, |
| inputs=[ |
| annotator, |
| annotate_current_page, |
| annotate_previous_page, |
| all_image_annotations_state, |
| page_sizes, |
| ], |
| outputs=[ |
| all_image_annotations_state, |
| annotate_previous_page, |
| annotate_current_page_bottom, |
| ], |
| api_visibility="undocumented", |
| ).success( |
| update_annotator_object_and_filter_df, |
| inputs=[ |
| all_image_annotations_state, |
| annotate_current_page, |
| recogniser_entity_dropdown, |
| page_entity_dropdown, |
| page_entity_dropdown_redaction, |
| text_entity_dropdown, |
| recogniser_entity_dataframe_base, |
| annotator_zoom_number, |
| review_file_df, |
| page_sizes, |
| doc_full_file_name_textbox, |
| input_folder_textbox, |
| ], |
| outputs=[ |
| annotator, |
| annotate_current_page, |
| annotate_current_page_bottom, |
| annotate_previous_page, |
| recogniser_entity_dropdown, |
| recogniser_entity_dataframe, |
| recogniser_entity_dataframe_base, |
| text_entity_dropdown, |
| page_entity_dropdown, |
| page_entity_dropdown_redaction, |
| page_sizes, |
| all_image_annotations_state, |
| ], |
| show_progress_on=[annotator], |
| api_visibility="undocumented", |
| ).success( |
| apply_redactions_to_review_df_and_files, |
| inputs=[ |
| annotator, |
| doc_full_file_name_textbox, |
| pdf_doc_state, |
| all_image_annotations_state, |
| annotate_current_page, |
| review_file_df, |
| output_folder_textbox, |
| do_not_save_pdf_state, |
| page_sizes, |
| input_folder_textbox, |
| ], |
| outputs=[ |
| pdf_doc_state, |
| all_image_annotations_state, |
| input_pdf_for_review, |
| log_files_output, |
| review_file_df, |
| ], |
| show_progress_on=[input_pdf_for_review], |
| api_visibility="undocumented", |
| ) |
|
|
| annotation_next_page_button_bottom.click( |
| fn=increase_page, |
| inputs=[annotate_current_page, all_image_annotations_state], |
| outputs=[annotate_current_page, annotate_current_page_bottom], |
| show_progress_on=[all_image_annotations_state], |
| api_visibility="undocumented", |
| ).success( |
| update_all_page_annotation_object_based_on_previous_page, |
| inputs=[ |
| annotator, |
| annotate_current_page, |
| annotate_previous_page, |
| all_image_annotations_state, |
| page_sizes, |
| ], |
| outputs=[ |
| all_image_annotations_state, |
| annotate_previous_page, |
| annotate_current_page_bottom, |
| ], |
| api_visibility="undocumented", |
| ).success( |
| update_annotator_object_and_filter_df, |
| inputs=[ |
| all_image_annotations_state, |
| annotate_current_page, |
| recogniser_entity_dropdown, |
| page_entity_dropdown, |
| page_entity_dropdown_redaction, |
| text_entity_dropdown, |
| recogniser_entity_dataframe_base, |
| annotator_zoom_number, |
| review_file_df, |
| page_sizes, |
| doc_full_file_name_textbox, |
| input_folder_textbox, |
| ], |
| outputs=[ |
| annotator, |
| annotate_current_page, |
| annotate_current_page_bottom, |
| annotate_previous_page, |
| recogniser_entity_dropdown, |
| recogniser_entity_dataframe, |
| recogniser_entity_dataframe_base, |
| text_entity_dropdown, |
| page_entity_dropdown, |
| page_entity_dropdown_redaction, |
| page_sizes, |
| all_image_annotations_state, |
| ], |
| show_progress_on=[annotator], |
| api_visibility="undocumented", |
| ).success( |
| apply_redactions_to_review_df_and_files, |
| inputs=[ |
| annotator, |
| doc_full_file_name_textbox, |
| pdf_doc_state, |
| all_image_annotations_state, |
| annotate_current_page, |
| review_file_df, |
| output_folder_textbox, |
| do_not_save_pdf_state, |
| page_sizes, |
| input_folder_textbox, |
| ], |
| outputs=[ |
| pdf_doc_state, |
| all_image_annotations_state, |
| input_pdf_for_review, |
| log_files_output, |
| review_file_df, |
| ], |
| show_progress_on=[input_pdf_for_review], |
| api_visibility="undocumented", |
| ) |
|
|
| annotate_current_page_bottom.submit( |
| update_other_annotator_number_from_current, |
| inputs=[annotate_current_page_bottom], |
| outputs=[annotate_current_page], |
| api_visibility="undocumented", |
| ).success( |
| update_all_page_annotation_object_based_on_previous_page, |
| inputs=[ |
| annotator, |
| annotate_current_page, |
| annotate_previous_page, |
| all_image_annotations_state, |
| page_sizes, |
| ], |
| outputs=[ |
| all_image_annotations_state, |
| annotate_previous_page, |
| annotate_current_page_bottom, |
| ], |
| api_visibility="undocumented", |
| ).success( |
| update_annotator_object_and_filter_df, |
| inputs=[ |
| all_image_annotations_state, |
| annotate_current_page, |
| recogniser_entity_dropdown, |
| page_entity_dropdown, |
| page_entity_dropdown_redaction, |
| text_entity_dropdown, |
| recogniser_entity_dataframe_base, |
| annotator_zoom_number, |
| review_file_df, |
| page_sizes, |
| doc_full_file_name_textbox, |
| input_folder_textbox, |
| ], |
| outputs=[ |
| annotator, |
| annotate_current_page, |
| annotate_current_page_bottom, |
| annotate_previous_page, |
| recogniser_entity_dropdown, |
| recogniser_entity_dataframe, |
| recogniser_entity_dataframe_base, |
| text_entity_dropdown, |
| page_entity_dropdown, |
| page_entity_dropdown_redaction, |
| page_sizes, |
| all_image_annotations_state, |
| ], |
| show_progress_on=[annotator], |
| api_visibility="undocumented", |
| ).success( |
| apply_redactions_to_review_df_and_files, |
| inputs=[ |
| annotator, |
| doc_full_file_name_textbox, |
| pdf_doc_state, |
| all_image_annotations_state, |
| annotate_current_page, |
| review_file_df, |
| output_folder_textbox, |
| do_not_save_pdf_state, |
| page_sizes, |
| input_folder_textbox, |
| ], |
| outputs=[ |
| pdf_doc_state, |
| all_image_annotations_state, |
| input_pdf_for_review, |
| log_files_output, |
| review_file_df, |
| ], |
| show_progress_on=[input_pdf_for_review], |
| api_visibility="undocumented", |
| ) |
|
|
| |
| annotation_button_apply.click( |
| update_all_page_annotation_object_based_on_previous_page, |
| inputs=[ |
| annotator, |
| annotate_current_page, |
| annotate_current_page, |
| all_image_annotations_state, |
| page_sizes, |
| ], |
| outputs=[ |
| all_image_annotations_state, |
| annotate_previous_page, |
| annotate_current_page_bottom, |
| ], |
| api_visibility="undocumented", |
| ).success( |
| update_annotator_object_and_filter_df, |
| inputs=[ |
| all_image_annotations_state, |
| annotate_current_page, |
| recogniser_entity_dropdown, |
| page_entity_dropdown, |
| page_entity_dropdown_redaction, |
| text_entity_dropdown, |
| recogniser_entity_dataframe_base, |
| annotator_zoom_number, |
| review_file_df, |
| page_sizes, |
| doc_full_file_name_textbox, |
| input_folder_textbox, |
| ], |
| outputs=[ |
| annotator, |
| annotate_current_page, |
| annotate_current_page_bottom, |
| annotate_previous_page, |
| recogniser_entity_dropdown, |
| recogniser_entity_dataframe, |
| recogniser_entity_dataframe_base, |
| text_entity_dropdown, |
| page_entity_dropdown, |
| page_entity_dropdown_redaction, |
| page_sizes, |
| all_image_annotations_state, |
| ], |
| show_progress_on=[annotator], |
| api_visibility="undocumented", |
| ).success( |
| apply_redactions_to_review_df_and_files, |
| inputs=[ |
| annotator, |
| doc_full_file_name_textbox, |
| pdf_doc_state, |
| all_image_annotations_state, |
| annotate_current_page, |
| review_file_df, |
| output_folder_textbox, |
| save_pdf_state, |
| page_sizes, |
| input_folder_textbox, |
| ], |
| outputs=[ |
| pdf_doc_state, |
| all_image_annotations_state, |
| input_pdf_for_review, |
| log_files_output, |
| review_file_df, |
| ], |
| scroll_to_output=True, |
| show_progress_on=[input_pdf_for_review], |
| api_name="apply_review_redactions", |
| ) |
|
|
| |
| update_current_page_redactions_btn.click( |
| update_all_page_annotation_object_based_on_previous_page, |
| inputs=[ |
| annotator, |
| annotate_current_page, |
| annotate_current_page, |
| all_image_annotations_state, |
| page_sizes, |
| ], |
| outputs=[ |
| all_image_annotations_state, |
| annotate_previous_page, |
| annotate_current_page_bottom, |
| ], |
| api_visibility="undocumented", |
| ).success( |
| update_annotator_object_and_filter_df, |
| inputs=[ |
| all_image_annotations_state, |
| annotate_current_page, |
| recogniser_entity_dropdown, |
| page_entity_dropdown, |
| page_entity_dropdown_redaction, |
| text_entity_dropdown, |
| recogniser_entity_dataframe_base, |
| annotator_zoom_number, |
| review_file_df, |
| page_sizes, |
| doc_full_file_name_textbox, |
| input_folder_textbox, |
| ], |
| outputs=[ |
| annotator, |
| annotate_current_page, |
| annotate_current_page_bottom, |
| annotate_previous_page, |
| recogniser_entity_dropdown, |
| recogniser_entity_dataframe, |
| recogniser_entity_dataframe_base, |
| text_entity_dropdown, |
| page_entity_dropdown, |
| page_entity_dropdown_redaction, |
| page_sizes, |
| all_image_annotations_state, |
| ], |
| show_progress_on=[annotator], |
| api_visibility="undocumented", |
| ).success( |
| apply_redactions_to_review_df_and_files, |
| inputs=[ |
| annotator, |
| doc_full_file_name_textbox, |
| pdf_doc_state, |
| all_image_annotations_state, |
| annotate_current_page, |
| review_file_df, |
| output_folder_textbox, |
| do_not_save_pdf_state, |
| page_sizes, |
| input_folder_textbox, |
| ], |
| outputs=[ |
| pdf_doc_state, |
| all_image_annotations_state, |
| input_pdf_for_review, |
| log_files_output, |
| review_file_df, |
| ], |
| show_progress_on=[input_pdf_for_review], |
| api_visibility="undocumented", |
| ) |
|
|
| export_review_ocr_visualisation_btn.click( |
| page_ocr_review_image, |
| inputs=[ |
| annotator, |
| annotate_current_page, |
| all_page_line_level_ocr_results_with_words, |
| all_page_line_level_ocr_results_with_words_df_base, |
| doc_full_file_name_textbox, |
| output_folder_textbox, |
| ], |
| outputs=[redaction_overlay_output_file], |
| api_name="page_ocr_review_image", |
| ) |
|
|
| export_redaction_overlay_btn.click( |
| page_redaction_review_image, |
| inputs=[ |
| annotator, |
| annotate_current_page, |
| review_file_df, |
| doc_full_file_name_textbox, |
| output_folder_textbox, |
| ], |
| outputs=[redaction_overlay_output_file], |
| api_name="page_redaction_review_image", |
| ) |
|
|
| |
| |
| |
|
|
| |
| recogniser_entity_dropdown.select( |
| update_entities_df_recogniser_entities, |
| inputs=[ |
| recogniser_entity_dropdown, |
| recogniser_entity_dataframe_base, |
| page_entity_dropdown, |
| text_entity_dropdown, |
| ], |
| outputs=[ |
| recogniser_entity_dataframe, |
| text_entity_dropdown, |
| page_entity_dropdown, |
| ], |
| api_visibility="undocumented", |
| ) |
| page_entity_dropdown.select( |
| update_entities_df_page, |
| inputs=[ |
| page_entity_dropdown, |
| recogniser_entity_dataframe_base, |
| recogniser_entity_dropdown, |
| text_entity_dropdown, |
| ], |
| outputs=[ |
| recogniser_entity_dataframe, |
| recogniser_entity_dropdown, |
| text_entity_dropdown, |
| ], |
| api_visibility="undocumented", |
| ) |
| text_entity_dropdown.select( |
| update_entities_df_text, |
| inputs=[ |
| text_entity_dropdown, |
| recogniser_entity_dataframe_base, |
| recogniser_entity_dropdown, |
| page_entity_dropdown, |
| ], |
| outputs=[ |
| recogniser_entity_dataframe, |
| recogniser_entity_dropdown, |
| page_entity_dropdown, |
| ], |
| api_visibility="undocumented", |
| ) |
|
|
| |
| recogniser_entity_dataframe.select( |
| df_select_callback_dataframe_row, |
| inputs=[recogniser_entity_dataframe], |
| outputs=[selected_entity_dataframe_row, selected_entity_dataframe_row_text], |
| api_visibility="undocumented", |
| ).success( |
| update_all_page_annotation_object_based_on_previous_page, |
| inputs=[ |
| annotator, |
| annotate_current_page, |
| annotate_current_page, |
| all_image_annotations_state, |
| page_sizes, |
| ], |
| outputs=[ |
| all_image_annotations_state, |
| annotate_previous_page, |
| annotate_current_page_bottom, |
| ], |
| api_visibility="undocumented", |
| ).success( |
| get_and_merge_current_page_annotations, |
| inputs=[ |
| page_sizes, |
| annotate_current_page, |
| all_image_annotations_state, |
| review_file_df, |
| ], |
| outputs=[review_file_df], |
| api_visibility="undocumented", |
| ).success( |
| update_selected_review_df_row_colour, |
| inputs=[ |
| selected_entity_dataframe_row, |
| review_file_df, |
| selected_entity_id, |
| selected_entity_colour, |
| ], |
| outputs=[review_file_df, selected_entity_id, selected_entity_colour], |
| api_visibility="undocumented", |
| ).success( |
| update_annotator_page_from_review_df, |
| inputs=[ |
| review_file_df, |
| images_pdf_state, |
| page_sizes, |
| all_image_annotations_state, |
| annotator, |
| selected_entity_dataframe_row, |
| input_folder_textbox, |
| doc_full_file_name_textbox, |
| ], |
| outputs=[ |
| annotator, |
| all_image_annotations_state, |
| annotate_current_page, |
| page_sizes, |
| review_file_df, |
| annotate_previous_page, |
| ], |
| show_progress_on=[annotator], |
| api_visibility="undocumented", |
| ).success( |
| increase_bottom_page_count_based_on_top, |
| inputs=[annotate_current_page], |
| outputs=[annotate_current_page_bottom], |
| api_visibility="undocumented", |
| ).success( |
| apply_redactions_to_review_df_and_files, |
| inputs=[ |
| annotator, |
| doc_full_file_name_textbox, |
| pdf_doc_state, |
| all_image_annotations_state, |
| annotate_current_page, |
| review_file_df, |
| output_folder_textbox, |
| do_not_save_pdf_state, |
| page_sizes, |
| input_folder_textbox, |
| ], |
| outputs=[ |
| pdf_doc_state, |
| all_image_annotations_state, |
| input_pdf_for_review, |
| log_files_output, |
| review_file_df, |
| ], |
| show_progress_on=[input_pdf_for_review], |
| api_visibility="undocumented", |
| ) |
|
|
| reset_dropdowns_btn.click( |
| reset_dropdowns, |
| inputs=[recogniser_entity_dataframe_base], |
| outputs=[ |
| recogniser_entity_dropdown, |
| text_entity_dropdown, |
| page_entity_dropdown, |
| ], |
| api_visibility="undocumented", |
| ).success( |
| update_annotator_object_and_filter_df, |
| inputs=[ |
| all_image_annotations_state, |
| annotate_current_page, |
| recogniser_entity_dropdown, |
| page_entity_dropdown, |
| page_entity_dropdown_redaction, |
| text_entity_dropdown, |
| recogniser_entity_dataframe_base, |
| annotator_zoom_number, |
| review_file_df, |
| page_sizes, |
| doc_full_file_name_textbox, |
| input_folder_textbox, |
| ], |
| outputs=[ |
| annotator, |
| annotate_current_page, |
| annotate_current_page_bottom, |
| annotate_previous_page, |
| recogniser_entity_dropdown, |
| recogniser_entity_dataframe, |
| recogniser_entity_dataframe_base, |
| text_entity_dropdown, |
| page_entity_dropdown, |
| page_entity_dropdown_redaction, |
| page_sizes, |
| all_image_annotations_state, |
| ], |
| show_progress_on=[annotator], |
| api_visibility="undocumented", |
| ) |
|
|
| |
| |
| exclude_selected_row_btn.click( |
| update_all_page_annotation_object_based_on_previous_page, |
| inputs=[ |
| annotator, |
| annotate_current_page, |
| annotate_current_page, |
| all_image_annotations_state, |
| page_sizes, |
| ], |
| outputs=[ |
| all_image_annotations_state, |
| annotate_previous_page, |
| annotate_current_page_bottom, |
| ], |
| api_visibility="undocumented", |
| ).success( |
| get_and_merge_current_page_annotations, |
| inputs=[ |
| page_sizes, |
| annotate_current_page, |
| all_image_annotations_state, |
| review_file_df, |
| ], |
| outputs=[review_file_df], |
| api_visibility="undocumented", |
| ).success( |
| exclude_selected_items_from_redaction, |
| inputs=[ |
| review_file_df, |
| selected_entity_dataframe_row, |
| images_pdf_state, |
| page_sizes, |
| all_image_annotations_state, |
| recogniser_entity_dataframe_base, |
| ], |
| outputs=[ |
| review_file_df, |
| all_image_annotations_state, |
| recogniser_entity_dataframe_base, |
| backup_review_state, |
| backup_image_annotations_state, |
| backup_recogniser_entity_dataframe_base, |
| ], |
| api_visibility="undocumented", |
| ).success( |
| update_annotator_object_and_filter_df, |
| inputs=[ |
| all_image_annotations_state, |
| annotate_current_page, |
| recogniser_entity_dropdown, |
| page_entity_dropdown, |
| page_entity_dropdown_redaction, |
| text_entity_dropdown, |
| recogniser_entity_dataframe_base, |
| annotator_zoom_number, |
| review_file_df, |
| page_sizes, |
| doc_full_file_name_textbox, |
| input_folder_textbox, |
| ], |
| outputs=[ |
| annotator, |
| annotate_current_page, |
| annotate_current_page_bottom, |
| annotate_previous_page, |
| recogniser_entity_dropdown, |
| recogniser_entity_dataframe, |
| recogniser_entity_dataframe_base, |
| text_entity_dropdown, |
| page_entity_dropdown, |
| page_entity_dropdown_redaction, |
| page_sizes, |
| all_image_annotations_state, |
| ], |
| show_progress_on=[annotator], |
| api_visibility="undocumented", |
| ).success( |
| apply_redactions_to_review_df_and_files, |
| inputs=[ |
| annotator, |
| doc_full_file_name_textbox, |
| pdf_doc_state, |
| all_image_annotations_state, |
| annotate_current_page, |
| review_file_df, |
| output_folder_textbox, |
| do_not_save_pdf_state, |
| page_sizes, |
| input_folder_textbox, |
| ], |
| outputs=[ |
| pdf_doc_state, |
| all_image_annotations_state, |
| input_pdf_for_review, |
| log_files_output, |
| review_file_df, |
| ], |
| show_progress_on=[input_pdf_for_review], |
| api_visibility="undocumented", |
| ).success( |
| update_all_entity_df_dropdowns, |
| inputs=[ |
| recogniser_entity_dataframe_base, |
| recogniser_entity_dropdown, |
| page_entity_dropdown, |
| text_entity_dropdown, |
| ], |
| outputs=[ |
| recogniser_entity_dropdown, |
| text_entity_dropdown, |
| page_entity_dropdown, |
| ], |
| api_visibility="undocumented", |
| ) |
|
|
| |
| exclude_text_with_same_as_selected_row_btn.click( |
| update_all_page_annotation_object_based_on_previous_page, |
| inputs=[ |
| annotator, |
| annotate_current_page, |
| annotate_current_page, |
| all_image_annotations_state, |
| page_sizes, |
| ], |
| outputs=[ |
| all_image_annotations_state, |
| annotate_previous_page, |
| annotate_current_page_bottom, |
| ], |
| api_visibility="undocumented", |
| ).success( |
| get_and_merge_current_page_annotations, |
| inputs=[ |
| page_sizes, |
| annotate_current_page, |
| all_image_annotations_state, |
| review_file_df, |
| ], |
| outputs=[review_file_df], |
| api_visibility="undocumented", |
| ).success( |
| get_all_rows_with_same_text, |
| inputs=[ |
| recogniser_entity_dataframe_base, |
| selected_entity_dataframe_row_text, |
| ], |
| outputs=[recogniser_entity_dataframe_same_text], |
| api_visibility="undocumented", |
| ).success( |
| exclude_selected_items_from_redaction, |
| inputs=[ |
| review_file_df, |
| recogniser_entity_dataframe_same_text, |
| images_pdf_state, |
| page_sizes, |
| all_image_annotations_state, |
| recogniser_entity_dataframe_base, |
| ], |
| outputs=[ |
| review_file_df, |
| all_image_annotations_state, |
| recogniser_entity_dataframe_base, |
| backup_review_state, |
| backup_image_annotations_state, |
| backup_recogniser_entity_dataframe_base, |
| ], |
| api_visibility="undocumented", |
| ).success( |
| update_annotator_object_and_filter_df, |
| inputs=[ |
| all_image_annotations_state, |
| annotate_current_page, |
| recogniser_entity_dropdown, |
| page_entity_dropdown, |
| page_entity_dropdown_redaction, |
| text_entity_dropdown, |
| recogniser_entity_dataframe_base, |
| annotator_zoom_number, |
| review_file_df, |
| page_sizes, |
| doc_full_file_name_textbox, |
| input_folder_textbox, |
| ], |
| outputs=[ |
| annotator, |
| annotate_current_page, |
| annotate_current_page_bottom, |
| annotate_previous_page, |
| recogniser_entity_dropdown, |
| recogniser_entity_dataframe, |
| recogniser_entity_dataframe_base, |
| text_entity_dropdown, |
| page_entity_dropdown, |
| page_entity_dropdown_redaction, |
| page_sizes, |
| all_image_annotations_state, |
| ], |
| show_progress_on=[annotator], |
| api_visibility="undocumented", |
| ).success( |
| apply_redactions_to_review_df_and_files, |
| inputs=[ |
| annotator, |
| doc_full_file_name_textbox, |
| pdf_doc_state, |
| all_image_annotations_state, |
| annotate_current_page, |
| review_file_df, |
| output_folder_textbox, |
| do_not_save_pdf_state, |
| page_sizes, |
| input_folder_textbox, |
| ], |
| outputs=[ |
| pdf_doc_state, |
| all_image_annotations_state, |
| input_pdf_for_review, |
| log_files_output, |
| review_file_df, |
| ], |
| show_progress_on=[input_pdf_for_review], |
| api_visibility="undocumented", |
| ).success( |
| update_all_entity_df_dropdowns, |
| inputs=[ |
| recogniser_entity_dataframe_base, |
| recogniser_entity_dropdown, |
| page_entity_dropdown, |
| text_entity_dropdown, |
| ], |
| outputs=[ |
| recogniser_entity_dropdown, |
| text_entity_dropdown, |
| page_entity_dropdown, |
| ], |
| api_visibility="undocumented", |
| ) |
|
|
| |
| exclude_selected_btn.click( |
| update_all_page_annotation_object_based_on_previous_page, |
| inputs=[ |
| annotator, |
| annotate_current_page, |
| annotate_current_page, |
| all_image_annotations_state, |
| page_sizes, |
| ], |
| outputs=[ |
| all_image_annotations_state, |
| annotate_previous_page, |
| annotate_current_page_bottom, |
| ], |
| api_visibility="undocumented", |
| ).success( |
| get_and_merge_current_page_annotations, |
| inputs=[ |
| page_sizes, |
| annotate_current_page, |
| all_image_annotations_state, |
| review_file_df, |
| ], |
| outputs=[review_file_df], |
| api_visibility="undocumented", |
| ).success( |
| exclude_selected_items_from_redaction, |
| inputs=[ |
| review_file_df, |
| recogniser_entity_dataframe, |
| images_pdf_state, |
| page_sizes, |
| all_image_annotations_state, |
| recogniser_entity_dataframe_base, |
| ], |
| outputs=[ |
| review_file_df, |
| all_image_annotations_state, |
| recogniser_entity_dataframe_base, |
| backup_review_state, |
| backup_image_annotations_state, |
| backup_recogniser_entity_dataframe_base, |
| ], |
| api_visibility="undocumented", |
| ).success( |
| update_annotator_object_and_filter_df, |
| inputs=[ |
| all_image_annotations_state, |
| annotate_current_page, |
| recogniser_entity_dropdown, |
| page_entity_dropdown, |
| page_entity_dropdown_redaction, |
| text_entity_dropdown, |
| recogniser_entity_dataframe_base, |
| annotator_zoom_number, |
| review_file_df, |
| page_sizes, |
| doc_full_file_name_textbox, |
| input_folder_textbox, |
| ], |
| outputs=[ |
| annotator, |
| annotate_current_page, |
| annotate_current_page_bottom, |
| annotate_previous_page, |
| recogniser_entity_dropdown, |
| recogniser_entity_dataframe, |
| recogniser_entity_dataframe_base, |
| text_entity_dropdown, |
| page_entity_dropdown, |
| page_entity_dropdown_redaction, |
| page_sizes, |
| all_image_annotations_state, |
| ], |
| show_progress_on=[annotator], |
| api_visibility="undocumented", |
| ).success( |
| apply_redactions_to_review_df_and_files, |
| inputs=[ |
| annotator, |
| doc_full_file_name_textbox, |
| pdf_doc_state, |
| all_image_annotations_state, |
| annotate_current_page, |
| review_file_df, |
| output_folder_textbox, |
| do_not_save_pdf_state, |
| page_sizes, |
| input_folder_textbox, |
| ], |
| outputs=[ |
| pdf_doc_state, |
| all_image_annotations_state, |
| input_pdf_for_review, |
| log_files_output, |
| review_file_df, |
| ], |
| show_progress_on=[input_pdf_for_review], |
| api_visibility="undocumented", |
| ).success( |
| update_all_entity_df_dropdowns, |
| inputs=[ |
| recogniser_entity_dataframe_base, |
| recogniser_entity_dropdown, |
| page_entity_dropdown, |
| text_entity_dropdown, |
| ], |
| outputs=[ |
| recogniser_entity_dropdown, |
| text_entity_dropdown, |
| page_entity_dropdown, |
| ], |
| api_visibility="undocumented", |
| ) |
|
|
| |
| undo_last_removal_btn.click( |
| undo_last_removal, |
| inputs=[ |
| backup_review_state, |
| backup_image_annotations_state, |
| backup_recogniser_entity_dataframe_base, |
| ], |
| outputs=[ |
| review_file_df, |
| all_image_annotations_state, |
| recogniser_entity_dataframe_base, |
| ], |
| api_visibility="undocumented", |
| ).success( |
| update_annotator_object_and_filter_df, |
| inputs=[ |
| all_image_annotations_state, |
| annotate_current_page, |
| recogniser_entity_dropdown, |
| page_entity_dropdown, |
| page_entity_dropdown_redaction, |
| text_entity_dropdown, |
| recogniser_entity_dataframe_base, |
| annotator_zoom_number, |
| review_file_df, |
| page_sizes, |
| doc_full_file_name_textbox, |
| input_folder_textbox, |
| ], |
| outputs=[ |
| annotator, |
| annotate_current_page, |
| annotate_current_page_bottom, |
| annotate_previous_page, |
| recogniser_entity_dropdown, |
| recogniser_entity_dataframe, |
| recogniser_entity_dataframe_base, |
| text_entity_dropdown, |
| page_entity_dropdown, |
| page_entity_dropdown_redaction, |
| page_sizes, |
| all_image_annotations_state, |
| ], |
| show_progress_on=[annotator], |
| api_visibility="undocumented", |
| ).success( |
| apply_redactions_to_review_df_and_files, |
| inputs=[ |
| annotator, |
| doc_full_file_name_textbox, |
| pdf_doc_state, |
| all_image_annotations_state, |
| annotate_current_page, |
| review_file_df, |
| output_folder_textbox, |
| do_not_save_pdf_state, |
| page_sizes, |
| input_folder_textbox, |
| ], |
| outputs=[ |
| pdf_doc_state, |
| all_image_annotations_state, |
| input_pdf_for_review, |
| log_files_output, |
| review_file_df, |
| ], |
| show_progress_on=[input_pdf_for_review], |
| api_visibility="undocumented", |
| ) |
|
|
| |
| |
| |
| page_entity_dropdown_redaction.select( |
| update_redact_choice_df_from_page_dropdown, |
| inputs=[ |
| page_entity_dropdown_redaction, |
| all_page_line_level_ocr_results_with_words_df_base, |
| ], |
| outputs=[all_page_line_level_ocr_results_with_words_df], |
| api_visibility="undocumented", |
| ) |
|
|
| multi_word_search_text.submit( |
| fn=run_search_with_regex_option, |
| inputs=[ |
| multi_word_search_text, |
| all_page_line_level_ocr_results_with_words_df_base, |
| similarity_search_score_minimum, |
| use_regex_search, |
| ], |
| outputs=[ |
| all_page_line_level_ocr_results_with_words_df, |
| duplicate_files_out, |
| full_duplicate_data_by_file, |
| ], |
| api_visibility="undocumented", |
| ) |
|
|
| multi_word_search_text_btn.click( |
| fn=run_search_with_regex_option, |
| inputs=[ |
| multi_word_search_text, |
| all_page_line_level_ocr_results_with_words_df_base, |
| similarity_search_score_minimum, |
| use_regex_search, |
| ], |
| outputs=[ |
| all_page_line_level_ocr_results_with_words_df, |
| duplicate_files_out, |
| full_duplicate_data_by_file, |
| ], |
| api_name="word_level_ocr_text_search", |
| ) |
|
|
| |
| all_page_line_level_ocr_results_with_words_df.select( |
| df_select_callback_dataframe_row_ocr_with_words, |
| inputs=[all_page_line_level_ocr_results_with_words_df], |
| outputs=[ |
| selected_entity_dataframe_row_redact, |
| selected_entity_dataframe_row_text_redact, |
| ], |
| api_visibility="undocumented", |
| ).success( |
| update_all_page_annotation_object_based_on_previous_page, |
| inputs=[ |
| annotator, |
| annotate_current_page, |
| annotate_current_page, |
| all_image_annotations_state, |
| page_sizes, |
| ], |
| outputs=[ |
| all_image_annotations_state, |
| annotate_previous_page, |
| annotate_current_page_bottom, |
| ], |
| api_visibility="undocumented", |
| ).success( |
| get_and_merge_current_page_annotations, |
| inputs=[ |
| page_sizes, |
| annotate_current_page, |
| all_image_annotations_state, |
| review_file_df, |
| ], |
| outputs=[review_file_df], |
| api_visibility="undocumented", |
| ).success( |
| update_annotator_page_from_review_df, |
| inputs=[ |
| review_file_df, |
| images_pdf_state, |
| page_sizes, |
| all_image_annotations_state, |
| annotator, |
| selected_entity_dataframe_row_redact, |
| input_folder_textbox, |
| doc_full_file_name_textbox, |
| ], |
| outputs=[ |
| annotator, |
| all_image_annotations_state, |
| annotate_current_page, |
| page_sizes, |
| review_file_df, |
| annotate_previous_page, |
| ], |
| show_progress_on=[annotator], |
| api_visibility="undocumented", |
| ).success( |
| increase_bottom_page_count_based_on_top, |
| inputs=[annotate_current_page], |
| outputs=[annotate_current_page_bottom], |
| api_visibility="undocumented", |
| ) |
|
|
| |
| reset_dropdowns_btn_new.click( |
| reset_dropdowns, |
| inputs=[all_page_line_level_ocr_results_with_words_df_base], |
| outputs=[ |
| recogniser_entity_dropdown, |
| text_entity_dropdown, |
| page_entity_dropdown_redaction, |
| ], |
| api_visibility="undocumented", |
| ).success( |
| update_annotator_object_and_filter_df, |
| inputs=[ |
| all_image_annotations_state, |
| annotate_current_page, |
| recogniser_entity_dropdown, |
| page_entity_dropdown, |
| page_entity_dropdown_redaction, |
| text_entity_dropdown, |
| recogniser_entity_dataframe_base, |
| annotator_zoom_number, |
| review_file_df, |
| page_sizes, |
| doc_full_file_name_textbox, |
| input_folder_textbox, |
| ], |
| outputs=[ |
| annotator, |
| annotate_current_page, |
| annotate_current_page_bottom, |
| annotate_previous_page, |
| recogniser_entity_dropdown, |
| recogniser_entity_dataframe, |
| recogniser_entity_dataframe_base, |
| text_entity_dropdown, |
| page_entity_dropdown, |
| page_entity_dropdown_redaction, |
| page_sizes, |
| all_image_annotations_state, |
| ], |
| show_progress_on=[annotator], |
| api_visibility="undocumented", |
| ) |
|
|
| |
| redact_selected_btn.click( |
| update_all_page_annotation_object_based_on_previous_page, |
| inputs=[ |
| annotator, |
| annotate_current_page, |
| annotate_current_page, |
| all_image_annotations_state, |
| page_sizes, |
| ], |
| outputs=[ |
| all_image_annotations_state, |
| annotate_previous_page, |
| annotate_current_page_bottom, |
| ], |
| api_visibility="undocumented", |
| ).success( |
| create_annotation_objects_from_filtered_ocr_results_with_words, |
| inputs=[ |
| all_page_line_level_ocr_results_with_words_df, |
| all_page_line_level_ocr_results_with_words_df_base, |
| page_sizes, |
| review_file_df, |
| all_image_annotations_state, |
| recogniser_entity_dataframe_base, |
| new_redaction_text_label, |
| colour_label, |
| annotate_current_page, |
| ], |
| outputs=[ |
| all_image_annotations_state, |
| backup_image_annotations_state, |
| review_file_df, |
| backup_review_state, |
| recogniser_entity_dataframe, |
| backup_recogniser_entity_dataframe_base, |
| ], |
| api_visibility="undocumented", |
| ).success( |
| update_annotator_object_and_filter_df, |
| inputs=[ |
| all_image_annotations_state, |
| annotate_current_page, |
| recogniser_entity_dropdown, |
| page_entity_dropdown, |
| page_entity_dropdown_redaction, |
| text_entity_dropdown, |
| recogniser_entity_dataframe_base, |
| annotator_zoom_number, |
| review_file_df, |
| page_sizes, |
| doc_full_file_name_textbox, |
| input_folder_textbox, |
| ], |
| outputs=[ |
| annotator, |
| annotate_current_page, |
| annotate_current_page_bottom, |
| annotate_previous_page, |
| recogniser_entity_dropdown, |
| recogniser_entity_dataframe, |
| recogniser_entity_dataframe_base, |
| text_entity_dropdown, |
| page_entity_dropdown, |
| page_entity_dropdown_redaction, |
| page_sizes, |
| all_image_annotations_state, |
| ], |
| show_progress_on=[annotator], |
| api_visibility="undocumented", |
| ).success( |
| apply_redactions_to_review_df_and_files, |
| inputs=[ |
| annotator, |
| doc_full_file_name_textbox, |
| pdf_doc_state, |
| all_image_annotations_state, |
| annotate_current_page, |
| review_file_df, |
| output_folder_textbox, |
| do_not_save_pdf_state, |
| page_sizes, |
| input_folder_textbox, |
| ], |
| outputs=[ |
| pdf_doc_state, |
| all_image_annotations_state, |
| input_pdf_for_review, |
| log_files_output, |
| review_file_df, |
| ], |
| show_progress_on=[input_pdf_for_review], |
| api_visibility="undocumented", |
| ).success( |
| update_all_entity_df_dropdowns, |
| inputs=[ |
| all_page_line_level_ocr_results_with_words_df_base, |
| recogniser_entity_dropdown, |
| page_entity_dropdown_redaction, |
| text_entity_dropdown, |
| ], |
| outputs=[ |
| recogniser_entity_dropdown, |
| text_entity_dropdown, |
| page_entity_dropdown_redaction, |
| ], |
| api_visibility="undocumented", |
| ) |
|
|
| |
| reset_ocr_with_words_df_btn.click( |
| reset_ocr_with_words_base_dataframe, |
| inputs=[ |
| all_page_line_level_ocr_results_with_words_df_base, |
| page_entity_dropdown_redaction, |
| ], |
| outputs=[ |
| all_page_line_level_ocr_results_with_words_df, |
| backup_all_page_line_level_ocr_results_with_words_df_base, |
| ], |
| api_visibility="undocumented", |
| ) |
|
|
| |
| redact_selected_row_btn.click( |
| update_all_page_annotation_object_based_on_previous_page, |
| inputs=[ |
| annotator, |
| annotate_current_page, |
| annotate_current_page, |
| all_image_annotations_state, |
| page_sizes, |
| ], |
| outputs=[ |
| all_image_annotations_state, |
| annotate_previous_page, |
| annotate_current_page_bottom, |
| ], |
| api_visibility="undocumented", |
| ).success( |
| create_annotation_objects_from_filtered_ocr_results_with_words, |
| inputs=[ |
| selected_entity_dataframe_row_redact, |
| all_page_line_level_ocr_results_with_words_df_base, |
| page_sizes, |
| review_file_df, |
| all_image_annotations_state, |
| recogniser_entity_dataframe_base, |
| new_redaction_text_label, |
| colour_label, |
| annotate_current_page, |
| ], |
| outputs=[ |
| all_image_annotations_state, |
| backup_image_annotations_state, |
| review_file_df, |
| backup_review_state, |
| recogniser_entity_dataframe, |
| backup_recogniser_entity_dataframe_base, |
| ], |
| api_visibility="undocumented", |
| ).success( |
| update_annotator_object_and_filter_df, |
| inputs=[ |
| all_image_annotations_state, |
| annotate_current_page, |
| recogniser_entity_dropdown, |
| page_entity_dropdown, |
| page_entity_dropdown_redaction, |
| text_entity_dropdown, |
| recogniser_entity_dataframe_base, |
| annotator_zoom_number, |
| review_file_df, |
| page_sizes, |
| doc_full_file_name_textbox, |
| input_folder_textbox, |
| ], |
| outputs=[ |
| annotator, |
| annotate_current_page, |
| annotate_current_page_bottom, |
| annotate_previous_page, |
| recogniser_entity_dropdown, |
| recogniser_entity_dataframe, |
| recogniser_entity_dataframe_base, |
| text_entity_dropdown, |
| page_entity_dropdown, |
| page_entity_dropdown_redaction, |
| page_sizes, |
| all_image_annotations_state, |
| ], |
| show_progress_on=[annotator], |
| api_visibility="undocumented", |
| ).success( |
| apply_redactions_to_review_df_and_files, |
| inputs=[ |
| annotator, |
| doc_full_file_name_textbox, |
| pdf_doc_state, |
| all_image_annotations_state, |
| annotate_current_page, |
| review_file_df, |
| output_folder_textbox, |
| do_not_save_pdf_state, |
| page_sizes, |
| input_folder_textbox, |
| ], |
| outputs=[ |
| pdf_doc_state, |
| all_image_annotations_state, |
| input_pdf_for_review, |
| log_files_output, |
| review_file_df, |
| ], |
| show_progress_on=[input_pdf_for_review], |
| api_visibility="undocumented", |
| ).success( |
| update_all_entity_df_dropdowns, |
| inputs=[ |
| all_page_line_level_ocr_results_with_words_df_base, |
| recogniser_entity_dropdown, |
| page_entity_dropdown_redaction, |
| text_entity_dropdown, |
| ], |
| outputs=[ |
| recogniser_entity_dropdown, |
| text_entity_dropdown, |
| page_entity_dropdown_redaction, |
| ], |
| api_visibility="undocumented", |
| ) |
|
|
| |
| redact_text_with_same_as_selected_row_btn.click( |
| update_all_page_annotation_object_based_on_previous_page, |
| inputs=[ |
| annotator, |
| annotate_current_page, |
| annotate_current_page, |
| all_image_annotations_state, |
| page_sizes, |
| ], |
| outputs=[ |
| all_image_annotations_state, |
| annotate_previous_page, |
| annotate_current_page_bottom, |
| ], |
| api_visibility="undocumented", |
| ).success( |
| get_all_rows_with_same_text_redact, |
| inputs=[ |
| all_page_line_level_ocr_results_with_words_df_base, |
| selected_entity_dataframe_row_text_redact, |
| ], |
| outputs=[to_redact_dataframe_same_text], |
| api_visibility="undocumented", |
| ).success( |
| create_annotation_objects_from_filtered_ocr_results_with_words, |
| inputs=[ |
| to_redact_dataframe_same_text, |
| all_page_line_level_ocr_results_with_words_df_base, |
| page_sizes, |
| review_file_df, |
| all_image_annotations_state, |
| recogniser_entity_dataframe_base, |
| new_redaction_text_label, |
| colour_label, |
| annotate_current_page, |
| ], |
| outputs=[ |
| all_image_annotations_state, |
| backup_image_annotations_state, |
| review_file_df, |
| backup_review_state, |
| recogniser_entity_dataframe, |
| backup_recogniser_entity_dataframe_base, |
| ], |
| api_visibility="undocumented", |
| ).success( |
| update_annotator_object_and_filter_df, |
| inputs=[ |
| all_image_annotations_state, |
| annotate_current_page, |
| recogniser_entity_dropdown, |
| page_entity_dropdown, |
| page_entity_dropdown_redaction, |
| text_entity_dropdown, |
| recogniser_entity_dataframe_base, |
| annotator_zoom_number, |
| review_file_df, |
| page_sizes, |
| doc_full_file_name_textbox, |
| input_folder_textbox, |
| ], |
| outputs=[ |
| annotator, |
| annotate_current_page, |
| annotate_current_page_bottom, |
| annotate_previous_page, |
| recogniser_entity_dropdown, |
| recogniser_entity_dataframe, |
| recogniser_entity_dataframe_base, |
| text_entity_dropdown, |
| page_entity_dropdown, |
| page_entity_dropdown_redaction, |
| page_sizes, |
| all_image_annotations_state, |
| ], |
| show_progress_on=[annotator], |
| api_visibility="undocumented", |
| ).success( |
| apply_redactions_to_review_df_and_files, |
| inputs=[ |
| annotator, |
| doc_full_file_name_textbox, |
| pdf_doc_state, |
| all_image_annotations_state, |
| annotate_current_page, |
| review_file_df, |
| output_folder_textbox, |
| do_not_save_pdf_state, |
| page_sizes, |
| input_folder_textbox, |
| ], |
| outputs=[ |
| pdf_doc_state, |
| all_image_annotations_state, |
| input_pdf_for_review, |
| log_files_output, |
| review_file_df, |
| ], |
| show_progress_on=[input_pdf_for_review], |
| api_visibility="undocumented", |
| ).success( |
| update_all_entity_df_dropdowns, |
| inputs=[ |
| all_page_line_level_ocr_results_with_words_df_base, |
| recogniser_entity_dropdown, |
| page_entity_dropdown_redaction, |
| text_entity_dropdown, |
| ], |
| outputs=[ |
| recogniser_entity_dropdown, |
| text_entity_dropdown, |
| page_entity_dropdown_redaction, |
| ], |
| api_visibility="undocumented", |
| ) |
|
|
| |
| undo_last_redact_btn.click( |
| undo_last_removal, |
| inputs=[ |
| backup_review_state, |
| backup_image_annotations_state, |
| backup_recogniser_entity_dataframe_base, |
| ], |
| outputs=[ |
| review_file_df, |
| all_image_annotations_state, |
| recogniser_entity_dataframe_base, |
| ], |
| api_visibility="undocumented", |
| ).success( |
| update_annotator_object_and_filter_df, |
| inputs=[ |
| all_image_annotations_state, |
| annotate_current_page, |
| recogniser_entity_dropdown, |
| page_entity_dropdown, |
| page_entity_dropdown_redaction, |
| text_entity_dropdown, |
| recogniser_entity_dataframe_base, |
| annotator_zoom_number, |
| review_file_df, |
| page_sizes, |
| doc_full_file_name_textbox, |
| input_folder_textbox, |
| ], |
| outputs=[ |
| annotator, |
| annotate_current_page, |
| annotate_current_page_bottom, |
| annotate_previous_page, |
| recogniser_entity_dropdown, |
| recogniser_entity_dataframe, |
| recogniser_entity_dataframe_base, |
| text_entity_dropdown, |
| page_entity_dropdown, |
| page_entity_dropdown_redaction, |
| page_sizes, |
| all_image_annotations_state, |
| ], |
| show_progress_on=[annotator], |
| api_visibility="undocumented", |
| ).success( |
| apply_redactions_to_review_df_and_files, |
| inputs=[ |
| annotator, |
| doc_full_file_name_textbox, |
| pdf_doc_state, |
| all_image_annotations_state, |
| annotate_current_page, |
| review_file_df, |
| output_folder_textbox, |
| do_not_save_pdf_state, |
| page_sizes, |
| input_folder_textbox, |
| ], |
| outputs=[ |
| pdf_doc_state, |
| all_image_annotations_state, |
| input_pdf_for_review, |
| log_files_output, |
| review_file_df, |
| ], |
| show_progress_on=[input_pdf_for_review], |
| api_visibility="undocumented", |
| ) |
|
|
| |
| |
| |
| all_page_line_level_ocr_results_df.select( |
| df_select_callback_ocr, |
| inputs=[all_page_line_level_ocr_results_df], |
| outputs=[annotate_current_page, selected_ocr_dataframe_row], |
| api_visibility="undocumented", |
| ).success( |
| update_annotator_page_from_review_df, |
| inputs=[ |
| review_file_df, |
| images_pdf_state, |
| page_sizes, |
| all_image_annotations_state, |
| annotator, |
| selected_ocr_dataframe_row, |
| input_folder_textbox, |
| doc_full_file_name_textbox, |
| ], |
| outputs=[ |
| annotator, |
| all_image_annotations_state, |
| annotate_current_page, |
| page_sizes, |
| review_file_df, |
| annotate_previous_page, |
| ], |
| show_progress_on=[annotator], |
| api_visibility="undocumented", |
| ).success( |
| increase_bottom_page_count_based_on_top, |
| inputs=[annotate_current_page], |
| outputs=[annotate_current_page_bottom], |
| api_visibility="undocumented", |
| ) |
|
|
| |
| reset_all_ocr_results_btn.click( |
| reset_ocr_base_dataframe, |
| inputs=[all_page_line_level_ocr_results_df_base], |
| outputs=[all_page_line_level_ocr_results_df], |
| api_visibility="undocumented", |
| ) |
|
|
| |
| convert_review_file_to_adobe_btn.click( |
| fn=get_document_file_names, |
| inputs=[input_pdf_for_review], |
| outputs=[ |
| doc_file_name_no_extension_textbox, |
| doc_file_name_with_extension_textbox, |
| doc_full_file_name_textbox, |
| doc_file_name_textbox_list, |
| total_pdf_page_count, |
| ], |
| api_visibility="undocumented", |
| ).success( |
| fn=prepare_image_or_pdf_with_efficient_ocr, |
| inputs=[ |
| input_pdf_for_review, |
| text_extract_method_radio, |
| all_page_line_level_ocr_results_df_base, |
| all_page_line_level_ocr_results_with_words_df_base, |
| latest_file_completed_num, |
| redaction_output_summary_textbox, |
| second_loop_state, |
| annotate_max_pages, |
| all_image_annotations_state, |
| prepare_for_review_bool, |
| in_fully_redacted_list_state, |
| output_folder_textbox, |
| input_folder_textbox, |
| efficient_ocr_checkbox, |
| prepare_images_bool_false, |
| page_sizes, |
| pdf_doc_state, |
| page_min, |
| page_max, |
| ], |
| outputs=[ |
| redaction_output_summary_textbox, |
| prepared_pdf_state, |
| images_pdf_state, |
| annotate_max_pages, |
| annotate_max_pages_bottom, |
| pdf_doc_state, |
| all_image_annotations_state, |
| review_file_df, |
| document_cropboxes, |
| page_sizes, |
| textract_output_found_checkbox, |
| all_img_details_state, |
| all_line_level_ocr_results_df_placeholder, |
| relevant_ocr_output_with_words_found_checkbox, |
| all_page_line_level_ocr_results_with_words_df_base, |
| ], |
| show_progress_on=[adobe_review_files_out], |
| api_visibility="undocumented", |
| ).success( |
| convert_df_to_xfdf, |
| inputs=[ |
| input_pdf_for_review, |
| pdf_doc_state, |
| images_pdf_state, |
| output_folder_textbox, |
| document_cropboxes, |
| page_sizes, |
| ], |
| outputs=[adobe_review_files_out], |
| api_visibility="undocumented", |
| ).success( |
| fn=export_outputs_to_s3, |
| inputs=[ |
| adobe_review_files_out, |
| s3_output_folder_state, |
| save_outputs_to_s3_checkbox, |
| input_pdf_for_review, |
| ], |
| outputs=None, |
| api_visibility="undocumented", |
| ) |
|
|
| |
| convert_adobe_to_review_file_btn.click( |
| fn=get_document_file_names, |
| inputs=[adobe_review_files_out], |
| outputs=[ |
| doc_file_name_no_extension_textbox, |
| doc_file_name_with_extension_textbox, |
| doc_full_file_name_textbox, |
| doc_file_name_textbox_list, |
| total_pdf_page_count, |
| ], |
| api_visibility="undocumented", |
| ).success( |
| fn=prepare_image_or_pdf_with_efficient_ocr, |
| inputs=[ |
| adobe_review_files_out, |
| text_extract_method_radio, |
| all_page_line_level_ocr_results_df_base, |
| all_page_line_level_ocr_results_with_words_df_base, |
| latest_file_completed_num, |
| redaction_output_summary_textbox, |
| second_loop_state, |
| annotate_max_pages, |
| all_image_annotations_state, |
| prepare_for_review_bool, |
| in_fully_redacted_list_state, |
| output_folder_textbox, |
| input_folder_textbox, |
| efficient_ocr_checkbox, |
| prepare_images_bool_false, |
| page_sizes, |
| pdf_doc_state, |
| page_min, |
| page_max, |
| ], |
| outputs=[ |
| redaction_output_summary_textbox, |
| prepared_pdf_state, |
| images_pdf_state, |
| annotate_max_pages, |
| annotate_max_pages_bottom, |
| pdf_doc_state, |
| all_image_annotations_state, |
| review_file_df, |
| document_cropboxes, |
| page_sizes, |
| textract_output_found_checkbox, |
| all_img_details_state, |
| all_line_level_ocr_results_df_placeholder, |
| relevant_ocr_output_with_words_found_checkbox, |
| all_page_line_level_ocr_results_with_words_df_base, |
| ], |
| show_progress_on=[adobe_review_files_out], |
| api_visibility="undocumented", |
| ).success( |
| fn=convert_xfdf_to_dataframe, |
| inputs=[ |
| adobe_review_files_out, |
| pdf_doc_state, |
| images_pdf_state, |
| output_folder_textbox, |
| input_folder_textbox, |
| ], |
| outputs=[input_pdf_for_review], |
| scroll_to_output=True, |
| api_visibility="undocumented", |
| ) |
|
|
| |
| |
| |
| in_data_files.upload( |
| fn=put_columns_in_df, |
| inputs=[in_data_files], |
| outputs=[in_colnames, in_excel_sheets], |
| api_visibility="undocumented", |
| ).success( |
| fn=get_input_file_names, |
| inputs=[in_data_files], |
| outputs=[ |
| data_file_name_no_extension_textbox, |
| data_file_name_with_extension_textbox, |
| data_full_file_name_textbox, |
| data_file_name_textbox_list, |
| total_pdf_page_count, |
| ], |
| api_visibility="undocumented", |
| ) |
|
|
| |
|
|
| def reset_tabular_redact_session(): |
| actual_time, logs, comprehend_q = reset_data_vars() |
| return actual_time, logs, comprehend_q, REDACTION_EXAMPLE_PLACEHOLDER |
|
|
| |
| step_4_next_tabular_redact_btn.click( |
| change_tab_to_tabular_or_document_redactions, |
| inputs=walkthrough_is_data_file, |
| outputs=tabs, |
| api_visibility="undocumented", |
| ).success( |
| fn=reset_tabular_redact_session, |
| outputs=[ |
| actual_time_taken_number, |
| log_files_output_list_state, |
| comprehend_query_number, |
| text_redaction_example_markdown, |
| ], |
| api_visibility="undocumented", |
| ).success( |
| fn=anonymise_files_with_open_text, |
| inputs=[ |
| in_data_files, |
| in_text, |
| walkthrough_anon_strategy, |
| walkthrough_colnames, |
| walkthrough_in_redact_entities, |
| walkthrough_allow_list_state, |
| text_tabular_files_done, |
| text_output_summary, |
| text_output_file_list_state, |
| log_files_output_list_state, |
| walkthrough_excel_sheets, |
| first_loop_state, |
| output_folder_textbox, |
| walkthrough_deny_list_state, |
| walkthrough_max_fuzzy_spelling_mistakes_num, |
| walkthrough_pii_identification_method_drop_tabular, |
| walkthrough_in_redact_comprehend_entities, |
| comprehend_query_number, |
| aws_access_key_textbox, |
| aws_secret_key_textbox, |
| actual_time_taken_number, |
| walkthrough_do_initial_clean, |
| chosen_language_drop, |
| walkthrough_custom_llm_instructions_textbox, |
| walkthrough_in_redact_llm_entities, |
| ], |
| outputs=[ |
| text_output_summary, |
| text_output_file, |
| text_output_file_list_state, |
| text_tabular_files_done, |
| log_files_output, |
| log_files_output_list_state, |
| actual_time_taken_number, |
| comprehend_query_number, |
| llm_total_input_tokens_number, |
| llm_total_output_tokens_number, |
| llm_model_name_textbox, |
| text_redaction_example_markdown, |
| ], |
| api_visibility="undocumented", |
| show_progress_on=[text_output_summary], |
| ).success( |
| fn=lambda *args: usage_callback.flag( |
| list(args), |
| save_to_csv=SAVE_LOGS_TO_CSV, |
| save_to_dynamodb=SAVE_LOGS_TO_DYNAMODB, |
| dynamodb_table_name=USAGE_LOG_DYNAMODB_TABLE_NAME, |
| dynamodb_headers=DYNAMODB_USAGE_LOG_HEADERS, |
| replacement_headers=CSV_USAGE_LOG_HEADERS, |
| ), |
| inputs=( |
| [ |
| session_hash_textbox, |
| blank_doc_file_name_no_extension_textbox_for_logs, |
| data_file_name_with_extension_textbox, |
| actual_time_taken_number, |
| total_pdf_page_count, |
| textract_query_number, |
| pii_identification_method_drop_tabular, |
| comprehend_query_number, |
| cost_code_choice_drop, |
| handwrite_signature_checkbox, |
| host_name_textbox, |
| text_extract_method_radio, |
| is_a_textract_api_call, |
| task_textbox, |
| vlm_model_name_textbox, |
| vlm_total_input_tokens_number, |
| vlm_total_output_tokens_number, |
| llm_model_name_textbox, |
| llm_total_input_tokens_number, |
| llm_total_output_tokens_number, |
| ] |
| if DISPLAY_FILE_NAMES_IN_LOGS |
| else [ |
| session_hash_textbox, |
| blank_doc_file_name_no_extension_textbox_for_logs, |
| placeholder_data_file_name_no_extension_textbox_for_logs, |
| actual_time_taken_number, |
| total_pdf_page_count, |
| textract_query_number, |
| pii_identification_method_drop_tabular, |
| comprehend_query_number, |
| cost_code_choice_drop, |
| handwrite_signature_checkbox, |
| host_name_textbox, |
| text_extract_method_radio, |
| is_a_textract_api_call, |
| task_textbox, |
| vlm_model_name_textbox, |
| vlm_total_input_tokens_number, |
| vlm_total_output_tokens_number, |
| llm_model_name_textbox, |
| llm_total_input_tokens_number, |
| llm_total_output_tokens_number, |
| ] |
| ), |
| outputs=[flag_value_placeholder], |
| preprocess=False, |
| api_visibility="undocumented", |
| ).success( |
| fn=upload_log_file_to_s3, |
| inputs=[usage_logs_state, usage_s3_logs_loc_state], |
| outputs=[s3_logs_output_textbox], |
| api_visibility="undocumented", |
| ).success( |
| fn=export_outputs_to_s3, |
| inputs=[ |
| text_output_file_list_state, |
| s3_output_folder_state, |
| save_outputs_to_s3_checkbox, |
| in_data_files, |
| ], |
| outputs=None, |
| api_visibility="undocumented", |
| ) |
|
|
| |
| tabular_data_redact_btn.click( |
| reset_tabular_redact_session, |
| outputs=[ |
| actual_time_taken_number, |
| log_files_output_list_state, |
| comprehend_query_number, |
| text_redaction_example_markdown, |
| ], |
| api_visibility="undocumented", |
| ).success( |
| fn=anonymise_files_with_open_text, |
| inputs=[ |
| in_data_files, |
| in_text, |
| anon_strategy, |
| in_colnames, |
| in_redact_entities, |
| in_allow_list_state, |
| text_tabular_files_done, |
| text_output_summary, |
| text_output_file_list_state, |
| log_files_output_list_state, |
| in_excel_sheets, |
| first_loop_state, |
| output_folder_textbox, |
| in_deny_list_state, |
| max_fuzzy_spelling_mistakes_num, |
| pii_identification_method_drop_tabular, |
| in_redact_comprehend_entities, |
| comprehend_query_number, |
| aws_access_key_textbox, |
| aws_secret_key_textbox, |
| actual_time_taken_number, |
| do_initial_clean, |
| chosen_language_drop, |
| custom_llm_instructions_textbox, |
| in_redact_llm_entities, |
| ], |
| outputs=[ |
| text_output_summary, |
| text_output_file, |
| text_output_file_list_state, |
| text_tabular_files_done, |
| log_files_output, |
| log_files_output_list_state, |
| actual_time_taken_number, |
| comprehend_query_number, |
| llm_total_input_tokens_number, |
| llm_total_output_tokens_number, |
| llm_model_name_textbox, |
| text_redaction_example_markdown, |
| ], |
| api_name="redact_data", |
| show_progress_on=[text_output_summary], |
| ).success( |
| fn=lambda *args: usage_callback.flag( |
| list(args), |
| save_to_csv=SAVE_LOGS_TO_CSV, |
| save_to_dynamodb=SAVE_LOGS_TO_DYNAMODB, |
| dynamodb_table_name=USAGE_LOG_DYNAMODB_TABLE_NAME, |
| dynamodb_headers=DYNAMODB_USAGE_LOG_HEADERS, |
| replacement_headers=CSV_USAGE_LOG_HEADERS, |
| ), |
| inputs=( |
| [ |
| session_hash_textbox, |
| blank_doc_file_name_no_extension_textbox_for_logs, |
| data_file_name_with_extension_textbox, |
| actual_time_taken_number, |
| total_pdf_page_count, |
| textract_query_number, |
| pii_identification_method_drop_tabular, |
| comprehend_query_number, |
| cost_code_choice_drop, |
| handwrite_signature_checkbox, |
| host_name_textbox, |
| text_extract_method_radio, |
| is_a_textract_api_call, |
| task_textbox, |
| vlm_model_name_textbox, |
| vlm_total_input_tokens_number, |
| vlm_total_output_tokens_number, |
| llm_model_name_textbox, |
| llm_total_input_tokens_number, |
| llm_total_output_tokens_number, |
| ] |
| if DISPLAY_FILE_NAMES_IN_LOGS |
| else [ |
| session_hash_textbox, |
| blank_doc_file_name_no_extension_textbox_for_logs, |
| placeholder_data_file_name_no_extension_textbox_for_logs, |
| actual_time_taken_number, |
| total_pdf_page_count, |
| textract_query_number, |
| pii_identification_method_drop_tabular, |
| comprehend_query_number, |
| cost_code_choice_drop, |
| handwrite_signature_checkbox, |
| host_name_textbox, |
| text_extract_method_radio, |
| is_a_textract_api_call, |
| task_textbox, |
| vlm_model_name_textbox, |
| vlm_total_input_tokens_number, |
| vlm_total_output_tokens_number, |
| llm_model_name_textbox, |
| llm_total_input_tokens_number, |
| llm_total_output_tokens_number, |
| ] |
| ), |
| outputs=[flag_value_placeholder], |
| preprocess=False, |
| api_visibility="undocumented", |
| ).success( |
| fn=upload_log_file_to_s3, |
| inputs=[usage_logs_state, usage_s3_logs_loc_state], |
| outputs=[s3_logs_output_textbox], |
| api_visibility="undocumented", |
| ).success( |
| fn=export_outputs_to_s3, |
| inputs=[ |
| text_output_file_list_state, |
| s3_output_folder_state, |
| save_outputs_to_s3_checkbox, |
| in_data_files, |
| ], |
| outputs=None, |
| api_visibility="undocumented", |
| ).success( |
| fn=reveal_feedback_buttons, |
| outputs=[ |
| data_feedback_radio, |
| data_further_details_text, |
| data_submit_feedback_btn, |
| data_feedback_title, |
| ], |
| api_visibility="undocumented", |
| ) |
|
|
| |
| |
| |
|
|
| greedy_match_input.change( |
| fn=lambda greedy: gr.update(visible=not greedy), |
| inputs=[greedy_match_input], |
| outputs=[min_consecutive_pages_input], |
| api_visibility="undocumented", |
| ) |
|
|
| find_duplicate_pages_btn.click( |
| fn=run_duplicate_analysis, |
| inputs=[ |
| in_duplicate_pages, |
| duplicate_threshold_input, |
| min_word_count_input, |
| min_consecutive_pages_input, |
| greedy_match_input, |
| all_page_line_level_ocr_results_df_base, |
| input_review_files, |
| combine_page_text_for_duplicates_bool, |
| doc_file_name_with_extension_textbox, |
| output_folder_textbox, |
| ], |
| outputs=[ |
| results_df_preview, |
| duplicate_files_out, |
| full_duplicate_data_by_file, |
| actual_time_taken_number, |
| task_textbox, |
| all_page_line_level_ocr_results_df_base, |
| input_review_files, |
| duplicate_pages_list_state, |
| ], |
| show_progress_on=[results_df_preview, redaction_output_summary_textbox], |
| api_name="find_duplicate_pages", |
| ).success( |
| fn=export_outputs_to_s3, |
| |
| inputs=[ |
| duplicate_files_out, |
| s3_output_folder_state, |
| save_outputs_to_s3_checkbox, |
| in_duplicate_pages, |
| ], |
| outputs=None, |
| api_visibility="undocumented", |
| ).success( |
| fn=lambda: "deduplicate", outputs=[task_textbox], api_visibility="undocumented" |
| ).success( |
| fn=lambda *args: usage_callback.flag( |
| list(args), |
| save_to_csv=SAVE_LOGS_TO_CSV, |
| save_to_dynamodb=SAVE_LOGS_TO_DYNAMODB, |
| dynamodb_table_name=USAGE_LOG_DYNAMODB_TABLE_NAME, |
| dynamodb_headers=DYNAMODB_USAGE_LOG_HEADERS, |
| replacement_headers=CSV_USAGE_LOG_HEADERS, |
| ), |
| inputs=( |
| [ |
| session_hash_textbox, |
| doc_file_name_no_extension_textbox, |
| blank_data_file_name_no_extension_textbox_for_logs, |
| actual_time_taken_number, |
| total_pdf_page_count, |
| textract_query_number, |
| pii_identification_method_drop, |
| comprehend_query_number, |
| cost_code_choice_drop, |
| handwrite_signature_checkbox, |
| host_name_textbox, |
| text_extract_method_radio, |
| is_a_textract_api_call, |
| task_textbox, |
| vlm_model_name_textbox, |
| vlm_total_input_tokens_number, |
| vlm_total_output_tokens_number, |
| llm_model_name_textbox, |
| llm_total_input_tokens_number, |
| llm_total_output_tokens_number, |
| ] |
| if DISPLAY_FILE_NAMES_IN_LOGS |
| else [ |
| session_hash_textbox, |
| placeholder_doc_file_name_no_extension_textbox_for_logs, |
| blank_data_file_name_no_extension_textbox_for_logs, |
| actual_time_taken_number, |
| total_pdf_page_count, |
| textract_query_number, |
| pii_identification_method_drop, |
| comprehend_query_number, |
| cost_code_choice_drop, |
| handwrite_signature_checkbox, |
| host_name_textbox, |
| text_extract_method_radio, |
| is_a_textract_api_call, |
| task_textbox, |
| vlm_model_name_textbox, |
| vlm_total_input_tokens_number, |
| vlm_total_output_tokens_number, |
| llm_model_name_textbox, |
| llm_total_input_tokens_number, |
| llm_total_output_tokens_number, |
| ] |
| ), |
| outputs=[flag_value_placeholder], |
| preprocess=False, |
| api_visibility="undocumented", |
| ).success( |
| fn=upload_log_file_to_s3, |
| inputs=[usage_logs_state, usage_s3_logs_loc_state], |
| outputs=[s3_logs_output_textbox], |
| api_visibility="undocumented", |
| ) |
|
|
| results_df_preview.select( |
| fn=handle_selection_and_preview, |
| inputs=[results_df_preview, full_duplicate_data_by_file], |
| outputs=[ |
| selected_duplicate_data_row_index, |
| page1_text_preview, |
| page2_text_preview, |
| ], |
| api_visibility="undocumented", |
| ) |
|
|
| |
| exclude_match_btn.click( |
| fn=exclude_match, |
| inputs=[ |
| results_df_preview, |
| selected_duplicate_data_row_index, |
| output_folder_textbox, |
| doc_file_name_with_extension_textbox, |
| ], |
| outputs=[ |
| results_df_preview, |
| duplicate_files_out, |
| page1_text_preview, |
| page2_text_preview, |
| duplicate_pages_list_state, |
| ], |
| api_visibility="undocumented", |
| ) |
|
|
| apply_match_btn.click( |
| fn=create_annotation_objects_from_duplicates, |
| inputs=[ |
| results_df_preview, |
| all_page_line_level_ocr_results_df_base, |
| page_sizes, |
| combine_page_text_for_duplicates_bool, |
| ], |
| outputs=[new_duplicate_search_annotation_object], |
| show_progress_on=[ |
| new_duplicate_search_annotation_object, |
| redaction_output_summary_textbox, |
| ], |
| api_visibility="undocumented", |
| ).success( |
| fn=apply_whole_page_redactions_from_list, |
| inputs=[ |
| duplicate_pages_list_state, |
| doc_file_name_with_extension_textbox, |
| review_file_df, |
| duplicate_files_out, |
| pdf_doc_state, |
| page_sizes, |
| all_image_annotations_state, |
| combine_page_text_for_duplicates_bool, |
| new_duplicate_search_annotation_object, |
| latest_review_file_path, |
| ], |
| outputs=[review_file_df, all_image_annotations_state], |
| api_visibility="undocumented", |
| ).success( |
| update_annotator_page_from_review_df, |
| inputs=[ |
| review_file_df, |
| images_pdf_state, |
| page_sizes, |
| all_image_annotations_state, |
| annotator, |
| selected_entity_dataframe_row, |
| input_folder_textbox, |
| doc_full_file_name_textbox, |
| ], |
| outputs=[ |
| annotator, |
| all_image_annotations_state, |
| annotate_current_page, |
| page_sizes, |
| review_file_df, |
| annotate_previous_page, |
| ], |
| show_progress_on=[annotator], |
| api_visibility="undocumented", |
| ).success( |
| update_annotator_object_and_filter_df, |
| inputs=[ |
| all_image_annotations_state, |
| annotate_current_page, |
| recogniser_entity_dropdown, |
| page_entity_dropdown, |
| page_entity_dropdown_redaction, |
| text_entity_dropdown, |
| recogniser_entity_dataframe_base, |
| annotator_zoom_number, |
| review_file_df, |
| page_sizes, |
| doc_full_file_name_textbox, |
| input_folder_textbox, |
| ], |
| outputs=[ |
| annotator, |
| annotate_current_page, |
| annotate_current_page_bottom, |
| annotate_previous_page, |
| recogniser_entity_dropdown, |
| recogniser_entity_dataframe, |
| recogniser_entity_dataframe_base, |
| text_entity_dropdown, |
| page_entity_dropdown, |
| page_entity_dropdown_redaction, |
| page_sizes, |
| all_image_annotations_state, |
| ], |
| show_progress_on=[annotator], |
| api_visibility="undocumented", |
| ) |
|
|
| go_to_review_redactions_tab_btn_2.click( |
| fn=change_tab_to_review_redactions, |
| inputs=None, |
| outputs=tabs, |
| api_visibility="undocumented", |
| ) |
|
|
| |
| |
| |
|
|
| |
| in_tabular_duplicate_files.upload( |
| fn=put_columns_in_df, |
| inputs=[in_tabular_duplicate_files], |
| outputs=[tabular_text_columns, in_excel_tabular_sheets], |
| api_visibility="undocumented", |
| ) |
|
|
| find_tabular_duplicates_btn.click( |
| fn=run_tabular_duplicate_detection, |
| inputs=[ |
| in_tabular_duplicate_files, |
| tabular_duplicate_threshold, |
| tabular_min_word_count, |
| tabular_text_columns, |
| output_folder_textbox, |
| do_initial_clean_dup, |
| in_excel_tabular_sheets, |
| remove_duplicate_rows, |
| ], |
| outputs=[ |
| tabular_results_df, |
| tabular_cleaned_file, |
| tabular_file_to_clean, |
| actual_time_taken_number, |
| task_textbox, |
| ], |
| api_name="find_duplicate_tabular", |
| show_progress_on=[tabular_results_df], |
| ).success( |
| fn=lambda: "deduplicate", outputs=[task_textbox], api_visibility="undocumented" |
| ).success( |
| fn=lambda *args: usage_callback.flag( |
| list(args), |
| save_to_csv=SAVE_LOGS_TO_CSV, |
| save_to_dynamodb=SAVE_LOGS_TO_DYNAMODB, |
| dynamodb_table_name=USAGE_LOG_DYNAMODB_TABLE_NAME, |
| dynamodb_headers=DYNAMODB_USAGE_LOG_HEADERS, |
| replacement_headers=CSV_USAGE_LOG_HEADERS, |
| ), |
| inputs=( |
| [ |
| session_hash_textbox, |
| blank_doc_file_name_no_extension_textbox_for_logs, |
| data_file_name_with_extension_textbox, |
| actual_time_taken_number, |
| total_pdf_page_count, |
| textract_query_number, |
| pii_identification_method_drop_tabular, |
| comprehend_query_number, |
| cost_code_choice_drop, |
| handwrite_signature_checkbox, |
| host_name_textbox, |
| text_extract_method_radio, |
| is_a_textract_api_call, |
| task_textbox, |
| vlm_model_name_textbox, |
| vlm_total_input_tokens_number, |
| vlm_total_output_tokens_number, |
| llm_model_name_textbox, |
| llm_total_input_tokens_number, |
| llm_total_output_tokens_number, |
| ] |
| if DISPLAY_FILE_NAMES_IN_LOGS |
| else [ |
| session_hash_textbox, |
| blank_doc_file_name_no_extension_textbox_for_logs, |
| placeholder_data_file_name_no_extension_textbox_for_logs, |
| actual_time_taken_number, |
| total_pdf_page_count, |
| textract_query_number, |
| pii_identification_method_drop_tabular, |
| comprehend_query_number, |
| cost_code_choice_drop, |
| handwrite_signature_checkbox, |
| host_name_textbox, |
| text_extract_method_radio, |
| is_a_textract_api_call, |
| task_textbox, |
| vlm_model_name_textbox, |
| vlm_total_input_tokens_number, |
| vlm_total_output_tokens_number, |
| llm_model_name_textbox, |
| llm_total_input_tokens_number, |
| llm_total_output_tokens_number, |
| ] |
| ), |
| outputs=[flag_value_placeholder], |
| preprocess=False, |
| api_visibility="undocumented", |
| ).success( |
| fn=upload_log_file_to_s3, |
| inputs=[usage_logs_state, usage_s3_logs_loc_state], |
| outputs=[s3_logs_output_textbox], |
| api_visibility="undocumented", |
| ) |
|
|
| tabular_results_df.select( |
| fn=handle_tabular_row_selection, |
| inputs=[tabular_results_df], |
| outputs=[ |
| tabular_selected_row_index, |
| tabular_text1_preview, |
| tabular_text2_preview, |
| ], |
| api_visibility="undocumented", |
| ) |
|
|
| clean_duplicates_btn.click( |
| fn=clean_tabular_duplicates, |
| inputs=[ |
| tabular_file_to_clean, |
| tabular_results_df, |
| output_folder_textbox, |
| in_excel_tabular_sheets, |
| ], |
| outputs=[tabular_cleaned_file], |
| api_visibility="undocumented", |
| ) |
|
|
| |
| |
| |
| |
|
|
| def maybe_extract_then_summarise( |
| all_page_line_level_ocr_results_df_base, |
| output_folder, |
| summarisation_inference_method, |
| summarisation_api_key, |
| summarisation_temperature, |
| doc_full_file_name_textbox, |
| summarisation_context, |
| aws_access_key_textbox, |
| aws_secret_key_textbox, |
| summarisation_hf_api_key_hidden, |
| summarisation_azure_endpoint_hidden, |
| summarisation_format, |
| summarisation_additional_instructions, |
| summarisation_max_pages_per_group, |
| in_summarisation_ocr_files, |
| |
| text_extract_method_radio, |
| all_page_line_level_ocr_results_with_words_df_base, |
| latest_file_completed_num, |
| redaction_output_summary_textbox, |
| annotate_max_pages, |
| all_image_annotations_state, |
| prepare_for_review_bool_false, |
| in_fully_redacted_list_state, |
| input_folder_textbox, |
| prepare_images_bool_false, |
| page_sizes, |
| pdf_doc_state, |
| page_min, |
| page_max, |
| prepared_pdf_state, |
| images_pdf_state, |
| in_redact_entities, |
| in_redact_comprehend_entities, |
| in_redact_llm_entities, |
| in_allow_list_state, |
| in_deny_list_state, |
| output_file_list_state, |
| log_files_output_list_state, |
| actual_time_taken_number, |
| handwrite_signature_checkbox, |
| textract_metadata_textbox, |
| all_decision_process_table_state, |
| pii_identification_method_drop, |
| max_fuzzy_spelling_mistakes_num, |
| match_fuzzy_whole_phrase_bool, |
| review_file_df, |
| document_cropboxes, |
| textract_output_found_checkbox, |
| only_extract_text_radio, |
| duplication_file_path_outputs_list_state, |
| latest_review_file_path, |
| latest_ocr_file_path, |
| all_page_line_level_ocr_results, |
| all_page_line_level_ocr_results_with_words, |
| local_ocr_method_radio, |
| chosen_language_drop, |
| input_review_files, |
| custom_llm_instructions_textbox, |
| inference_server_vlm_model_textbox, |
| efficient_ocr_checkbox, |
| efficient_ocr_min_words_number, |
| efficient_ocr_min_image_coverage_number, |
| efficient_ocr_min_embedded_image_px_number, |
| high_quality_textract_ocr_checkbox, |
| overwrite_existing_ocr_checkbox, |
| save_page_ocr_visualisations_checkbox, |
| ): |
| """ |
| If the summarisation upload contains a PDF, run text extraction (prepare + redactor |
| with text_extraction_only=True) then summarise; otherwise call summarise_document_wrapper |
| with existing behaviour (CSV or state dataframe). |
| Returns 7 summarisation outputs; when a PDF was processed via the redactor, also returns |
| 5 redaction outputs (output_file, output_file_list_state, log_files_output, |
| log_files_output_list_state, redaction_output_summary_textbox) so they update the same |
| components as the document redaction tab. |
| """ |
| paths = _summarisation_upload_to_paths(in_summarisation_ocr_files) |
| if not _upload_contains_pdf(in_summarisation_ocr_files): |
| out = summarise_document_wrapper( |
| all_page_line_level_ocr_results_df_base, |
| output_folder, |
| summarisation_inference_method, |
| summarisation_api_key, |
| summarisation_temperature, |
| doc_full_file_name_textbox, |
| summarisation_context, |
| aws_access_key_textbox, |
| aws_secret_key_textbox, |
| summarisation_hf_api_key_hidden, |
| summarisation_azure_endpoint_hidden, |
| summarisation_format, |
| summarisation_additional_instructions, |
| summarisation_max_pages_per_group, |
| in_summarisation_ocr_files, |
| ) |
| return ( |
| *out, |
| gr.update(), |
| gr.update(), |
| gr.update(), |
| gr.update(), |
| gr.update(), |
| ) |
|
|
| pdf_path = next((p for p in paths if is_pdf(p)), None) |
| if not pdf_path: |
| out = summarise_document_wrapper( |
| all_page_line_level_ocr_results_df_base, |
| output_folder, |
| summarisation_inference_method, |
| summarisation_api_key, |
| summarisation_temperature, |
| doc_full_file_name_textbox, |
| summarisation_context, |
| aws_access_key_textbox, |
| aws_secret_key_textbox, |
| summarisation_hf_api_key_hidden, |
| summarisation_azure_endpoint_hidden, |
| summarisation_format, |
| summarisation_additional_instructions, |
| summarisation_max_pages_per_group, |
| in_summarisation_ocr_files, |
| ) |
| return ( |
| *out, |
| gr.update(), |
| gr.update(), |
| gr.update(), |
| gr.update(), |
| gr.update(), |
| ) |
|
|
| doc_names = get_document_file_names([pdf_path]) |
| doc_file_name_no_extension = ( |
| doc_names[0] |
| if doc_names[0] |
| else os.path.splitext(os.path.basename(pdf_path))[0] |
| ) |
| full_file_name = ( |
| doc_names[2] if len(doc_names) > 2 and doc_names[2] else pdf_path |
| ) |
| summary_file_name = _file_name_from_pdf_path(full_file_name) |
|
|
| check_for_existing_textract_file( |
| doc_file_name_no_extension, output_folder, handwrite_signature_checkbox |
| ) |
| check_for_relevant_ocr_output_with_words( |
| doc_file_name_no_extension, text_extract_method_radio, output_folder |
| ) |
|
|
| prepare_result = prepare_image_or_pdf( |
| [pdf_path], |
| text_extract_method_radio, |
| ( |
| all_page_line_level_ocr_results_df_base |
| if all_page_line_level_ocr_results_df_base is not None |
| else pd.DataFrame() |
| ), |
| ( |
| all_page_line_level_ocr_results_with_words_df_base |
| if all_page_line_level_ocr_results_with_words_df_base is not None |
| else pd.DataFrame() |
| ), |
| latest_file_completed_num, |
| redaction_output_summary_textbox or [], |
| True, |
| annotate_max_pages or 1, |
| all_image_annotations_state or [], |
| prepare_for_review_bool_false, |
| ( |
| in_fully_redacted_list_state |
| if in_fully_redacted_list_state is not None |
| else [] |
| ), |
| output_folder, |
| input_folder_textbox, |
| ( |
| prepare_images_bool_false |
| if prepare_images_bool_false is not None |
| else True |
| ), |
| page_sizes or [], |
| pdf_doc_state if pdf_doc_state is not None else [], |
| page_min or 0, |
| page_max or 0, |
| ) |
|
|
| prepared_pdf_paths = prepare_result[1] |
| pdf_image_paths = prepare_result[2] |
| review_file_from_prepare = prepare_result[7] |
| document_cropboxes_from_prepare = prepare_result[8] |
| page_sizes_from_prepare = prepare_result[9] |
| textract_found_after_prepare = prepare_result[10] |
| ocr_df_base_from_prepare = prepare_result[12] |
| prepare_result[13] |
| ocr_with_words_df_from_prepare = prepare_result[14] |
| pdf_doc_from_prepare = prepare_result[5] |
|
|
| redactor_result = run_redaction( |
| [pdf_path], |
| RedactionOptions( |
| chosen_redact_entities=in_redact_entities or [], |
| chosen_redact_comprehend_entities=in_redact_comprehend_entities or [], |
| chosen_llm_entities=in_redact_llm_entities or [], |
| text_extraction_method=text_extract_method_radio, |
| in_allow_list=in_allow_list_state or [], |
| in_deny_list=in_deny_list_state or [], |
| redact_whole_page_list=( |
| in_fully_redacted_list_state |
| if in_fully_redacted_list_state is not None |
| else [] |
| ), |
| page_min=page_min or 0, |
| page_max=page_max or 0, |
| handwrite_signature_checkbox=handwrite_signature_checkbox or [], |
| pii_identification_method=pii_identification_method_drop or "Local", |
| max_fuzzy_spelling_mistakes_num=( |
| max_fuzzy_spelling_mistakes_num |
| if max_fuzzy_spelling_mistakes_num is not None |
| else 1 |
| ), |
| match_fuzzy_whole_phrase_bool=( |
| match_fuzzy_whole_phrase_bool |
| if match_fuzzy_whole_phrase_bool is not None |
| else True |
| ), |
| aws_access_key_textbox=aws_access_key_textbox or "", |
| aws_secret_key_textbox=aws_secret_key_textbox or "", |
| annotate_max_pages=annotate_max_pages or 1, |
| output_folder=output_folder, |
| input_folder=input_folder_textbox or "", |
| textract_output_found=textract_found_after_prepare, |
| text_extraction_only=True, |
| chosen_local_ocr_model=local_ocr_method_radio or "", |
| language=chosen_language_drop or "", |
| custom_llm_instructions=custom_llm_instructions_textbox or "", |
| inference_server_vlm_model=inference_server_vlm_model_textbox or "", |
| efficient_ocr=( |
| efficient_ocr_checkbox |
| if efficient_ocr_checkbox is not None |
| else False |
| ), |
| efficient_ocr_min_words=efficient_ocr_min_words_number, |
| efficient_ocr_min_image_coverage_fraction=efficient_ocr_min_image_coverage_number, |
| efficient_ocr_min_embedded_image_px=efficient_ocr_min_embedded_image_px_number, |
| hybrid_textract_bedrock_vlm=( |
| high_quality_textract_ocr_checkbox |
| if high_quality_textract_ocr_checkbox is not None |
| else False |
| ), |
| overwrite_existing_ocr_results=( |
| overwrite_existing_ocr_checkbox |
| if overwrite_existing_ocr_checkbox is not None |
| else False |
| ), |
| save_page_ocr_visualisations=( |
| save_page_ocr_visualisations_checkbox |
| if save_page_ocr_visualisations_checkbox is not None |
| else SAVE_PAGE_OCR_VISUALISATIONS |
| ), |
| ), |
| RedactionContext( |
| prepared_pdf_file_paths=prepared_pdf_paths, |
| pdf_image_file_paths=pdf_image_paths, |
| latest_file_completed=latest_file_completed_num or 0, |
| combined_out_message=redaction_output_summary_textbox or [], |
| out_file_paths=output_file_list_state or [], |
| log_files_output_paths=log_files_output_list_state or [], |
| estimated_time_taken_state=actual_time_taken_number or 0.0, |
| all_request_metadata_str=textract_metadata_textbox or "", |
| annotations_all_pages=all_image_annotations_state or [], |
| all_page_line_level_ocr_results_df=ocr_df_base_from_prepare, |
| all_pages_decision_process_table=( |
| all_decision_process_table_state |
| if all_decision_process_table_state is not None |
| else pd.DataFrame() |
| ), |
| pymupdf_doc=pdf_doc_from_prepare, |
| review_file_state=review_file_from_prepare, |
| document_cropboxes=document_cropboxes_from_prepare, |
| page_sizes=page_sizes_from_prepare, |
| duplication_file_path_outputs=duplication_file_path_outputs_list_state |
| or [], |
| review_file_path=latest_review_file_path or "", |
| ocr_file_path=latest_ocr_file_path or "", |
| all_page_line_level_ocr_results=all_page_line_level_ocr_results or [], |
| all_page_line_level_ocr_results_with_words=all_page_line_level_ocr_results_with_words |
| or [], |
| all_page_line_level_ocr_results_with_words_df=ocr_with_words_df_from_prepare, |
| ocr_review_files=input_review_files or [], |
| ), |
| ) |
|
|
| |
| redactor_result[-7] |
| redactor_result[-6] |
| redactor_result[-5] |
| llm_model_name_out = redactor_result[-4] |
| llm_total_input_tokens_out = redactor_result[-3] |
| llm_total_output_tokens_out = redactor_result[-2] |
|
|
| ocr_df_for_summary = redactor_result[12] |
| out_file_paths = redactor_result[1] |
| log_files_output_paths = redactor_result[4] |
| redaction_summary = redactor_result[0] |
| if ocr_df_for_summary is None or ( |
| isinstance(ocr_df_for_summary, pd.DataFrame) and ocr_df_for_summary.empty |
| ): |
| return ( |
| [], |
| "No OCR text extracted from PDF. Cannot summarise.", |
| llm_model_name_out or "", |
| llm_total_input_tokens_out or 0, |
| llm_total_output_tokens_out or 0, |
| "", |
| 0.0, |
| out_file_paths, |
| out_file_paths, |
| log_files_output_paths, |
| log_files_output_paths, |
| redaction_summary, |
| ) |
|
|
| summarise_out = summarise_document_wrapper( |
| ocr_df_for_summary, |
| output_folder, |
| summarisation_inference_method, |
| summarisation_api_key, |
| summarisation_temperature, |
| summary_file_name, |
| summarisation_context, |
| aws_access_key_textbox, |
| aws_secret_key_textbox, |
| summarisation_hf_api_key_hidden, |
| summarisation_azure_endpoint_hidden, |
| summarisation_format, |
| summarisation_additional_instructions, |
| summarisation_max_pages_per_group, |
| None, |
| ) |
| return ( |
| *summarise_out, |
| out_file_paths, |
| out_file_paths, |
| log_files_output_paths, |
| log_files_output_paths, |
| redaction_summary, |
| ) |
|
|
| summarise_btn.click( |
| reset_aws_call_vars, |
| outputs=[ |
| comprehend_query_number, |
| textract_query_number, |
| vlm_total_input_tokens_number, |
| vlm_total_output_tokens_number, |
| llm_total_input_tokens_number, |
| llm_total_output_tokens_number, |
| llm_model_name_textbox, |
| vlm_model_name_textbox, |
| ], |
| api_visibility="undocumented", |
| ).success( |
| fn=enforce_cost_codes, |
| inputs=[ |
| enforce_cost_code_bool, |
| cost_code_choice_drop, |
| cost_code_dataframe_base, |
| ], |
| api_visibility="undocumented", |
| ).success( |
| fn=maybe_extract_then_summarise, |
| inputs=[ |
| all_page_line_level_ocr_results_df_base, |
| output_folder_textbox, |
| summarisation_inference_method, |
| summarisation_api_key, |
| summarisation_temperature, |
| doc_full_file_name_textbox, |
| summarisation_context, |
| aws_access_key_textbox, |
| aws_secret_key_textbox, |
| summarisation_hf_api_key_hidden, |
| summarisation_azure_endpoint_hidden, |
| summarisation_format, |
| summarisation_additional_instructions, |
| summarisation_max_pages_per_group, |
| in_summarisation_ocr_files, |
| text_extract_method_radio, |
| all_page_line_level_ocr_results_with_words_df_base, |
| latest_file_completed_num, |
| redaction_output_summary_textbox, |
| annotate_max_pages, |
| all_image_annotations_state, |
| prepare_for_review_bool_false, |
| in_fully_redacted_list_state, |
| input_folder_textbox, |
| prepare_images_bool_false, |
| page_sizes, |
| pdf_doc_state, |
| page_min, |
| page_max, |
| prepared_pdf_state, |
| images_pdf_state, |
| in_redact_entities, |
| in_redact_comprehend_entities, |
| in_redact_llm_entities, |
| in_allow_list_state, |
| in_deny_list_state, |
| output_file_list_state, |
| log_files_output_list_state, |
| actual_time_taken_number, |
| handwrite_signature_checkbox, |
| textract_metadata_textbox, |
| all_decision_process_table_state, |
| pii_identification_method_drop, |
| max_fuzzy_spelling_mistakes_num, |
| match_fuzzy_whole_phrase_bool, |
| review_file_df, |
| document_cropboxes, |
| textract_output_found_checkbox, |
| only_extract_text_radio, |
| duplication_file_path_outputs_list_state, |
| latest_review_file_path, |
| latest_ocr_file_path, |
| all_page_line_level_ocr_results, |
| all_page_line_level_ocr_results_with_words, |
| local_ocr_method_radio, |
| chosen_language_drop, |
| input_review_files, |
| custom_llm_instructions_textbox, |
| inference_server_vlm_model_textbox, |
| efficient_ocr_checkbox, |
| efficient_ocr_min_words_number, |
| efficient_ocr_min_image_coverage_number, |
| efficient_ocr_min_embedded_image_px_number, |
| high_quality_textract_ocr_checkbox, |
| overwrite_existing_ocr_checkbox, |
| save_page_ocr_visualisations_checkbox, |
| ], |
| outputs=[ |
| summarisation_output_files, |
| summarisation_status, |
| llm_model_name_textbox, |
| llm_total_input_tokens_number, |
| llm_total_output_tokens_number, |
| summarisation_display, |
| actual_time_taken_number, |
| output_file, |
| output_file_list_state, |
| log_files_output, |
| log_files_output_list_state, |
| redaction_output_summary_textbox, |
| ], |
| show_progress=True, |
| show_progress_on=[summarisation_status], |
| api_visibility="undocumented", |
| ).success( |
| fn=lambda: "summarisation", |
| outputs=[task_textbox], |
| api_visibility="undocumented", |
| ).success( |
| fn=lambda *args: usage_callback.flag( |
| list(args), |
| save_to_csv=SAVE_LOGS_TO_CSV, |
| save_to_dynamodb=SAVE_LOGS_TO_DYNAMODB, |
| dynamodb_table_name=USAGE_LOG_DYNAMODB_TABLE_NAME, |
| dynamodb_headers=DYNAMODB_USAGE_LOG_HEADERS, |
| replacement_headers=CSV_USAGE_LOG_HEADERS, |
| ), |
| inputs=( |
| [ |
| session_hash_textbox, |
| doc_file_name_no_extension_textbox, |
| blank_data_file_name_no_extension_textbox_for_logs, |
| actual_time_taken_number, |
| total_pdf_page_count, |
| textract_query_number, |
| pii_identification_method_drop, |
| comprehend_query_number, |
| cost_code_choice_drop, |
| handwrite_signature_checkbox, |
| host_name_textbox, |
| text_extract_method_radio, |
| is_a_textract_api_call, |
| task_textbox, |
| vlm_model_name_textbox, |
| vlm_total_input_tokens_number, |
| vlm_total_output_tokens_number, |
| llm_model_name_textbox, |
| llm_total_input_tokens_number, |
| llm_total_output_tokens_number, |
| ] |
| if DISPLAY_FILE_NAMES_IN_LOGS |
| else [ |
| session_hash_textbox, |
| placeholder_doc_file_name_no_extension_textbox_for_logs, |
| blank_data_file_name_no_extension_textbox_for_logs, |
| actual_time_taken_number, |
| total_pdf_page_count, |
| textract_query_number, |
| pii_identification_method_drop, |
| comprehend_query_number, |
| cost_code_choice_drop, |
| handwrite_signature_checkbox, |
| host_name_textbox, |
| text_extract_method_radio, |
| is_a_textract_api_call, |
| task_textbox, |
| vlm_model_name_textbox, |
| vlm_total_input_tokens_number, |
| vlm_total_output_tokens_number, |
| llm_model_name_textbox, |
| llm_total_input_tokens_number, |
| llm_total_output_tokens_number, |
| ] |
| ), |
| outputs=[flag_value_placeholder], |
| preprocess=False, |
| api_visibility="undocumented", |
| ).success( |
| fn=upload_log_file_to_s3, |
| inputs=[usage_logs_state, usage_s3_logs_loc_state], |
| outputs=[s3_logs_output_textbox], |
| api_visibility="undocumented", |
| ) |
|
|
| |
| |
| |
| |
| in_allow_list.change( |
| fn=custom_regex_load, |
| inputs=[in_allow_list], |
| outputs=[in_allow_list_text, in_allow_list_state], |
| api_visibility="undocumented", |
| ) |
| in_deny_list.change( |
| fn=custom_regex_load, |
| inputs=[in_deny_list, in_deny_list_text_in], |
| outputs=[in_deny_list_text, in_deny_list_state], |
| api_visibility="undocumented", |
| ) |
| in_fully_redacted_list.change( |
| fn=custom_regex_load, |
| inputs=[in_fully_redacted_list, in_fully_redacted_text_in], |
| outputs=[in_fully_redacted_list_text, in_fully_redacted_list_state], |
| api_visibility="undocumented", |
| ) |
|
|
| |
| def _apply_whole_page_redactions_fully_redacted( |
| duplicate_page_numbers_df_or_list, |
| doc_file_name_with_extension_textbox, |
| review_file_df, |
| duplicate_files_out, |
| pdf_doc_state, |
| page_sizes, |
| all_image_annotations_state, |
| latest_review_file_path, |
| ): |
| return apply_whole_page_redactions_from_list( |
| duplicate_page_numbers_df_or_list, |
| doc_file_name_with_extension_textbox, |
| review_file_df, |
| duplicate_files_out, |
| pdf_doc_state, |
| page_sizes, |
| all_image_annotations_state, |
| combine_pages=True, |
| new_annotations_with_bounding_boxes=list(), |
| review_file_path=latest_review_file_path or "", |
| ) |
|
|
| apply_fully_redacted_list_btn.click( |
| fn=_apply_whole_page_redactions_fully_redacted, |
| inputs=[ |
| in_fully_redacted_list_state, |
| doc_file_name_with_extension_textbox, |
| review_file_df, |
| duplicate_files_out, |
| pdf_doc_state, |
| page_sizes, |
| all_image_annotations_state, |
| latest_review_file_path, |
| ], |
| outputs=[review_file_df, all_image_annotations_state], |
| api_visibility="undocumented", |
| ).success( |
| update_annotator_page_from_review_df, |
| inputs=[ |
| review_file_df, |
| images_pdf_state, |
| page_sizes, |
| all_image_annotations_state, |
| annotator, |
| selected_entity_dataframe_row, |
| input_folder_textbox, |
| doc_full_file_name_textbox, |
| ], |
| outputs=[ |
| annotator, |
| all_image_annotations_state, |
| annotate_current_page, |
| page_sizes, |
| review_file_df, |
| annotate_previous_page, |
| ], |
| show_progress_on=[annotator], |
| api_visibility="undocumented", |
| ).success( |
| update_annotator_object_and_filter_df, |
| inputs=[ |
| all_image_annotations_state, |
| annotate_current_page, |
| recogniser_entity_dropdown, |
| page_entity_dropdown, |
| page_entity_dropdown_redaction, |
| text_entity_dropdown, |
| recogniser_entity_dataframe_base, |
| annotator_zoom_number, |
| review_file_df, |
| page_sizes, |
| doc_full_file_name_textbox, |
| input_folder_textbox, |
| ], |
| outputs=[ |
| annotator, |
| annotate_current_page, |
| annotate_current_page_bottom, |
| annotate_previous_page, |
| recogniser_entity_dropdown, |
| recogniser_entity_dataframe, |
| recogniser_entity_dataframe_base, |
| text_entity_dropdown, |
| page_entity_dropdown, |
| page_entity_dropdown_redaction, |
| page_sizes, |
| all_image_annotations_state, |
| ], |
| show_progress_on=[annotator], |
| api_visibility="undocumented", |
| ) |
|
|
| |
| merge_multiple_review_files_btn.click( |
| fn=merge_csv_files, |
| inputs=multiple_review_files_in_out, |
| outputs=multiple_review_files_in_out, |
| api_name="combine_review_csvs", |
| ) |
|
|
| |
| combine_review_pdfs_btn.click( |
| fn=combine_review_pdf_files, |
| inputs=[combine_review_pdfs_in_out, output_folder_textbox], |
| outputs=combine_review_pdfs_in_out, |
| api_name="combine_review_pdfs", |
| ) |
|
|
| |
| all_output_files_btn.click( |
| fn=lambda: gr.FileExplorer(root_dir=FEEDBACK_LOGS_FOLDER), |
| inputs=None, |
| outputs=all_output_files, |
| api_visibility="undocumented", |
| ).success( |
| fn=load_all_output_files, |
| inputs=output_folder_textbox, |
| outputs=all_output_files, |
| api_visibility="undocumented", |
| ) |
|
|
| all_output_files.input( |
| fn=all_outputs_file_download_fn, |
| inputs=all_output_files, |
| outputs=all_outputs_file_download, |
| api_visibility="undocumented", |
| ) |
|
|
| |
| chosen_language_full_name_drop.select( |
| update_language_dropdown, |
| inputs=[chosen_language_full_name_drop], |
| outputs=[chosen_language_drop], |
| api_visibility="undocumented", |
| ) |
|
|
| |
| |
| |
|
|
| |
|
|
| if SHOW_WHOLE_DOCUMENT_TEXTRACT_CALL_OPTIONS: |
| app_load_event = ( |
| blocks.load( |
| get_connection_params, |
| inputs=[ |
| output_folder_textbox, |
| input_folder_textbox, |
| session_output_folder_textbox, |
| s3_output_folder_state, |
| s3_whole_document_textract_input_subfolder, |
| s3_whole_document_textract_output_subfolder, |
| s3_whole_document_textract_logs_subfolder, |
| local_whole_document_textract_logs_subfolder, |
| ], |
| outputs=[ |
| session_hash_state, |
| output_folder_textbox, |
| session_hash_textbox, |
| input_folder_textbox, |
| s3_whole_document_textract_input_subfolder, |
| s3_whole_document_textract_output_subfolder, |
| s3_whole_document_textract_logs_subfolder, |
| local_whole_document_textract_logs_subfolder, |
| s3_output_folder_state, |
| ], |
| api_visibility="undocumented", |
| ) |
| .success( |
| load_in_textract_job_details, |
| inputs=[ |
| load_s3_whole_document_textract_logs_bool, |
| s3_whole_document_textract_logs_subfolder, |
| local_whole_document_textract_logs_subfolder, |
| ], |
| outputs=[textract_job_detail_df], |
| api_visibility="undocumented", |
| ) |
| .success( |
| fn=load_all_output_files, |
| inputs=output_folder_textbox, |
| outputs=all_output_files, |
| api_visibility="undocumented", |
| ) |
| ) |
|
|
| else: |
| app_load_event = blocks.load( |
| get_connection_params, |
| inputs=[ |
| output_folder_textbox, |
| input_folder_textbox, |
| session_output_folder_textbox, |
| s3_output_folder_state, |
| s3_whole_document_textract_input_subfolder, |
| s3_whole_document_textract_output_subfolder, |
| s3_whole_document_textract_logs_subfolder, |
| local_whole_document_textract_logs_subfolder, |
| ], |
| outputs=[ |
| session_hash_state, |
| output_folder_textbox, |
| session_hash_textbox, |
| input_folder_textbox, |
| s3_whole_document_textract_input_subfolder, |
| s3_whole_document_textract_output_subfolder, |
| s3_whole_document_textract_logs_subfolder, |
| local_whole_document_textract_logs_subfolder, |
| s3_output_folder_state, |
| ], |
| api_visibility="undocumented", |
| ).success( |
| fn=load_all_output_files, |
| inputs=output_folder_textbox, |
| outputs=all_output_files, |
| api_visibility="undocumented", |
| ) |
|
|
| |
| |
| if RUN_ALL_EXAMPLES_THROUGH_AWS and SHOW_EXAMPLES: |
| app_load_event = app_load_event.success( |
| seed_example_textract_json_on_app_load, |
| inputs=[output_folder_textbox], |
| api_visibility="undocumented", |
| ).success( |
| fn=load_all_output_files, |
| inputs=output_folder_textbox, |
| outputs=all_output_files, |
| api_visibility="undocumented", |
| ) |
|
|
| |
| if GET_DEFAULT_ALLOW_LIST and (ALLOW_LIST_PATH or S3_ALLOW_LIST_PATH): |
| if ( |
| not os.path.exists(ALLOW_LIST_PATH) |
| and S3_ALLOW_LIST_PATH |
| and RUN_AWS_FUNCTIONS |
| ): |
| print("Downloading allow list from S3") |
| blocks.load( |
| download_file_from_s3, |
| inputs=[ |
| s3_default_bucket, |
| s3_default_allow_list_file, |
| default_allow_list_output_folder_location, |
| ], |
| api_visibility="undocumented", |
| ).success( |
| load_in_default_allow_list, |
| inputs=[default_allow_list_output_folder_location], |
| outputs=[in_allow_list], |
| api_visibility="undocumented", |
| ) |
| print("Successfully loaded allow list from S3") |
| elif os.path.exists(ALLOW_LIST_PATH): |
| print( |
| "Loading allow list from default allow list output path location:", |
| ALLOW_LIST_PATH, |
| ) |
| blocks.load( |
| load_in_default_allow_list, |
| inputs=[default_allow_list_output_folder_location], |
| outputs=[in_allow_list], |
| api_visibility="undocumented", |
| ) |
| else: |
| print("Could not load in default allow list") |
|
|
| |
| if GET_COST_CODES and (COST_CODES_PATH or S3_COST_CODES_PATH): |
| if ( |
| not os.path.exists(COST_CODES_PATH) |
| and S3_COST_CODES_PATH |
| and RUN_AWS_FUNCTIONS |
| ): |
| print("Downloading cost codes from S3") |
| blocks.load( |
| download_file_from_s3, |
| inputs=[ |
| s3_default_bucket, |
| s3_default_cost_codes_file, |
| default_cost_codes_output_folder_location, |
| ], |
| api_visibility="undocumented", |
| ).success( |
| load_in_default_cost_codes, |
| inputs=[ |
| default_cost_codes_output_folder_location, |
| default_cost_code_textbox, |
| ], |
| outputs=[ |
| cost_code_dataframe, |
| cost_code_dataframe_base, |
| cost_code_choice_drop, |
| ], |
| api_visibility="undocumented", |
| ) |
| print("Successfully loaded cost codes from S3") |
| elif os.path.exists(COST_CODES_PATH): |
| print( |
| "Loading cost codes from default cost codes path location:", |
| COST_CODES_PATH, |
| ) |
| blocks.load( |
| load_in_default_cost_codes, |
| inputs=[ |
| default_cost_codes_output_folder_location, |
| default_cost_code_textbox, |
| ], |
| outputs=[ |
| cost_code_dataframe, |
| cost_code_dataframe_base, |
| cost_code_choice_drop, |
| ], |
| api_visibility="undocumented", |
| ) |
| else: |
| print("Could not load in cost code data") |
|
|
| |
| if GET_COST_CODES and (COST_CODES_PATH or S3_COST_CODES_PATH): |
| session_hash_textbox.change( |
| apply_session_default_cost_code, |
| inputs=[ |
| session_hash_textbox, |
| cost_code_dataframe, |
| input_folder_textbox, |
| default_cost_code_textbox, |
| cost_code_choice_drop, |
| ], |
| outputs=[default_cost_code_textbox, cost_code_choice_drop], |
| api_visibility="undocumented", |
| ) |
|
|
| |
| |
| |
|
|
| |
| |
| access_callback = CSVLogger_custom(dataset_file_name=LOG_FILE_NAME) |
|
|
| access_callback.setup([session_hash_textbox, host_name_textbox], ACCESS_LOGS_FOLDER) |
| session_hash_textbox.change( |
| lambda *args: access_callback.flag( |
| list(args), |
| save_to_csv=SAVE_LOGS_TO_CSV, |
| save_to_dynamodb=SAVE_LOGS_TO_DYNAMODB, |
| dynamodb_table_name=ACCESS_LOG_DYNAMODB_TABLE_NAME, |
| dynamodb_headers=DYNAMODB_ACCESS_LOG_HEADERS, |
| replacement_headers=CSV_ACCESS_LOG_HEADERS, |
| ), |
| [session_hash_textbox, host_name_textbox], |
| outputs=[flag_value_placeholder], |
| preprocess=False, |
| api_visibility="undocumented", |
| ).success( |
| fn=upload_log_file_to_s3, |
| inputs=[access_logs_state, access_s3_logs_loc_state], |
| outputs=[s3_logs_output_textbox], |
| api_visibility="undocumented", |
| ) |
|
|
| |
| pdf_callback = CSVLogger_custom(dataset_file_name=FEEDBACK_LOG_FILE_NAME) |
| data_callback = CSVLogger_custom(dataset_file_name=FEEDBACK_LOG_FILE_NAME) |
|
|
| if DISPLAY_FILE_NAMES_IN_LOGS: |
| |
| pdf_callback.setup( |
| [ |
| pdf_feedback_radio, |
| pdf_further_details_text, |
| doc_file_name_no_extension_textbox, |
| ], |
| FEEDBACK_LOGS_FOLDER, |
| ) |
| pdf_submit_feedback_btn.click( |
| lambda *args: pdf_callback.flag( |
| list(args), |
| save_to_csv=SAVE_LOGS_TO_CSV, |
| save_to_dynamodb=SAVE_LOGS_TO_DYNAMODB, |
| dynamodb_table_name=FEEDBACK_LOG_DYNAMODB_TABLE_NAME, |
| dynamodb_headers=DYNAMODB_FEEDBACK_LOG_HEADERS, |
| replacement_headers=CSV_FEEDBACK_LOG_HEADERS, |
| ), |
| [ |
| pdf_feedback_radio, |
| pdf_further_details_text, |
| doc_file_name_no_extension_textbox, |
| ], |
| outputs=[flag_value_placeholder], |
| preprocess=False, |
| api_visibility="undocumented", |
| ).success( |
| fn=upload_log_file_to_s3, |
| inputs=[feedback_logs_state, feedback_s3_logs_loc_state], |
| outputs=[pdf_further_details_text], |
| api_visibility="undocumented", |
| ) |
|
|
| |
| data_callback.setup( |
| [ |
| data_feedback_radio, |
| data_further_details_text, |
| data_file_name_with_extension_textbox, |
| ], |
| FEEDBACK_LOGS_FOLDER, |
| ) |
| data_submit_feedback_btn.click( |
| lambda *args: data_callback.flag( |
| list(args), |
| save_to_csv=SAVE_LOGS_TO_CSV, |
| save_to_dynamodb=SAVE_LOGS_TO_DYNAMODB, |
| dynamodb_table_name=FEEDBACK_LOG_DYNAMODB_TABLE_NAME, |
| dynamodb_headers=DYNAMODB_FEEDBACK_LOG_HEADERS, |
| replacement_headers=CSV_FEEDBACK_LOG_HEADERS, |
| ), |
| [ |
| data_feedback_radio, |
| data_further_details_text, |
| data_file_name_with_extension_textbox, |
| ], |
| outputs=[flag_value_placeholder], |
| preprocess=False, |
| api_visibility="undocumented", |
| ).success( |
| fn=upload_log_file_to_s3, |
| inputs=[feedback_logs_state, feedback_s3_logs_loc_state], |
| outputs=[data_further_details_text], |
| api_visibility="undocumented", |
| ) |
| else: |
| |
| pdf_callback.setup( |
| [ |
| pdf_feedback_radio, |
| pdf_further_details_text, |
| doc_file_name_no_extension_textbox, |
| ], |
| FEEDBACK_LOGS_FOLDER, |
| ) |
| pdf_submit_feedback_btn.click( |
| lambda *args: pdf_callback.flag( |
| list(args), |
| save_to_csv=SAVE_LOGS_TO_CSV, |
| save_to_dynamodb=SAVE_LOGS_TO_DYNAMODB, |
| dynamodb_table_name=FEEDBACK_LOG_DYNAMODB_TABLE_NAME, |
| dynamodb_headers=DYNAMODB_FEEDBACK_LOG_HEADERS, |
| replacement_headers=CSV_FEEDBACK_LOG_HEADERS, |
| ), |
| [ |
| pdf_feedback_radio, |
| pdf_further_details_text, |
| placeholder_doc_file_name_no_extension_textbox_for_logs, |
| ], |
| outputs=[flag_value_placeholder], |
| preprocess=False, |
| api_visibility="undocumented", |
| ).success( |
| fn=upload_log_file_to_s3, |
| inputs=[feedback_logs_state, feedback_s3_logs_loc_state], |
| outputs=[pdf_further_details_text], |
| api_visibility="undocumented", |
| ) |
|
|
| |
| data_callback.setup( |
| [ |
| data_feedback_radio, |
| data_further_details_text, |
| data_file_name_with_extension_textbox, |
| ], |
| FEEDBACK_LOGS_FOLDER, |
| ) |
| data_submit_feedback_btn.click( |
| lambda *args: data_callback.flag( |
| list(args), |
| save_to_csv=SAVE_LOGS_TO_CSV, |
| save_to_dynamodb=SAVE_LOGS_TO_DYNAMODB, |
| dynamodb_table_name=FEEDBACK_LOG_DYNAMODB_TABLE_NAME, |
| dynamodb_headers=DYNAMODB_FEEDBACK_LOG_HEADERS, |
| replacement_headers=CSV_FEEDBACK_LOG_HEADERS, |
| ), |
| [ |
| data_feedback_radio, |
| data_further_details_text, |
| placeholder_data_file_name_no_extension_textbox_for_logs, |
| ], |
| outputs=[flag_value_placeholder], |
| preprocess=False, |
| api_visibility="undocumented", |
| ).success( |
| fn=upload_log_file_to_s3, |
| inputs=[feedback_logs_state, feedback_s3_logs_loc_state], |
| outputs=[data_further_details_text], |
| api_visibility="undocumented", |
| ) |
|
|
| |
|
|
| if DISPLAY_FILE_NAMES_IN_LOGS: |
|
|
| successful_textract_api_call_number.change( |
| lambda *args: usage_callback.flag( |
| list(args), |
| save_to_csv=SAVE_LOGS_TO_CSV, |
| save_to_dynamodb=SAVE_LOGS_TO_DYNAMODB, |
| dynamodb_table_name=USAGE_LOG_DYNAMODB_TABLE_NAME, |
| dynamodb_headers=DYNAMODB_USAGE_LOG_HEADERS, |
| replacement_headers=CSV_USAGE_LOG_HEADERS, |
| ), |
| [ |
| session_hash_textbox, |
| doc_file_name_no_extension_textbox, |
| blank_data_file_name_no_extension_textbox_for_logs, |
| actual_time_taken_number, |
| total_pdf_page_count, |
| textract_query_number, |
| pii_identification_method_drop, |
| comprehend_query_number, |
| cost_code_choice_drop, |
| handwrite_signature_checkbox, |
| host_name_textbox, |
| text_extract_method_radio, |
| is_a_textract_api_call, |
| task_textbox, |
| vlm_model_name_textbox, |
| vlm_total_input_tokens_number, |
| vlm_total_output_tokens_number, |
| llm_model_name_textbox, |
| llm_total_input_tokens_number, |
| llm_total_output_tokens_number, |
| ], |
| outputs=[flag_value_placeholder], |
| preprocess=False, |
| api_visibility="undocumented", |
| ).success( |
| fn=upload_log_file_to_s3, |
| inputs=[usage_logs_state, usage_s3_logs_loc_state], |
| outputs=[s3_logs_output_textbox], |
| api_visibility="undocumented", |
| ) |
|
|
| else: |
| successful_textract_api_call_number.change( |
| lambda *args: usage_callback.flag( |
| list(args), |
| save_to_csv=SAVE_LOGS_TO_CSV, |
| save_to_dynamodb=SAVE_LOGS_TO_DYNAMODB, |
| dynamodb_table_name=USAGE_LOG_DYNAMODB_TABLE_NAME, |
| dynamodb_headers=DYNAMODB_USAGE_LOG_HEADERS, |
| replacement_headers=CSV_USAGE_LOG_HEADERS, |
| ), |
| [ |
| session_hash_textbox, |
| placeholder_doc_file_name_no_extension_textbox_for_logs, |
| blank_data_file_name_no_extension_textbox_for_logs, |
| actual_time_taken_number, |
| total_pdf_page_count, |
| textract_query_number, |
| pii_identification_method_drop, |
| comprehend_query_number, |
| cost_code_choice_drop, |
| handwrite_signature_checkbox, |
| host_name_textbox, |
| text_extract_method_radio, |
| is_a_textract_api_call, |
| task_textbox, |
| vlm_model_name_textbox, |
| vlm_total_input_tokens_number, |
| vlm_total_output_tokens_number, |
| llm_model_name_textbox, |
| llm_total_input_tokens_number, |
| llm_total_output_tokens_number, |
| ], |
| outputs=[flag_value_placeholder], |
| preprocess=False, |
| api_visibility="undocumented", |
| ).success( |
| fn=upload_log_file_to_s3, |
| inputs=[usage_logs_state, usage_s3_logs_loc_state], |
| outputs=[s3_logs_output_textbox], |
| api_visibility="undocumented", |
| ) |
|
|
| |
| |
| |
| from tools.simplified_api import ( |
| doc_redact_api, |
| pdf_summarise_api, |
| preview_boxes_api, |
| review_apply_api, |
| tabular_redact_api, |
| ) |
|
|
| gr.api( |
| doc_redact_api, |
| api_name="doc_redact", |
| api_description=( |
| "Redact a single PDF/image in one call (CLI-aligned). " |
| "Optional handwrite_signature_checkbox for AWS Textract extraction " |
| "(e.g. Extract handwriting, Extract signatures). " |
| "Returns (output_paths, message). Does not update the main UI session." |
| ), |
| ) |
|
|
| gr.api( |
| review_apply_api, |
| api_name="review_apply", |
| api_description=( |
| "Apply redactions in one call from the original PDF and a *_review_file.csv. " |
| "Uses PyMuPDF redaction annotations and strips underlying text in *_redacted.pdf. " |
| "Also returns *_redactions_for_review.pdf (text retained for review). " |
| "Returns (output_paths, message). Does not update the Review tab UI session." |
| ), |
| ) |
|
|
| gr.api( |
| pdf_summarise_api, |
| api_name="pdf_summarise", |
| api_description=( |
| "Summarise a PDF in one call (CLI-aligned: OCR/text extract then LLM summary). " |
| "Returns (output_paths, status_message, summary_text)." |
| ), |
| ) |
|
|
| gr.api( |
| tabular_redact_api, |
| api_name="tabular_redact", |
| api_description=( |
| "Redact a single tabular file (CSV/XLSX/Parquet/DOCX) in one call. " |
| "Returns (output_paths, message). Does not update the Tabular UI session." |
| ), |
| ) |
|
|
| gr.api( |
| preview_boxes_api, |
| api_name="preview_boxes", |
| api_description=( |
| "Render proposed redaction boxes from a *_review_file.csv onto the original PDF " |
| "and return a ZIP of preview PNGs. Use this to verify box positions before calling " |
| "/review_apply — no redaction is applied. " |
| "Returns (zip_path, message). For agents with local files, calling " |
| "tools.preview_redaction_boxes.preview_redaction_boxes() directly is faster." |
| ), |
| ) |
|
|
| |
| |
| |
|
|
| blocks.queue( |
| max_size=int(MAX_QUEUE_SIZE), |
| default_concurrency_limit=int(DEFAULT_CONCURRENCY_LIMIT), |
| ) |
|
|
| if not RUN_DIRECT_MODE: |
| |
| |
| _gradio_file_allowed_paths: list[str] = [ |
| str(Path(OUTPUT_FOLDER).resolve()), |
| str(Path(INPUT_FOLDER).resolve()), |
| ] |
| if GRADIO_TEMP_DIR: |
| _gradio_file_allowed_paths.append(str(Path(GRADIO_TEMP_DIR).resolve())) |
| |
| _workspace_gradio_uploads = ( |
| Path(__file__).resolve().parent / "workspace" / ".gradio_uploads" |
| ) |
| if _workspace_gradio_uploads.is_dir(): |
| _gradio_file_allowed_paths.append(str(_workspace_gradio_uploads.resolve())) |
| |
| _gradio_file_allowed_paths = list(dict.fromkeys(_gradio_file_allowed_paths)) |
|
|
| |
| if RUN_FASTAPI: |
| if ALLOWED_ORIGINS: |
| print(f"CORS enabled. Allowing origins: {ALLOWED_ORIGINS}") |
| app.add_middleware( |
| CORSMiddleware, |
| allow_origins=ALLOWED_ORIGINS, |
| allow_credentials=True, |
| allow_methods=["*"], |
| allow_headers=["*"], |
| ) |
|
|
| if ALLOWED_HOSTS: |
| app.add_middleware(TrustedHostMiddleware, allowed_hosts=ALLOWED_HOSTS) |
|
|
| @app.get("/health", status_code=status.HTTP_200_OK) |
| def health_check(): |
| """Simple health check endpoint.""" |
| return {"status": "ok"} |
|
|
| from agent_routes import router as agent_router |
|
|
| app.include_router(agent_router, prefix="/agent") |
|
|
| app = gr.mount_gradio_app( |
| app, |
| blocks, |
| theme=gr.themes.Default(primary_hue="blue"), |
| head=head_html, |
| css=css, |
| show_error=True, |
| auth=authenticate_user if COGNITO_AUTH else None, |
| max_file_size=MAX_FILE_SIZE, |
| path="/", |
| favicon_path=_resolve_optional_file_path(FAVICON_PATH), |
| mcp_server=RUN_MCP_SERVER, |
| allowed_paths=_gradio_file_allowed_paths, |
| ) |
|
|
| |
| |
|
|
| else: |
| if __name__ == "__main__": |
| if COGNITO_AUTH: |
| blocks.launch( |
| theme=gr.themes.Default(primary_hue="blue"), |
| head=head_html, |
| css=css, |
| show_error=True, |
| inbrowser=True, |
| auth=authenticate_user, |
| max_file_size=MAX_FILE_SIZE, |
| server_name=GRADIO_SERVER_NAME, |
| server_port=GRADIO_SERVER_PORT, |
| root_path=ROOT_PATH, |
| favicon_path=_resolve_optional_file_path(FAVICON_PATH), |
| mcp_server=RUN_MCP_SERVER, |
| allowed_paths=_gradio_file_allowed_paths, |
| ) |
| else: |
| blocks.launch( |
| theme=gr.themes.Default(primary_hue="blue"), |
| head=head_html, |
| css=css, |
| show_error=True, |
| inbrowser=True, |
| max_file_size=MAX_FILE_SIZE, |
| server_name=GRADIO_SERVER_NAME, |
| server_port=GRADIO_SERVER_PORT, |
| root_path=ROOT_PATH, |
| favicon_path=_resolve_optional_file_path(FAVICON_PATH), |
| mcp_server=RUN_MCP_SERVER, |
| allowed_paths=_gradio_file_allowed_paths, |
| ) |
|
|
| else: |
| if __name__ == "__main__": |
| from cli_redact import main |
|
|
| |
| if not DIRECT_MODE_INPUT_FILE: |
| print( |
| "Error: DIRECT_MODE_INPUT_FILE environment variable must be set for direct mode." |
| ) |
| print( |
| "Please set DIRECT_MODE_INPUT_FILE to the path of your input file." |
| ) |
| exit(1) |
|
|
| |
| if DIRECT_MODE_TASK == "combine_review_pdfs": |
| direct_mode_input_file = [ |
| p.strip() for p in DIRECT_MODE_INPUT_FILE.split(",") if p.strip() |
| ] |
| elif DIRECT_MODE_TASK == "summarise": |
| direct_mode_input_file = [ |
| p.strip() for p in DIRECT_MODE_INPUT_FILE.split(",") if p.strip() |
| ] |
| else: |
| direct_mode_input_file = DIRECT_MODE_INPUT_FILE |
|
|
| |
| direct_mode_args = { |
| |
| "task": DIRECT_MODE_TASK, |
| |
| "input_file": direct_mode_input_file, |
| "output_dir": DIRECT_MODE_OUTPUT_DIR, |
| "input_dir": INPUT_FOLDER, |
| "language": DIRECT_MODE_LANGUAGE, |
| "allow_list": ALLOW_LIST_PATH, |
| "pii_detector": DIRECT_MODE_PII_DETECTOR, |
| "username": DIRECT_MODE_DEFAULT_USER, |
| "save_to_user_folders": SESSION_OUTPUT_FOLDER, |
| "local_redact_entities": CHOSEN_REDACT_ENTITIES, |
| "aws_redact_entities": CHOSEN_COMPREHEND_ENTITIES, |
| "aws_access_key": AWS_ACCESS_KEY, |
| "aws_secret_key": AWS_SECRET_KEY, |
| "cost_code": DEFAULT_COST_CODE, |
| "aws_region": AWS_REGION, |
| "s3_bucket": DOCUMENT_REDACTION_BUCKET, |
| "save_outputs_to_s3": SAVE_OUTPUTS_TO_S3, |
| "s3_outputs_folder": S3_OUTPUTS_FOLDER, |
| "s3_outputs_bucket": S3_OUTPUTS_BUCKET, |
| "do_initial_clean": DO_INITIAL_TABULAR_DATA_CLEAN, |
| "save_logs_to_csv": SAVE_LOGS_TO_CSV, |
| "save_logs_to_dynamodb": SAVE_LOGS_TO_DYNAMODB, |
| "display_file_names_in_logs": DISPLAY_FILE_NAMES_IN_LOGS, |
| "upload_logs_to_s3": RUN_AWS_FUNCTIONS, |
| "s3_logs_prefix": S3_USAGE_LOGS_FOLDER, |
| "feedback_logs_folder": FEEDBACK_LOGS_FOLDER, |
| "access_logs_folder": ACCESS_LOGS_FOLDER, |
| "usage_logs_folder": USAGE_LOGS_FOLDER, |
| "paddle_model_path": PADDLE_MODEL_PATH, |
| "spacy_model_path": SPACY_MODEL_PATH, |
| |
| "ocr_method": DIRECT_MODE_OCR_METHOD, |
| "ocr_first_pass_max_workers": DIRECT_MODE_OCR_FIRST_PASS_MAX_WORKERS, |
| "efficient_ocr": EFFICIENT_OCR, |
| "efficient_ocr_min_words": EFFICIENT_OCR_MIN_WORDS, |
| "efficient_ocr_min_image_coverage_fraction": EFFICIENT_OCR_MIN_IMAGE_COVERAGE_FRACTION, |
| "efficient_ocr_min_embedded_image_px": EFFICIENT_OCR_MIN_EMBEDDED_IMAGE_PX, |
| "hybrid_textract_bedrock_vlm": HYBRID_TEXTRACT_BEDROCK_VLM, |
| "page_min": DIRECT_MODE_PAGE_MIN, |
| "page_max": DIRECT_MODE_PAGE_MAX, |
| "images_dpi": DIRECT_MODE_IMAGES_DPI, |
| "chosen_local_ocr_model": DIRECT_MODE_CHOSEN_LOCAL_OCR_MODEL, |
| "preprocess_local_ocr_images": DIRECT_MODE_PREPROCESS_LOCAL_OCR_IMAGES, |
| "compress_redacted_pdf": DIRECT_MODE_COMPRESS_REDACTED_PDF, |
| "return_pdf_end_of_redaction": DIRECT_MODE_RETURN_PDF_END_OF_REDACTION, |
| "deny_list_file": DENY_LIST_PATH, |
| "allow_list_file": ALLOW_LIST_PATH, |
| "redact_whole_page_file": WHOLE_PAGE_REDACTION_LIST_PATH, |
| "handwrite_signature_extraction": DEFAULT_HANDWRITE_SIGNATURE_CHECKBOX, |
| "extract_forms": DIRECT_MODE_EXTRACT_FORMS, |
| "extract_tables": DIRECT_MODE_EXTRACT_TABLES, |
| "extract_layout": DIRECT_MODE_EXTRACT_LAYOUT, |
| "extract_signatures": DIRECT_MODE_EXTRACT_SIGNATURES, |
| "match_fuzzy_whole_phrase_bool": DIRECT_MODE_MATCH_FUZZY_WHOLE_PHRASE_BOOL, |
| |
| "vlm_model_choice": CLOUD_VLM_MODEL_CHOICE, |
| "inference_server_vlm_model": DEFAULT_INFERENCE_SERVER_VLM_MODEL, |
| "inference_server_api_url": INFERENCE_SERVER_API_URL, |
| "gemini_api_key": GEMINI_API_KEY, |
| "azure_openai_api_key": AZURE_OPENAI_API_KEY, |
| "azure_openai_endpoint": AZURE_OPENAI_INFERENCE_ENDPOINT, |
| |
| |
| |
| "llm_model_choice": CLOUD_LLM_PII_MODEL_CHOICE, |
| "llm_inference_method": CHOSEN_LLM_PII_INFERENCE_METHOD, |
| "inference_server_pii_model": DEFAULT_INFERENCE_SERVER_PII_MODEL, |
| "llm_temperature": LLM_TEMPERATURE, |
| "llm_max_tokens": LLM_MAX_NEW_TOKENS, |
| "llm_redact_entities": CHOSEN_LLM_ENTITIES, |
| "custom_llm_instructions": "", |
| |
| "summarisation_inference_method": AWS_LLM_PII_OPTION, |
| "summarisation_temperature": 0.6, |
| "summarisation_max_pages_per_group": 30, |
| "summary_page_group_max_workers": DIRECT_MODE_SUMMARY_PAGE_GROUP_MAX_WORKERS, |
| "summarisation_api_key": "", |
| "summarisation_context": "", |
| "summarisation_format": "detailed", |
| "summarisation_additional_instructions": "", |
| |
| "anon_strategy": DIRECT_MODE_ANON_STRATEGY, |
| "text_columns": DEFAULT_TEXT_COLUMNS, |
| "excel_sheets": DEFAULT_EXCEL_SHEETS, |
| "fuzzy_mistakes": DIRECT_MODE_FUZZY_MISTAKES, |
| |
| "duplicate_type": DIRECT_MODE_DUPLICATE_TYPE, |
| "similarity_threshold": DIRECT_MODE_SIMILARITY_THRESHOLD, |
| "min_word_count": DIRECT_MODE_MIN_WORD_COUNT, |
| "min_consecutive_pages": DIRECT_MODE_MIN_CONSECUTIVE_PAGES, |
| "greedy_match": DIRECT_MODE_GREEDY_MATCH, |
| "combine_pages": DIRECT_MODE_COMBINE_PAGES, |
| "remove_duplicate_rows": DIRECT_MODE_REMOVE_DUPLICATE_ROWS, |
| |
| "textract_action": DIRECT_MODE_TEXTRACT_ACTION, |
| "job_id": DIRECT_MODE_JOB_ID, |
| "textract_bucket": TEXTRACT_WHOLE_DOCUMENT_ANALYSIS_BUCKET, |
| "textract_input_prefix": TEXTRACT_WHOLE_DOCUMENT_ANALYSIS_INPUT_SUBFOLDER, |
| "textract_output_prefix": TEXTRACT_WHOLE_DOCUMENT_ANALYSIS_OUTPUT_SUBFOLDER, |
| "s3_textract_document_logs_subfolder": TEXTRACT_JOBS_S3_LOC, |
| "local_textract_document_logs_subfolder": TEXTRACT_JOBS_LOCAL_LOC, |
| "poll_interval": 30, |
| "max_poll_attempts": 120, |
| |
| "search_query": DEFAULT_SEARCH_QUERY, |
| } |
|
|
| print(f"Running in direct mode with task: {DIRECT_MODE_TASK}") |
| print(f"Input file: {DIRECT_MODE_INPUT_FILE}") |
| print(f"Output directory: {DIRECT_MODE_OUTPUT_DIR}") |
|
|
| if DIRECT_MODE_TASK == "deduplicate": |
| print(f"Duplicate type: {DIRECT_MODE_DUPLICATE_TYPE}") |
| print(f"Similarity threshold: {DEFAULT_DUPLICATE_DETECTION_THRESHOLD}") |
| print(f"Min word count: {DEFAULT_MIN_WORD_COUNT}") |
| if DEFAULT_SEARCH_QUERY: |
| print(f"Search query: {DEFAULT_SEARCH_QUERY}") |
| if DEFAULT_TEXT_COLUMNS: |
| print(f"Text columns: {DEFAULT_TEXT_COLUMNS}") |
| print(f"Remove duplicate rows: {REMOVE_DUPLICATE_ROWS}") |
|
|
| if DIRECT_MODE_TASK == "summarise": |
| print( |
| "Summarisation: supports PDF (extract text via ocr_method then summarise) or OCR CSV(s). " |
| "Use DIRECT_MODE_INPUT_FILE for a single path or comma-separated paths for multiple CSVs. " |
| "Options: summarisation_inference_method, summarisation_format, " |
| "summarisation_context, summarisation_additional_instructions; ocr_method applies when input is PDF." |
| ) |
|
|
| if DIRECT_MODE_TASK == "combine_review_pdfs": |
| print( |
| "Combine review PDFs: merge redaction comments from multiple '_redactions_for_review' PDFs. " |
| "Set DIRECT_MODE_INPUT_FILE to comma-separated paths (at least 2)." |
| ) |
|
|
| |
| extraction_options = ( |
| list(direct_mode_args["handwrite_signature_extraction"]) |
| if direct_mode_args["handwrite_signature_extraction"] |
| else list() |
| ) |
| if direct_mode_args["extract_forms"]: |
| extraction_options.append("Extract forms") |
| if direct_mode_args["extract_tables"]: |
| extraction_options.append("Extract tables") |
| if direct_mode_args["extract_layout"]: |
| extraction_options.append("Extract layout") |
| direct_mode_args["handwrite_signature_extraction"] = extraction_options |
|
|
| |
| main(direct_mode_args=direct_mode_args) |
|
|