chatterer 0.1.26__py3-none-any.whl → 0.1.27__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.
- chatterer/__init__.py +87 -87
- chatterer/common_types/__init__.py +21 -21
- chatterer/common_types/io.py +19 -19
- chatterer/constants.py +5 -0
- chatterer/examples/__main__.py +75 -75
- chatterer/examples/any2md.py +83 -85
- chatterer/examples/pdf2md.py +231 -338
- chatterer/examples/pdf2txt.py +52 -54
- chatterer/examples/ppt.py +487 -486
- chatterer/examples/pw.py +141 -143
- chatterer/examples/snippet.py +54 -56
- chatterer/examples/transcribe.py +192 -192
- chatterer/examples/upstage.py +87 -89
- chatterer/examples/web2md.py +80 -80
- chatterer/interactive.py +422 -354
- chatterer/language_model.py +530 -536
- chatterer/messages.py +21 -21
- chatterer/tools/__init__.py +46 -46
- chatterer/tools/caption_markdown_images.py +388 -384
- chatterer/tools/citation_chunking/__init__.py +3 -3
- chatterer/tools/citation_chunking/chunks.py +51 -53
- chatterer/tools/citation_chunking/citation_chunker.py +117 -118
- chatterer/tools/citation_chunking/citations.py +284 -285
- chatterer/tools/citation_chunking/prompt.py +157 -157
- chatterer/tools/citation_chunking/reference.py +26 -26
- chatterer/tools/citation_chunking/utils.py +138 -138
- chatterer/tools/convert_pdf_to_markdown.py +636 -645
- chatterer/tools/convert_to_text.py +446 -446
- chatterer/tools/upstage_document_parser.py +704 -705
- chatterer/tools/webpage_to_markdown.py +739 -739
- chatterer/tools/youtube.py +146 -147
- chatterer/utils/__init__.py +15 -15
- chatterer/utils/base64_image.py +349 -350
- chatterer/utils/bytesio.py +59 -59
- chatterer/utils/code_agent.py +237 -237
- chatterer/utils/imghdr.py +145 -145
- {chatterer-0.1.26.dist-info → chatterer-0.1.27.dist-info}/METADATA +377 -390
- chatterer-0.1.27.dist-info/RECORD +43 -0
- chatterer-0.1.26.dist-info/RECORD +0 -42
- {chatterer-0.1.26.dist-info → chatterer-0.1.27.dist-info}/WHEEL +0 -0
- {chatterer-0.1.26.dist-info → chatterer-0.1.27.dist-info}/entry_points.txt +0 -0
- {chatterer-0.1.26.dist-info → chatterer-0.1.27.dist-info}/top_level.txt +0 -0
@@ -0,0 +1,43 @@
|
|
1
|
+
chatterer/__init__.py,sha256=DoItVP_ShIat-Ad6XtEYi9liXg8Pw_XUYY_RF9cO970,2134
|
2
|
+
chatterer/constants.py,sha256=YajJPjaLBt6xgWBZaWISuwd77yrSSiQX2IkksEAFM3g,228
|
3
|
+
chatterer/interactive.py,sha256=F8RovhWlGCPjk-aI8IQsKua5b-nTIorjr1AWN6sv6KE,18227
|
4
|
+
chatterer/language_model.py,sha256=JePWWSc_6gJDCngJRBmf1vycNNeLV1clcdHye8XVZyE,21004
|
5
|
+
chatterer/messages.py,sha256=j_bjOVE2FbBaYYpykmJrQL-IH_BWyiZ1VAUCj_wSA2U,479
|
6
|
+
chatterer/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
7
|
+
chatterer/common_types/__init__.py,sha256=jfS6m5UANSvGjzQ_nzYDpryn5uZqNb06-4xCsQ2C_lw,376
|
8
|
+
chatterer/common_types/io.py,sha256=fetiyi1suZ3NF2mj5k5KDLJLGKS1n4J-5UmH7JN36g8,817
|
9
|
+
chatterer/examples/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
10
|
+
chatterer/examples/__main__.py,sha256=W-Zo7z9RyA0PrY-tPDqf9BSkOqPpaIXROcHCXCwNXc4,1566
|
11
|
+
chatterer/examples/any2md.py,sha256=Ar4dqGhCIgKLZDHD_MzdnBd-7EyZbpyGqYLMPNubBDA,2710
|
12
|
+
chatterer/examples/pdf2md.py,sha256=2jzFcvwtYZAg_W-VRkv9nAb9ZDzZwegdChhCyzJoYLo,8865
|
13
|
+
chatterer/examples/pdf2txt.py,sha256=99p6TW4n9TD7vFcUSfwdGhIN7q_UVurCyvdc6LNPc3E,1573
|
14
|
+
chatterer/examples/ppt.py,sha256=gUD0tdjxsLHGB2Mq7Z6b1JMEGrdokelTUTKP990OiYw,23250
|
15
|
+
chatterer/examples/pw.py,sha256=WGnHP7iBVgxKGNHKasfRC04uNzkSZaiZQJBPLNMySC4,5258
|
16
|
+
chatterer/examples/snippet.py,sha256=5CwdSYFSEpXSGHs11w2ejR53wgaQpqWR0_vbqrXh0ec,2000
|
17
|
+
chatterer/examples/transcribe.py,sha256=21hmgc_lPBUys7mQFBicBVuimTqi6FG_QZGl2Q7Iyxc,6842
|
18
|
+
chatterer/examples/upstage.py,sha256=IUKHM-QeAnJStcQjQIjxpqnSjJV1iCpZvU9KUxQU-oo,3190
|
19
|
+
chatterer/examples/web2md.py,sha256=ofUgBBhTVaSHH6G-u5c3D8NZdQxtJZoomQuDun2SswE,3207
|
20
|
+
chatterer/tools/__init__.py,sha256=m3PRK9H5vOhk-2gG9W2eg8CYBlEn-K9-eaulOu91bgo,1474
|
21
|
+
chatterer/tools/caption_markdown_images.py,sha256=sJU1F0OgNniwe1qy1vHOC7BkU61GxV6JEXqAFZD_38g,15508
|
22
|
+
chatterer/tools/convert_pdf_to_markdown.py,sha256=AHDo9mlaPS4QTj19x5_AAvtOyXZRzkh5k4-PyWbvcIg,28443
|
23
|
+
chatterer/tools/convert_to_text.py,sha256=1UVT8Ipzx4lx6-MjMISe4RbufnYur8QzbJ0sg7MxSFE,15445
|
24
|
+
chatterer/tools/upstage_document_parser.py,sha256=rWOMEyIOwPu4nLHVwDneLzMMLic8BjmdZ3LOUQJjq_o,33005
|
25
|
+
chatterer/tools/webpage_to_markdown.py,sha256=ADH4sqM6iquJR7HU6umMQ5qO7EvcbNutuchXDpAcxAo,31961
|
26
|
+
chatterer/tools/youtube.py,sha256=1XD5fAZP0dSlrvIpQS70fCKKkpEK-IGzZd8xYqxZX30,6077
|
27
|
+
chatterer/tools/citation_chunking/__init__.py,sha256=gG7Fnkkp28UpcWMbfMY_4gqzZSZ8QzlhalHBoeoq7K0,82
|
28
|
+
chatterer/tools/citation_chunking/chunks.py,sha256=bIvir_YLbQHqadl92X03ZlPY5n3HkWQ6-r5dykhDohY,2144
|
29
|
+
chatterer/tools/citation_chunking/citation_chunker.py,sha256=M9y1rjZ7c31PILJr9440gPJdtKzBwxED2RfBDH4cfEs,4867
|
30
|
+
chatterer/tools/citation_chunking/citations.py,sha256=IcS8F3rnfaY7cn6456ACTroZacFeyR9Hk8D3At31-6E,12566
|
31
|
+
chatterer/tools/citation_chunking/prompt.py,sha256=S0Z6v8R23_Vknt3qYyjoDE1_gBsb0fCEx7LIw7BFXmA,7714
|
32
|
+
chatterer/tools/citation_chunking/reference.py,sha256=uRKufkU41Zedz6MQUCy-aCk4Rwxg94m4b332zKDpXAs,919
|
33
|
+
chatterer/tools/citation_chunking/utils.py,sha256=M4pH2-UIE1VLzQLXDqjEe4L3Xcy0e0KhAP3I2U2BNms,6348
|
34
|
+
chatterer/utils/__init__.py,sha256=2v-lB2dqHgBlGcyaKKHc_hcyeH_AVoOddpr0STF7YAw,341
|
35
|
+
chatterer/utils/base64_image.py,sha256=HNydRF0r_kEEPXS4Hv1q9_pZPz_Q05qknZzXK9d4-y0,13987
|
36
|
+
chatterer/utils/bytesio.py,sha256=3MC2atOOFKo5YxuReo_y_t8Wem9p2Y1ahC5M2lGclwI,2618
|
37
|
+
chatterer/utils/code_agent.py,sha256=7ka_WRI4TQmZ5H46mjY3hI6RO_pxw6pg3LAxjgW4AbM,10495
|
38
|
+
chatterer/utils/imghdr.py,sha256=irVDKavn9nx-tPUbEnvTCrq9LVePYrCccl9-KDHZjGQ,3687
|
39
|
+
chatterer-0.1.27.dist-info/METADATA,sha256=BEjVcy6tTdinqe9pIQOlQ5ejdMO9RsfiYrtsR_dLHB4,11467
|
40
|
+
chatterer-0.1.27.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
41
|
+
chatterer-0.1.27.dist-info/entry_points.txt,sha256=IzGKhTnZ7G5V23SRmulmSsyt9HcaFH4lU4r3wR1zMsc,63
|
42
|
+
chatterer-0.1.27.dist-info/top_level.txt,sha256=7nSQKP0bHxPRc7HyzdbKsJdkvPgYD0214o6slRizv9s,10
|
43
|
+
chatterer-0.1.27.dist-info/RECORD,,
|
@@ -1,42 +0,0 @@
|
|
1
|
-
chatterer/__init__.py,sha256=D2kh79a3yC7LLTP_4kI_JiKqOFlti_FEkajAJHfMSek,2047
|
2
|
-
chatterer/interactive.py,sha256=bw4iZSPv57x0WPmasnObLM6f_tIgAJD-KbiXjN7NvYw,16702
|
3
|
-
chatterer/language_model.py,sha256=y3nhKiQKTQiFX6M0DWL75OelJwkv3xjSigzjf1icve4,20308
|
4
|
-
chatterer/messages.py,sha256=SIvG9hMHaPG4AFadeRbj5yPnMq2J06fHA4D8jrkz4kQ,458
|
5
|
-
chatterer/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
6
|
-
chatterer/common_types/__init__.py,sha256=Ais0kqzQJj4sED24xdv5azIxHkkj0vXWb4LC41dFkBQ,355
|
7
|
-
chatterer/common_types/io.py,sha256=GBZVhcRRCNZTAC1OPKAwW4s3EiyYRmNZ0ZWD1DxgMzs,798
|
8
|
-
chatterer/examples/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
9
|
-
chatterer/examples/__main__.py,sha256=N9QO9UvjDxiXLxhGRK6E5zw7Kl4CMVbfx58SQr_6eCc,1491
|
10
|
-
chatterer/examples/any2md.py,sha256=LSG1QqNoSFDM4G8SL8dcC7_oGMHcLkvV9mP2q6f6Lkk,2654
|
11
|
-
chatterer/examples/pdf2md.py,sha256=S9hX32KaohU7eEJiJuctkbKei1Xd9VmXHz00zWesQtk,13287
|
12
|
-
chatterer/examples/pdf2txt.py,sha256=lriV234AdNbCAaUFKgc8XW50yKva91ApfMRruuaWGHQ,1548
|
13
|
-
chatterer/examples/ppt.py,sha256=bFJPIsvJYAHxg85lxpOi9Q_MzcZU03cHm9Ip-AEviCU,22767
|
14
|
-
chatterer/examples/pw.py,sha256=a9yCPwVIXDctxSbBnW17Kp_QRgR3iXMJe2FoTwsPJ-w,5144
|
15
|
-
chatterer/examples/snippet.py,sha256=1RrqSr4ZZqTb_jZQjEed0G87oYGdsMSINu5qzrxH8Ps,1973
|
16
|
-
chatterer/examples/transcribe.py,sha256=cZoIn8PymlQJcoGKI3PYDlkrYC0juQ6HW5c1GlPk3KY,6650
|
17
|
-
chatterer/examples/upstage.py,sha256=UYehJC13askeJgZS1-aAJniv3KMGt8tQjFBkhfGSoBQ,3130
|
18
|
-
chatterer/examples/web2md.py,sha256=oOSyjdYn4nuv7uMBuNKmRl3PCA7J0rszR4bF9ZUjJRg,3127
|
19
|
-
chatterer/tools/__init__.py,sha256=cOFo-Aj2xXK_7IvWYRdg6uNomaT9xuSa_mwk2Y0l_AM,1428
|
20
|
-
chatterer/tools/caption_markdown_images.py,sha256=PfvHvr7x0XRLKlujALvOfEB3pQmjzlYFbcJqw2NHgZs,15008
|
21
|
-
chatterer/tools/convert_pdf_to_markdown.py,sha256=hD4JloVdeQ4ZdAmSK1rQO2q-_rXhj3Zo7Hr3sKcGaoI,28264
|
22
|
-
chatterer/tools/convert_to_text.py,sha256=oeUwKs3on0S26hMD2h06uz4o6nRvMZfb1PMaSoQLglY,14999
|
23
|
-
chatterer/tools/upstage_document_parser.py,sha256=2gs_U4BxlNdRGxsieP5RUGVh5UEyzICpVLMcYP4ecwE,32437
|
24
|
-
chatterer/tools/webpage_to_markdown.py,sha256=E9ZTg7fC6Z0dzGuYEsokRyzb8WVhiWdGFlQdiNSrBQ0,31222
|
25
|
-
chatterer/tools/youtube.py,sha256=vrsf6pK6D6UBQQCiNUkE5Xe0VQ3SadoEnyAzGwhElX4,5935
|
26
|
-
chatterer/tools/citation_chunking/__init__.py,sha256=DyLMGG4dVgSnGIdaSHcBNDz09iXflcKuJCtg4W0JTVo,79
|
27
|
-
chatterer/tools/citation_chunking/chunks.py,sha256=_Sxzfbud8XTOHdHdQmKwm4-byES1cD1V6C28DgtS1BA,2120
|
28
|
-
chatterer/tools/citation_chunking/citation_chunker.py,sha256=Aye1BqUCa4u_CsTZoqCe72pJA8C_y2U5UR7cNoNpeo4,4776
|
29
|
-
chatterer/tools/citation_chunking/citations.py,sha256=BWhSwzZccvu0Db-OxEbsuEGEz-Dh_tXo8HRx1y2XUHg,12308
|
30
|
-
chatterer/tools/citation_chunking/prompt.py,sha256=so-8uFQ5b2Zq2V5Brfxd76bEnKYkHovYsohAnbxWEnY,7557
|
31
|
-
chatterer/tools/citation_chunking/reference.py,sha256=m47XYaB5uFff_x_k7US9hNr-SpZjKnl-GuzsGaQzcZo,893
|
32
|
-
chatterer/tools/citation_chunking/utils.py,sha256=Xytm9lMrS783Po1qWAdEJ8q7Q3l2UMzwHd9EkYTRiwk,6210
|
33
|
-
chatterer/utils/__init__.py,sha256=of2NeLOjsAI79TgA4bL7UggCnAc7xT9eu3eeUBt9K8k,326
|
34
|
-
chatterer/utils/base64_image.py,sha256=vmkA2LROTUK2SSCjWTT0sBumo7dpNZiRZzgDnAap_D4,13671
|
35
|
-
chatterer/utils/bytesio.py,sha256=QabdJCZsabPaiYVfJcdXzdiHjuhqDlz1vJuLJ60P7TY,2559
|
36
|
-
chatterer/utils/code_agent.py,sha256=z3GYWZbiKByeMQKXKpUo5JVbkt2hkKwWULyzdkgak1c,10258
|
37
|
-
chatterer/utils/imghdr.py,sha256=xIqodIDEHwSvKJ7OEym9aibPkc0AX6kuasoI9tzMIBk,3542
|
38
|
-
chatterer-0.1.26.dist-info/METADATA,sha256=8V-6-yM6wp2QyHBtTAj5LVp8ygGeqH9O8mnPH4k0QvQ,11273
|
39
|
-
chatterer-0.1.26.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
40
|
-
chatterer-0.1.26.dist-info/entry_points.txt,sha256=IzGKhTnZ7G5V23SRmulmSsyt9HcaFH4lU4r3wR1zMsc,63
|
41
|
-
chatterer-0.1.26.dist-info/top_level.txt,sha256=7nSQKP0bHxPRc7HyzdbKsJdkvPgYD0214o6slRizv9s,10
|
42
|
-
chatterer-0.1.26.dist-info/RECORD,,
|
File without changes
|
File without changes
|
File without changes
|