LICENSE
MANIFEST.in
README.md
pyproject.toml
src/docintel/__init__.py
src/docintel/app.py
src/docintel/cli.py
src/docintel/client.py
src/docintel/config.py
src/docintel/ui.py
src/docintel/wsgi.py
src/docintel/auth/__init__.py
src/docintel/auth/api_keys.py
src/docintel/auth/context.py
src/docintel/auth/limiter.py
src/docintel/auth/local_tokens.py
src/docintel/auth/middleware.py
src/docintel/auth/oidc.py
src/docintel/auth/oidc_config.py
src/docintel/auth/oidc_flow.py
src/docintel/auth/routes.py
src/docintel/capabilities/__init__.py
src/docintel/capabilities/compliance/__init__.py
src/docintel/capabilities/compliance/integrity.py
src/docintel/capabilities/compliance/pii.py
src/docintel/capabilities/compliance/presets.py
src/docintel/capabilities/compliance/sensitive.py
src/docintel/capabilities/extraction/__init__.py
src/docintel/capabilities/extraction/llm_model_catalog.py
src/docintel/capabilities/extraction/llm_providers.py
src/docintel/capabilities/extraction/ocr.py
src/docintel/capabilities/extraction/structure.py
src/docintel/capabilities/extraction/structure_llm.py
src/docintel/capabilities/extraction/structure_render.py
src/docintel/capabilities/extraction/structure_schema.py
src/docintel/capabilities/extraction/formats/__init__.py
src/docintel/capabilities/extraction/formats/extract.py
src/docintel/capabilities/extraction/formats/models.py
src/docintel/capabilities/extraction/formats/paginated_pdf.py
src/docintel/capabilities/extraction/formats/registry.py
src/docintel/capabilities/extraction/formats/sniff.py
src/docintel/capabilities/pdf/__init__.py
src/docintel/capabilities/pdf/annotator.py
src/docintel/capabilities/pdf/editor.py
src/docintel/capabilities/pdf/models.py
src/docintel/capabilities/pdf/page_edit_llm.py
src/docintel/capabilities/pdf/pattern_planner.py
src/docintel/capabilities/pdf/search.py
src/docintel/capabilities/pipeline/__init__.py
src/docintel/capabilities/pipeline/process.py
src/docintel/capabilities/understanding/__init__.py
src/docintel/capabilities/understanding/classify.py
src/docintel/capabilities/understanding/compare.py
src/docintel/capabilities/understanding/models.py
src/docintel/capabilities/understanding/textrank.py
src/docintel/capabilities/understanding/understand.py
src/docintel/db/__init__.py
src/docintel/db/audit.py
src/docintel/db/connection.py
src/docintel/db/init.py
src/docintel/db/schema.sql
src/docintel/db/secrets.py
src/docintel/db/tenants.py
src/docintel/db/users.py
src/docintel/jobs/__init__.py
src/docintel/jobs/helpers.py
src/docintel/jobs/models.py
src/docintel/jobs/queue.py
src/docintel/jobs/store.py
src/docintel/jobs/tasks.py
src/docintel/jobs/webhooks.py
src/docintel/openapi/__init__.py
src/docintel/openapi/openapi.yaml
src/docintel/ops/__init__.py
src/docintel/ops/job_logging.py
src/docintel/ops/logging.py
src/docintel/ops/metrics.py
src/docintel/ops/middleware.py
src/docintel/ops/prometheus.py
src/docintel/ops/secrets.py
src/docintel/presentation/__init__.py
src/docintel/presentation/pii_labels.py
src/docintel/routes/__init__.py
src/docintel/routes/async_enqueue.py
src/docintel/routes/batch.py
src/docintel/routes/document_upload.py
src/docintel/routes/documents.py
src/docintel/routes/jobs.py
src/docintel/routes/openapi_docs.py
src/docintel/routes/ops.py
src/docintel/routes/pdf.py
src/docintel/routes/tenants.py
src/docintel/routes/text.py
src/docintel/services/__init__.py
src/docintel/services/integrity.py
src/docintel/services/pdf/__init__.py
src/docintel/services/pdf/annotator.py
src/docintel/services/pdf/models.py
src/docintel/services/pdf/ocr.py
src/docintel/services/pdf/pattern_planner.py
src/docintel/services/pdf/pii.py
src/docintel/services/pdf/presets.py
src/docintel/services/pdf/search.py
src/docintel/services/pdf/sensitive.py
src/docintel/services/pdf/structure.py
src/docintel/services/pdf/structure_llm.py
src/docintel/services/pdf/structure_render.py
src/docintel/services/pdf/structure_schema.py
src/docintel/services/summary/__init__.py
src/docintel/services/summary/models.py
src/docintel/services/summary/textrank.py
src/docintel/storage/__init__.py
src/docintel/storage/local.py
src/docintel/storage/s3.py
src/docintel/storage/s3_ingest.py
src/docintel/storage/tenant_path.py
src/docintel/tenants/__init__.py
src/docintel/tenants/context.py
src/docintel/tenants/middleware.py
src/docintel/tenants/settings_user.py
src/docintel/tenants/worker.py
src/docintel_platform.egg-info/PKG-INFO
src/docintel_platform.egg-info/SOURCES.txt
src/docintel_platform.egg-info/dependency_links.txt
src/docintel_platform.egg-info/entry_points.txt
src/docintel_platform.egg-info/requires.txt
src/docintel_platform.egg-info/top_level.txt
tests/test_annotate_async.py
tests/test_auth.py
tests/test_auth_routes.py
tests/test_batch.py
tests/test_client.py
tests/test_db_secrets.py
tests/test_detect_sensitive_async.py
tests/test_document_formats.py
tests/test_documents_async_routes.py
tests/test_documents_classify.py
tests/test_documents_compare.py
tests/test_documents_compare_files.py
tests/test_documents_detect_pii.py
tests/test_documents_integrity.py
tests/test_documents_process.py
tests/test_documents_process_async.py
tests/test_documents_summarize.py
tests/test_health.py
tests/test_integrity_analysis.py
tests/test_job_logging.py
tests/test_job_ttl.py
tests/test_jobs.py
tests/test_llm_model_catalog.py
tests/test_llm_providers.py
tests/test_local_auth_routes.py
tests/test_monitoring_config.py
tests/test_oidc.py
tests/test_openapi.py
tests/test_ops.py
tests/test_paginated_pdf.py
tests/test_pattern_planner.py
tests/test_pdf_editor.py
tests/test_pdf_editor_routes.py
tests/test_pdf_routes.py
tests/test_pdf_sensitive.py
tests/test_pdf_service.py
tests/test_pdf_structure.py
tests/test_pii_analyzer_config.py
tests/test_pii_labels.py
tests/test_pii_mask.py
tests/test_process_segments.py
tests/test_s3_ingest.py
tests/test_secrets.py
tests/test_storage.py
tests/test_structure_pii.py
tests/test_summary_routes.py
tests/test_summary_service.py
tests/test_tenant_context.py
tests/test_tenant_jobs.py
tests/test_tenant_routes.py
tests/test_ui.py
tests/test_ui_integrity.py
tests/test_ui_pii_entities.py
tests/test_ui_process.py
tests/test_understand_routes.py
tests/test_vertical_presets.py
tests/test_webhooks.py