pembot 0.1.7__py2.py3-none-any.whl → 0.1.8__py2.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.

Potentially problematic release.


This version of pembot might be problematic. Click here for more details.

@@ -1 +1 @@
1
- silly willy mistake
1
+ cyto/fixed the excel file input bug, in the conversion method; added exceptions where there is invalid input
pembot/.git/index CHANGED
Binary file
pembot/.git/logs/HEAD CHANGED
@@ -19,3 +19,4 @@ c3cc0da3d955ecec0f865c46c030a0c073697495 e6adbc3c373070269f97ef82d4f63027d7878f6
19
19
  e6adbc3c373070269f97ef82d4f63027d7878f67 81d01e1c63d48b096c77aae83471d42272ca9fce cyto <silverstone965@gmail.com> 1758890262 +0530 commit: cyto/fixed a file already open error and wrote to file if myfile is excel type and output_dir is given
20
20
  81d01e1c63d48b096c77aae83471d42272ca9fce e89cb4f5af158d26dcff5eed03dba6671a818739 cyto <silverstone965@gmail.com> 1758891589 +0530 commit: cyto/made the excel convertor compatible with suffix input from both system file and with bytes + manual suffix input
21
21
  e89cb4f5af158d26dcff5eed03dba6671a818739 e3c62c141fc65ef2be0095c49b23e06263f0b734 cyto <silverstone965@gmail.com> 1758892053 +0530 commit: silly willy mistake
22
+ e3c62c141fc65ef2be0095c49b23e06263f0b734 d440b20aae1265dabbd3ddaafb24c35e40e3ab3c cyto <silverstone965@gmail.com> 1759127664 +0530 commit: cyto/fixed the excel file input bug, in the conversion method; added exceptions where there is invalid input
@@ -19,3 +19,4 @@ c3cc0da3d955ecec0f865c46c030a0c073697495 e6adbc3c373070269f97ef82d4f63027d7878f6
19
19
  e6adbc3c373070269f97ef82d4f63027d7878f67 81d01e1c63d48b096c77aae83471d42272ca9fce cyto <silverstone965@gmail.com> 1758890262 +0530 commit: cyto/fixed a file already open error and wrote to file if myfile is excel type and output_dir is given
20
20
  81d01e1c63d48b096c77aae83471d42272ca9fce e89cb4f5af158d26dcff5eed03dba6671a818739 cyto <silverstone965@gmail.com> 1758891589 +0530 commit: cyto/made the excel convertor compatible with suffix input from both system file and with bytes + manual suffix input
21
21
  e89cb4f5af158d26dcff5eed03dba6671a818739 e3c62c141fc65ef2be0095c49b23e06263f0b734 cyto <silverstone965@gmail.com> 1758892053 +0530 commit: silly willy mistake
22
+ e3c62c141fc65ef2be0095c49b23e06263f0b734 d440b20aae1265dabbd3ddaafb24c35e40e3ab3c cyto <silverstone965@gmail.com> 1759127664 +0530 commit: cyto/fixed the excel file input bug, in the conversion method; added exceptions where there is invalid input
@@ -18,3 +18,4 @@ c3cc0da3d955ecec0f865c46c030a0c073697495 e6adbc3c373070269f97ef82d4f63027d7878f6
18
18
  e6adbc3c373070269f97ef82d4f63027d7878f67 81d01e1c63d48b096c77aae83471d42272ca9fce cyto <silverstone965@gmail.com> 1758890281 +0530 update by push
19
19
  81d01e1c63d48b096c77aae83471d42272ca9fce e89cb4f5af158d26dcff5eed03dba6671a818739 cyto <silverstone965@gmail.com> 1758891600 +0530 update by push
20
20
  e89cb4f5af158d26dcff5eed03dba6671a818739 e3c62c141fc65ef2be0095c49b23e06263f0b734 cyto <silverstone965@gmail.com> 1758892065 +0530 update by push
21
+ e3c62c141fc65ef2be0095c49b23e06263f0b734 d440b20aae1265dabbd3ddaafb24c35e40e3ab3c cyto <silverstone965@gmail.com> 1759127680 +0530 update by push
@@ -1 +1 @@
1
- e3c62c141fc65ef2be0095c49b23e06263f0b734
1
+ d440b20aae1265dabbd3ddaafb24c35e40e3ab3c
@@ -1 +1 @@
1
- e3c62c141fc65ef2be0095c49b23e06263f0b734
1
+ d440b20aae1265dabbd3ddaafb24c35e40e3ab3c
@@ -5,7 +5,6 @@ from pembot.pdf2markdown.extract import MarkdownPDFExtractor
5
5
  import os
6
6
  import pandas as pd
7
7
  from typing import Literal, Union
8
- import tempfile
9
8
  from datetime import datetime, date
10
9
  from tabulate import tabulate
11
10
 
@@ -36,6 +35,10 @@ class Convertor():
36
35
  self.input_filepath= None
37
36
  self.output= ""
38
37
  self.suffix= suffix
38
+ self.file_bytes= file_bytes
39
+
40
+ if (file_bytes and not suffix) or (file_bytes and not file_type):
41
+ raise Exception("wrong use of convertor library, have to give suffix and file_type along with the file_bytes")
39
42
 
40
43
 
41
44
  if model_name is None:
@@ -44,7 +47,7 @@ class Convertor():
44
47
 
45
48
  # file_type can be pdf, excel, etc.
46
49
  if file_bytes and suffix:
47
- with tempfile.TemporaryDirectory() as dp:
50
+ with TemporaryDirectory() as dp:
48
51
  output_dir = Path(dp)
49
52
  myfile = output_dir / f"input{suffix}"
50
53
  myfile.write_bytes(file_bytes)
@@ -102,42 +105,51 @@ class Convertor():
102
105
  markdown_output = []
103
106
 
104
107
  file_suffix= ''
105
- try:
106
- if not input_filepath.exists():
107
- file_suffix= self.suffix
108
- else:
109
- file_suffix = input_filepath.suffix.lower()
110
-
111
- current_engine: PandasReadEngineType = excel_ods_engine
112
108
 
113
- if file_suffix in ['.xls', '.xlsx', '.ods']:
114
- if file_suffix == '.ods':
115
- if current_engine is None:
116
- current_engine = 'odf'
117
- elif current_engine != 'odf':
118
- print(f"Warning: Specified engine '{current_engine}' may not be optimal for ODS. Forcing 'odf'.")
119
- current_engine = 'odf'
120
-
121
- excel_file = pd.ExcelFile(input_filepath, engine=current_engine)
122
- if not excel_file.sheet_names:
123
- return f"Warning: File '{input_filepath.name}' contains no sheets."
124
-
125
- for sheet_name in excel_file.sheet_names:
126
- df = excel_file.parse(sheet_name)
127
- markdown_output.append(f"## {sheet_name}\n")
109
+ try:
110
+ with TemporaryDirectory() as dp:
111
+ dp_path= Path(dp)
112
+
113
+ if input_filepath is None:
114
+ file_suffix= self.suffix
115
+ if file_suffix and self.file_bytes:
116
+ input_filepath= dp_path / ("my_excel_file" + file_suffix)
117
+ input_filepath.write_bytes(self.file_bytes)
118
+ else:
119
+ raise Exception("no input file name, and no file bytes either")
120
+ elif input_filepath.exists():
121
+ file_suffix = input_filepath.suffix.lower()
122
+
123
+ current_engine: PandasReadEngineType = excel_ods_engine
124
+
125
+ if file_suffix in ['.xls', '.xlsx', '.ods']:
126
+ if file_suffix == '.ods':
127
+ if current_engine is None:
128
+ current_engine = 'odf'
129
+ elif current_engine != 'odf':
130
+ print(f"Warning: Specified engine '{current_engine}' may not be optimal for ODS. Forcing 'odf'.")
131
+ current_engine = 'odf'
132
+
133
+ excel_file = pd.ExcelFile(input_filepath, engine=current_engine)
134
+ if not excel_file.sheet_names:
135
+ return f"Warning: File '{input_filepath.name}' contains no sheets."
136
+
137
+ for sheet_name in excel_file.sheet_names:
138
+ df = excel_file.parse(sheet_name)
139
+ markdown_output.append(f"## {sheet_name}\n")
140
+ markdown_table = tabulate(df, headers='keys', tablefmt='pipe')
141
+ markdown_output.append(markdown_table)
142
+ markdown_output.append("\n")
143
+
144
+ return "\n".join(markdown_output)
145
+
146
+ elif file_suffix == '.csv':
147
+ df = pd.read_csv(input_filepath)
128
148
  markdown_table = tabulate(df, headers='keys', tablefmt='pipe')
129
- markdown_output.append(markdown_table)
130
- markdown_output.append("\n")
149
+ return markdown_table
131
150
 
132
- return "\n".join(markdown_output)
133
-
134
- elif file_suffix == '.csv':
135
- df = pd.read_csv(input_filepath)
136
- markdown_table = tabulate(df, headers='keys', tablefmt='pipe')
137
- return markdown_table
138
-
139
- else:
140
- return f"Error: Unsupported file type: '{file_suffix}'. Please provide a CSV, XLS, XLSX, or ODS file."
151
+ else:
152
+ return f"Error: Unsupported file type: '{file_suffix}'. Please provide a CSV, XLS, XLSX, or ODS file."
141
153
 
142
154
  except ImportError as ie:
143
155
  if 'odfpy' in str(ie).lower() and file_suffix == '.ods':
@@ -183,10 +195,10 @@ if __name__ == '__main__':
183
195
  # conv= Convertor(file_bytes= imgpdf.read(), suffix= ".pdf", file_type= "pdf")
184
196
  # print(conv.output)
185
197
 
186
- # print("Test 2: JD pdf, bytes")
187
- # with open("/home/cyto/dev/pembotdir/jds/PM Trainee.pdf", "rb") as imgpdf:
188
- # conv= Convertor(file_bytes= imgpdf.read(), suffix= ".pdf", file_type= "pdf")
189
- # print(conv.output)
198
+ print("Test 2: balance sheet, bytes")
199
+ with open("/home/cyto/Downloads/balance_sheet_2023-24_final.xlsx", "rb") as xl:
200
+ conv= Convertor(file_bytes= xl.read(), suffix= ".xlsx", file_type= "excel")
201
+ print(conv.output)
190
202
 
191
203
  print("Test 3: excel schedule, bytes")
192
204
  with open("/home/cyto/Downloads/Assignment schedule.xlsx", "rb") as imgpdf:
@@ -194,13 +206,13 @@ if __name__ == '__main__':
194
206
  print(conv.output)
195
207
 
196
208
  # without bytes example:
197
- print("Test 4: scanned pdf, path")
198
- conv= Convertor(myfile= Path('/home/cyto/Documents/scanned.pdf'), output_dir= Path('/home/cyto/Documents'))
199
- print(conv.output)
200
-
201
- print("Test 5: schedule excel, path")
202
- conv= Convertor(myfile= Path('/home/cyto/Downloads/Assignment schedule.xlsx'), output_dir= Path('/home/cyto/Downloads'))
203
- print(conv.output)
209
+ # print("Test 4: scanned pdf, path")
210
+ # conv= Convertor(myfile= Path('/home/cyto/Documents/scanned.pdf'), output_dir= Path('/home/cyto/Documents'))
211
+ # print(conv.output)
212
+ #
213
+ # print("Test 5: schedule excel, path")
214
+ # conv= Convertor(myfile= Path('/home/cyto/Downloads/Assignment schedule.xlsx'), output_dir= Path('/home/cyto/Downloads'))
215
+ # print(conv.output)
204
216
  except FileNotFoundError as fe:
205
217
  print("file not found, modify the driver code to get sample files to test:\n\n", fe)
206
218
  except Exception as e:
pembot/__init__.py CHANGED
@@ -1,6 +1,6 @@
1
1
  """
2
2
  A Python Package to convert PEM blog content to usseful information by leveraging LLMs
3
3
  """
4
- __version__ = '0.1.7'
4
+ __version__ = '0.1.8'
5
5
  from .main import save_to_json_file, make_query
6
6
  __all__ = ["save_to_json_file", "make_query"]
pembot/config/config.yaml CHANGED
@@ -2,4 +2,4 @@ OUTPUT_DIR: /home/cyto/dev/pembotdir
2
2
  PAGE_DELIMITER: ___________________________ NEXT PAGE ___________________________
3
3
  app:
4
4
  name: pembot
5
- version: 0.1.7
5
+ version: 0.1.8
pembot/requirements.txt CHANGED
@@ -45,7 +45,7 @@ pandas==2.3.0
45
45
  pathlib==1.0.1
46
46
  pdfminer.six==20250506
47
47
  pdfplumber==0.11.7
48
- pembot==0.1.7
48
+ pembot==0.1.8
49
49
  pillow==11.3.0
50
50
  primp==0.15.0
51
51
  pyasn1==0.6.1
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: pembot
3
- Version: 0.1.7
3
+ Version: 0.1.8
4
4
  Summary: A Python Package to convert PEM blog content to usseful information by leveraging LLMs
5
5
  Author-email: cyto <aryan_sidhwani@protonmail.com>
6
6
  License-Expression: MIT
@@ -1,19 +1,19 @@
1
1
  pembot/.gitignore,sha256=yyDEUmeqZekG4AOrU9Zvu2ZQhJvEzEg_lQp2CDfBhXM,92
2
2
  pembot/LICENSE,sha256=OXLcl0T2SZ8Pmy2_dmlvKuetivmyPd5m1q-Gyd-zaYY,35149
3
- pembot/__init__.py,sha256=EX9fGAqPH699o3Da6RqEsOR2Wr3MKdTPah0RJwfK7mw,211
3
+ pembot/__init__.py,sha256=IxKTPliAYwPHtO5PsE7Y02tusB3OjcD65i0B2PUeiAM,211
4
4
  pembot/gartner.py,sha256=3ALknQ5mSXIimmwCa3JFDzB_EW2hHEcQO1T2odyBquk,5408
5
5
  pembot/main.py,sha256=lZLIV8XPonvNoY4LVS-5fct1y9URMXWoSGJUKMw3Yg8,9667
6
6
  pembot/output_structure_local.py,sha256=YfpHzfTNeLMSsB_CjAamha9D6Iz7E1IC-tW9xPCMWFc,3000
7
7
  pembot/pem.py,sha256=mv6iGcN1peSY7z2dtCQ_BKj31EFBNfczBhps_d-0XDo,6377
8
8
  pembot/pyrightconfig.json,sha256=j2O2tc8Z-Zu7hEnhN9neoKk6-iLkAlp4qOmAxFyHB7Y,368
9
9
  pembot/query.py,sha256=zgfIJsSMDatFPl0Fw3MhK7fO8uBB0Yj4rxEAExqGyGA,18054
10
- pembot/requirements.txt,sha256=VdlT1GjMuEBd0aaXBvYu8jVGNEHqS-HYP0PxFkjy1mE,1548
10
+ pembot/requirements.txt,sha256=ajv8mh0fR09U-wZjAZHL7FX94WN0kZWdg75i4thD5Kg,1548
11
11
  pembot/search.py,sha256=IW0F8QjE-HSYP47v5P9EqfnzKgFEf5CGxeICtHDDrkE,9137
12
- pembot/.git/COMMIT_EDITMSG,sha256=8Aj0tny5TMtJMf8GXlLD0iWIa3014XUbB4kdQ_DpywE,20
12
+ pembot/.git/COMMIT_EDITMSG,sha256=7XEtbMeWZPaVjMa9i368lBcWx9YEBJu_oMq6RTGyb7g,109
13
13
  pembot/.git/HEAD,sha256=KNJb-Cr0wOK3L1CVmyvrhZ4-YLljCl6MYD2tTdsrboA,21
14
14
  pembot/.git/config,sha256=ZFl9d2GyxirgRXRsv8iULIieKxwGC9P6SAjB_AmTkmQ,271
15
15
  pembot/.git/description,sha256=hatsFj1DoX6pz3eIMIvKFGbxsKjRzJLibpv2PaQGKu4,73
16
- pembot/.git/index,sha256=D-X98FZtV9oFdGMYpyz21lyOIKkGYQT3H1cAkggVsCo,2054
16
+ pembot/.git/index,sha256=-o4WBbTC28YSGXroXhc208B_0K3fI6HOIX4Elq-yC9Y,2054
17
17
  pembot/.git/packed-refs,sha256=7DECsr7q7vJ6Gw6a2gS3dE4v-YzbxGiWYoSWM43DgsQ,112
18
18
  pembot/.git/hooks/applypatch-msg.sample,sha256=AiNJeguLAzqlijpSG4YphpOGz3qw4vEBlj0yiqYhk_c,478
19
19
  pembot/.git/hooks/commit-msg.sample,sha256=H3TV6SkpebVz69WXQdRsuT_zkazdCD00C5Q3B1PZJDc,896
@@ -30,15 +30,16 @@ pembot/.git/hooks/push-to-checkout.sample,sha256=pT0HQXmLKHxt16-mSu5HPzBeZdP0lGO
30
30
  pembot/.git/hooks/sendemail-validate.sample,sha256=ROv8kj3FRmvACWAvDs8Ge5xlRZq_6IaN3Em3jmztepI,2308
31
31
  pembot/.git/hooks/update.sample,sha256=jV8vqD4QPPCLV-qmdSHfkZT0XL28s32lKtWGCXoU0QY,3650
32
32
  pembot/.git/info/exclude,sha256=ZnH-g7egfIky7okWTR8nk7IxgFjri5jcXAbuClo7DsE,240
33
- pembot/.git/logs/HEAD,sha256=jUmGH5OkLoVPnJR660a56FOJ7CUtST1Ca8iwVwJ1XP8,5018
34
- pembot/.git/logs/refs/heads/main,sha256=jUmGH5OkLoVPnJR660a56FOJ7CUtST1Ca8iwVwJ1XP8,5018
33
+ pembot/.git/logs/HEAD,sha256=fiHdPGbqFYCfV8_1-R-SatYdhRwtL8Tg1zQLIi-yP_Y,5266
34
+ pembot/.git/logs/refs/heads/main,sha256=fiHdPGbqFYCfV8_1-R-SatYdhRwtL8Tg1zQLIi-yP_Y,5266
35
35
  pembot/.git/logs/refs/remotes/origin/HEAD,sha256=OrkNquczPPh6fEGtutFKva_-_JhAdwnvXpCCPC4N6jk,194
36
- pembot/.git/logs/refs/remotes/origin/main,sha256=cvNjhHmt2b8MNQIyud3Qv2nz80GBqiKaAnNSL6cz3bk,2920
36
+ pembot/.git/logs/refs/remotes/origin/main,sha256=bZMcopGrWNXDVyOQYChlWyKK1sUfiHrtrODQ23xRzPA,3066
37
37
  pembot/.git/objects/00/3ba85af0ed7b9f6ab099ca298c3d0c18fb002b,sha256=pnk_IbjhUJWavx5BKSlXX8CEvWEMoSm8Dv1tQrUmzn4,169
38
38
  pembot/.git/objects/01/5f71967c525963c827d7fe5415ae2c040c4a64,sha256=-qlT-5utWcwFnO3ADkH2SA2LBsdcph6wE2iePxJxkHs,170
39
39
  pembot/.git/objects/05/5e82e69847a636258cb994bb920c03a93b5ff4,sha256=eNZTNvT7qgsLCfJvRfTETWZIkk_vBEEroLNbPC8RRa4,90
40
40
  pembot/.git/objects/06/f7563094fe405dfd9c69f05e357f4e20fc5979,sha256=1BPcr84XzGPl2ULpwFPcVi1zGLpgdd_zmvxICXD34Hk,90
41
41
  pembot/.git/objects/09/ee34d94dffd4c286df1d6d528b2e98e2a6cce2,sha256=FSXPGn6UBhR7s1Ug-afzCYLfGy8dE3Umn8dBKaahkDM,203
42
+ pembot/.git/objects/0a/2121ea3115562cc205df572ea26532aaac5244,sha256=D0g2Dq2cUDMPiH6czmZePougntu2TNoVVEshqMCzJzo,905
42
43
  pembot/.git/objects/0a/6dd69f9258bba08a669efec17ff170fdd1509e,sha256=k6_BM-BMD6mZXEmMuqCuEJSdHF_j3kmxe2QlF6-Nc4I,527
43
44
  pembot/.git/objects/0a/fb3a98cdc55b1434b44534ec2bf22c56cfa26c,sha256=Xxw20vI57zuhERWopDAZpQw6rAOhFtUr05lzpGyCTTE,120
44
45
  pembot/.git/objects/0b/db4169fc0f312b8698f1df17a258fff163aeaa,sha256=hsOHhX0Yajg27Y7B9lo-WjDXzW1KNMg2CBr93G116EY,387
@@ -65,6 +66,7 @@ pembot/.git/objects/2f/f2a190e96dded527d8dd1ab00b706f95348d99,sha256=1td2g361orB
65
66
  pembot/.git/objects/35/97e518a8658280be9f377f78edf1dfa1f23814,sha256=gfc5bFLVZpwNQb1Ox2VosDYAjw0Lc5ZLjmvNA8gWcmg,2546
66
67
  pembot/.git/objects/37/175696b3ca7a5d17379f03fb61a1023d50aeba,sha256=XaF3EsJ1wSIWtgBtgKsZkwiMK0NM8acFy9nnqE9_d0s,3085
67
68
  pembot/.git/objects/3a/54acc088992fa8e890b93e83115ec6dc019835,sha256=EZlP672_7dB3SZ_ZwyBsFmVTJpLoblFqDdfoW-2v990,2879
69
+ pembot/.git/objects/3c/80f6d984dff52ee250436fcf3da2e809967ae4,sha256=Aa0Oja-UqBgdV9q1d2uSQJNdj-voW-wpVGfPQmj9Xkg,170
68
70
  pembot/.git/objects/3d/07d3b29ff53d95de3898fb786d61732f210515,sha256=A9MNZO3QZ6ghGd1MyfmJ6H3dBTpF4HZcRosVxWytx8E,4077
69
71
  pembot/.git/objects/3d/e536f9c1fd05a23c2dec66423ed610afb0cf5f,sha256=omF4gmE9IQFZR8t6ybAKfnW02tdn9ZaVWKRhv_o1V4c,2083
70
72
  pembot/.git/objects/3e/23850624fcf5f111d6ea88ddd64adf924cf82f,sha256=ygVUpaLo7cxUdIgjFlaBh2BkllV6BIYYkzLIxsPKjWE,4111
@@ -82,6 +84,7 @@ pembot/.git/objects/4b/c4370a037feed828cca0915ebb0bb94b24a9d4,sha256=jt9lsSz8c3d
82
84
  pembot/.git/objects/4d/a03134f70896f72053fbdc0cd4f4c76d4ac1d8,sha256=GBhAvxM1omIt-PN6mNXYlIJMN5nx2AUE0ZOf68El5pc,117
83
85
  pembot/.git/objects/50/39b29fda67743a044993436df6a4a1db7b8888,sha256=NYNmYtOq8IMmH32GaQSOBpTRTTm6jEJfY3vytVpzfKM,115
84
86
  pembot/.git/objects/51/9e780574933d7627a083222bd10dd74f430904,sha256=3e3Iu2-waVySghbLYXmwhDPpfhV4PF82suvjcYkSVog,3604
87
+ pembot/.git/objects/55/a26fb846654d84aacea136307a35fb0c46c9c8,sha256=ufE1kt8BOEfq3iqwX6k5H86bt775jQtCBfAyHCgfmhM,115
85
88
  pembot/.git/objects/59/69ac8b9d6b44a601385c3ed8c710a69d05216e,sha256=3IOcUn5myiozgeId1iWJZX-r7cS65xXnzQCEjrc-1ZA,168
86
89
  pembot/.git/objects/5b/efa3b2f18d2b5d332c6de503a7054f4af0569f,sha256=g84QcQu-1NZ4-MfLHRosIUOnlK0VItVBqqFW5ffGDNI,882
87
90
  pembot/.git/objects/5c/4f01d3ce9e243bbb8a693f97e5c7d13a857cb7,sha256=BnHoA5JBo5NY2ReemhwmZ-dOdx6CwXWY1TQsc-FSM5o,242
@@ -104,6 +107,7 @@ pembot/.git/objects/79/4431c1d34c60b4f3fb963823f77f33bd947cc7,sha256=4jqvkfzW3aD
104
107
  pembot/.git/objects/7a/7d28b0313a3d9d509823faaae31949af8610ef,sha256=X59k-p9VNLBpmJlL53qIz8mntLeCSpnjw-rq9u9z_6I,90
105
108
  pembot/.git/objects/7e/0907822f7d316ebe0be07e1f6918bef412c80b,sha256=lFc55Bu-vEXF8In553gHxlEsB47Vg2qFXHiJqepWEqg,5167
106
109
  pembot/.git/objects/81/d01e1c63d48b096c77aae83471d42272ca9fce,sha256=dPITERwChdrVyBsZnhkOBblW83G0w3Zm7Y6e1CnodtA,216
110
+ pembot/.git/objects/82/f733fe4edc22fe2f4caa889d2533b24a7bf9df,sha256=1fhgN9PebFoGr-0k49nbV0ztRH5OrSu1K43arcakiI0,3046
107
111
  pembot/.git/objects/86/cdaec229f1fbebf43042266b03878944669f25,sha256=eTvQhUeYXP8E181oTOcBydcgmImr62IizaH_Jbcbg8g,4077
108
112
  pembot/.git/objects/87/d6df5217a4a374f8c1211a05f9bd657f72c9a7,sha256=OGq5-x1lFa94vTX7WYO6o4TGvCZwAvZ6LXm6N3dpiKM,3881
109
113
  pembot/.git/objects/88/0c3d45ac59940344dfb6c45005f7e908173138,sha256=7VMQzB6baLdC2Uj5f84w-X6XLM3GinXGBQjewhXupAc,914
@@ -127,6 +131,7 @@ pembot/.git/objects/ab/c6b15265171457b41e2cfdaf3b8c3994a59eb7,sha256=ivRCkHzUZHX
127
131
  pembot/.git/objects/ab/f77db148e3fb3b26913af14ae43130396f3269,sha256=rJJenBYvGWdXvwNgHWqIJCF3q2oxeA3eT19eRxlNmJA,3346
128
132
  pembot/.git/objects/ac/9c9018c62fa30dc142665c1b5a375f4e056880,sha256=P_8LPBV0v4D17Akj4f5Cr2dhgNFUsh4o7DLK78CfNPo,349
129
133
  pembot/.git/objects/ac/e2b51971b1bbade48afffc8d117c74d18f123c,sha256=U0sHygSqCMG4GOXK-fga5jBweWkzFfmR-iEphGInoac,905
134
+ pembot/.git/objects/af/66fa89b4e1d1a8ac32dca38126f5510faea126,sha256=sg2s7hhVck8NLGWJmoze5Yl0CeimyXzAE1dFhvygSEc,56
130
135
  pembot/.git/objects/af/80ddb5890f062e364ea8ade2d602df4e12de8c,sha256=QELzH3NdMCFohFEcf5oAAu_e54VFr-LhTyPbXY7GjSk,169
131
136
  pembot/.git/objects/b1/1173d9b68db117437ccb9551461152e1e8a77d,sha256=6cl8NMNQ9b5fBh97GPEQNssOVrh-EQLJfhqSBbNb_vU,205
132
137
  pembot/.git/objects/b1/ddf2869bc7d213b35dabd6fa5bfae44cd6b7a7,sha256=zC9EjJo4qRxy8d1zuRafZ36QVP9KnxehomIfIC0ZZEo,915
@@ -146,8 +151,10 @@ pembot/.git/objects/c2/ce19d575a8cccf6886862c4fa6afefba142511,sha256=kxbbFUJ1TpE
146
151
  pembot/.git/objects/c3/cc0da3d955ecec0f865c46c030a0c073697495,sha256=7ZXWsXqapYhbZZJwaaeAwqGcgX8JwoS5DazqOGaRHeQ,179
147
152
  pembot/.git/objects/c6/b72ea9f8856d3bde28cb75775ebea9840535b8,sha256=dNygXpD49awTkQZZUIQQ9uQDEN3aKHKrQEPuiyLBT6Q,527
148
153
  pembot/.git/objects/c9/efe79dee4c91d4bb8c3d3c6e01ff70ff79a722,sha256=mnJvaTyytYLB1XPeJS_MAY-q0X3karH0k7EeBpUM16k,115
154
+ pembot/.git/objects/cc/348ab3677f744f8d7cd8b2ac7eb775528cfb1c,sha256=2GQxoBSPEaKEZoUWa_3qEockmzUQnuWN9ohEie28VW8,90
149
155
  pembot/.git/objects/ce/a4ffc1cf5eab61a2a0abd8f6dc941b580b69fd,sha256=yKUe_ZHD0UynTIrDRhuVqjDjKYDfZkWplqXjeSOD_bk,3894
150
156
  pembot/.git/objects/d0/937f7d832266337289d5ec09459f931a46fcf7,sha256=_RZ7Z2EZp1OOF_XZhY6e1tzWwhI8Fa5R9aaF_W8APBA,56
157
+ pembot/.git/objects/d4/40b20aae1265dabbd3ddaafb24c35e40e3ab3c,sha256=gHVL-l-koZnke8dJEK06U6Vz9HjqoP762qB4QUU9wE0,220
151
158
  pembot/.git/objects/d9/ec420cb55a82e7efbc8564e30ec7f4c0f6021e,sha256=NfSA8eUrylFWTcpPSd2FoA8_TcifJ_pk3jBYmbfkNKQ,90
152
159
  pembot/.git/objects/dd/82bd16a51b9bad8241d9fb46619b1c6755cafe,sha256=36R9xSCSTvnCmK5IhuTacIC8FLQYWkVYh2QwxXJ2e7s,56
153
160
  pembot/.git/objects/e0/9162dbd64d85bb5ed740aa99faefa73f293d78,sha256=I5fpz3BQ2maFPTSu43T1uvYMuLiep1C3K6CsX8UMNPI,196
@@ -163,6 +170,7 @@ pembot/.git/objects/ea/0af89e61a882c5afc2a8c281b2d96f174bfe58,sha256=lXbMvL_xl8P
163
170
  pembot/.git/objects/eb/75e1c49f1e5b79dca17ccdbec8067756523238,sha256=ltEINFUpQP86CkE4nAT1Afegz3ytY3Nlx1P6ibTFEbo,305
164
171
  pembot/.git/objects/ee/a73c7f24094ed83b014f7cfce46e10f817bec8,sha256=fFYq_ODekFhF9SwBL9GP_fGDsNavXVVOuI6kmnHlkiY,5140
165
172
  pembot/.git/objects/ef/0503a60244391590b16042019032e91d7cc30d,sha256=mrF9jZHY2oJm8tkd8nQdMgUPbrZfENOFaR3mvbwi1dg,187
173
+ pembot/.git/objects/ef/141ba9482c729796968be2e562b1488a1e5552,sha256=p6CoPdq20oILGmCOolB6HqVsb22FRGz1LnVIi1-hzRk,526
166
174
  pembot/.git/objects/ef/3488a3c636d73d82ad138e70a92453249b7f37,sha256=09VHFwSnSxOExWa3sKBzWAfSMyx5INI9KK2mstW8-xs,203
167
175
  pembot/.git/objects/ef/c899c7f910cfa7a383692eee851cf5af36da8c,sha256=9o2hAtTleVJrHkDxERUrwEaze8hzc-E2n1Jq2t_Oo68,2853
168
176
  pembot/.git/objects/f1/2d2ef8948cbe4b24279bee282f934cf5a1b834,sha256=HvfHm5CnbujMp-uu0aucVzpaWCy2aKBzaXknvlYCnjg,3937
@@ -184,17 +192,17 @@ pembot/.git/objects/fe/cc5d8154b1e77e4c6beb23ce9cbe8fea55d34d,sha256=0it_Z3Lk5Mj
184
192
  pembot/.git/objects/pack/pack-d5469edc8c36e3bb1de5e0070e4d5b1eae935dd4.idx,sha256=CNzx_lz6v4PulPxRW2t9nz-ifvplpSFPhMA2M9WNUrA,3424
185
193
  pembot/.git/objects/pack/pack-d5469edc8c36e3bb1de5e0070e4d5b1eae935dd4.pack,sha256=dk3Sqrd0L-tNVLRy3uJdTYJNkw8v59mE1hV8zrCFNzc,41355
186
194
  pembot/.git/objects/pack/pack-d5469edc8c36e3bb1de5e0070e4d5b1eae935dd4.rev,sha256=7U3tpTWQ3dn5dwQo_KWMWxF31cKaDnCk2AzTO7Cx4Bg,388
187
- pembot/.git/refs/heads/main,sha256=6zKAFxl4876S5gjd1QK1hg0_Hv1g_W0E92fBZQYFzSQ,41
195
+ pembot/.git/refs/heads/main,sha256=ZYwcXLoKw5nkSOKKyg8_RjJmOhgY3YmP_bQNs8yI7Dk,41
188
196
  pembot/.git/refs/remotes/origin/HEAD,sha256=K7aiSqD8bEhBAPXVGim7rYQc0sdV9dk_qiBOXbtOsrQ,30
189
- pembot/.git/refs/remotes/origin/main,sha256=6zKAFxl4876S5gjd1QK1hg0_Hv1g_W0E92fBZQYFzSQ,41
197
+ pembot/.git/refs/remotes/origin/main,sha256=ZYwcXLoKw5nkSOKKyg8_RjJmOhgY3YmP_bQNs8yI7Dk,41
190
198
  pembot/AnyToText/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
191
- pembot/AnyToText/convertor.py,sha256=OT6d2Dyz443cHqTIYagYWpB4T7adfTlkiLTQZs1Q3Tg,8845
199
+ pembot/AnyToText/convertor.py,sha256=1wMzqcBvt6hgjvvdd2evxpFInOy-bmrr8dkOE-fUC4I,9611
192
200
  pembot/TextEmbedder/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
193
201
  pembot/TextEmbedder/gemini_embedder.py,sha256=P679-2mmQESlYKML1vcrwx_-CSgWJgIQk7NL4F7BLQE,677
194
202
  pembot/TextEmbedder/mongodb_embedder.py,sha256=-xIr-zrAGzCmgNeojuX6qYj2t019EVO1I6g-Hwq0FL8,10799
195
203
  pembot/TextEmbedder/mongodb_index_creator.py,sha256=kopqdVYJii_wExVrXGZjMfqWZ2dD42b3PeNWo71weHI,5354
196
204
  pembot/TextEmbedder/vector_query.py,sha256=Kh1uhx9CatB-oQlQtnW-1I2Qz7MGHI20n2h_8peAChM,1986
197
- pembot/config/config.yaml,sha256=g3KOq-TnkamchzrNcHuEYay0P4oMxjoyiGQY4LSaSPI,156
205
+ pembot/config/config.yaml,sha256=D1rcEalG5NiyuWcv-wsB5YkNd_S3-GfBo9Q8slJInds,156
198
206
  pembot/pdf2markdown/LICENSE,sha256=1JTJhQjUYDqJzFJhNtitm7mHyE71PRHgetIqRRWg6Pk,1068
199
207
  pembot/pdf2markdown/README.md,sha256=jitM1pwI69oa0N4mXv5-SY1ka9Sz3jsRNCDdpW-50kY,4545
200
208
  pembot/pdf2markdown/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -250,7 +258,7 @@ pembot/pdf2markdown/config/config.yaml,sha256=w75W2Eg4-tu8rRk_23PqxWDh0010kRKLmP
250
258
  pembot/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
251
259
  pembot/utils/inference_client.py,sha256=jeURmY2P5heVlH1dCV0XSgiX3U2qYGEmrnUv0KFpdww,5380
252
260
  pembot/utils/string_tools.py,sha256=gtRa5rBR0Q7GspTu2WtCnvhJQLFjPfWLvhmyiPkyStU,1883
253
- pembot-0.1.7.dist-info/licenses/LICENSE,sha256=OXLcl0T2SZ8Pmy2_dmlvKuetivmyPd5m1q-Gyd-zaYY,35149
254
- pembot-0.1.7.dist-info/WHEEL,sha256=Dyt6SBfaasWElUrURkknVFAZDHSTwxg3PaTza7RSbkY,100
255
- pembot-0.1.7.dist-info/METADATA,sha256=m0FazfiKAQQ6sx-4htib7ukF8BKeKPVJa9yi8ObwsgI,313
256
- pembot-0.1.7.dist-info/RECORD,,
261
+ pembot-0.1.8.dist-info/licenses/LICENSE,sha256=OXLcl0T2SZ8Pmy2_dmlvKuetivmyPd5m1q-Gyd-zaYY,35149
262
+ pembot-0.1.8.dist-info/WHEEL,sha256=Dyt6SBfaasWElUrURkknVFAZDHSTwxg3PaTza7RSbkY,100
263
+ pembot-0.1.8.dist-info/METADATA,sha256=ezriS0MDurBF6OYUxptKlMABED656ZVZaDkAS84NjAY,313
264
+ pembot-0.1.8.dist-info/RECORD,,
File without changes