data-science-document-ai 1.40.0__py3-none-any.whl → 1.40.1__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: data-science-document-ai
3
- Version: 1.40.0
3
+ Version: 1.40.1
4
4
  Summary: "Document AI repo for data science"
5
5
  Author: Naomi Nguyen
6
6
  Author-email: naomi.nguyen@forto.com
@@ -6,7 +6,7 @@ src/excel_processing.py,sha256=ZUlZ5zgWObmQfAWHoSrEEITKwr-xXxuOiPC3qDnGjtQ,2459
6
6
  src/io.py,sha256=IXz4wWqiHa9mnHNgtrC6X9M2lItYp9eu6rHCThUIh5c,3585
7
7
  src/llm.py,sha256=aEK3rL8XvY7CakvkOJQmcHpEKwZRd8PPrLrzHiO-GFk,7827
8
8
  src/log_setup.py,sha256=RhHnpXqcl-ii4EJzRt47CF2R-Q3YPF68tepg_Kg7tkw,2895
9
- src/pdf_processing.py,sha256=yB0FpIdSRqxeEbZAIK_bPFypWrSSMb8uwCRxTTFfmxc,15493
9
+ src/pdf_processing.py,sha256=S_eTsgaDIIr3SCrEmaQZyc7TDJlRI0GCuP0P9EGF1Xc,15385
10
10
  src/postprocessing/common.py,sha256=OR9O73gUP4tevIZMnorbiUgzviEJlVr46ArTWMXrYVA,19316
11
11
  src/postprocessing/postprocess_booking_confirmation.py,sha256=nK32eDiBNbauyQz0oCa9eraysku8aqzrcoRFoWVumDU,4827
12
12
  src/postprocessing/postprocess_commercial_invoice.py,sha256=3I8ijluTZcOs_sMnFZxfkAPle0UFQ239EMuvZfDZVPg,1028
@@ -54,6 +54,6 @@ src/prompts/prompt_library.py,sha256=VJWHeXN-s501C2GiidIIvQQuZdU6T1R27hE2dKBiI40
54
54
  src/setup.py,sha256=kPSZosrICfaGZeDaajr40Ha7Ok4XK4fo_uq35Omiwr0,7128
55
55
  src/tms.py,sha256=UXbIo1QE--hIX6NZi5Qyp2R_CP338syrY9pCTPrfgnE,1741
56
56
  src/utils.py,sha256=-1Yq_5ExZlFQRUPRsQHiBD3TthNSiPVPp46Dvdb9Kf0,13830
57
- data_science_document_ai-1.40.0.dist-info/METADATA,sha256=_BYb7GWd_Rw9lhMgd3Wiyoqe2Km1Vn-UpAT-2DwPrAY,2153
58
- data_science_document_ai-1.40.0.dist-info/WHEEL,sha256=M5asmiAlL6HEcOq52Yi5mmk9KmTVjY2RDPtO4p9DMrc,88
59
- data_science_document_ai-1.40.0.dist-info/RECORD,,
57
+ data_science_document_ai-1.40.1.dist-info/METADATA,sha256=RhLAfUQIqkJFJByLNyO0C3er2Q4loNhYi9n7T9uAY5Y,2153
58
+ data_science_document_ai-1.40.1.dist-info/WHEEL,sha256=M5asmiAlL6HEcOq52Yi5mmk9KmTVjY2RDPtO4p9DMrc,88
59
+ data_science_document_ai-1.40.1.dist-info/RECORD,,
src/pdf_processing.py CHANGED
@@ -366,7 +366,6 @@ async def data_extraction_manual_flow(
366
366
  meta (DocumentMeta): Metadata associated with the document.
367
367
  processor_client (DocumentProcessorClient): Client for the Document AI processor.
368
368
  schema_client (DocumentSchemaClient): Client for the Document AI schema.
369
- embed_manager (EmbeddingsManager): Manager for embeddings.
370
369
 
371
370
  Returns:
372
371
  dict: A dictionary containing the processed document information.
@@ -406,7 +405,6 @@ async def data_extraction_manual_flow(
406
405
  params=params,
407
406
  input_doc_type=meta.documentTypeCode,
408
407
  file_content=file_content,
409
- schema_client=schema_client,
410
408
  mime_type=mime_type,
411
409
  )
412
410