chatterer 0.1.25__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.
Files changed (45) hide show
  1. chatterer/__init__.py +87 -97
  2. chatterer/common_types/__init__.py +21 -21
  3. chatterer/common_types/io.py +19 -19
  4. chatterer/constants.py +5 -0
  5. chatterer/examples/__main__.py +75 -75
  6. chatterer/examples/any2md.py +83 -85
  7. chatterer/examples/pdf2md.py +231 -338
  8. chatterer/examples/pdf2txt.py +52 -54
  9. chatterer/examples/ppt.py +487 -486
  10. chatterer/examples/pw.py +141 -143
  11. chatterer/examples/snippet.py +54 -56
  12. chatterer/examples/transcribe.py +192 -192
  13. chatterer/examples/upstage.py +87 -89
  14. chatterer/examples/web2md.py +80 -80
  15. chatterer/interactive.py +422 -354
  16. chatterer/language_model.py +530 -536
  17. chatterer/messages.py +21 -21
  18. chatterer/tools/__init__.py +46 -46
  19. chatterer/tools/caption_markdown_images.py +388 -384
  20. chatterer/tools/citation_chunking/__init__.py +3 -3
  21. chatterer/tools/citation_chunking/chunks.py +51 -53
  22. chatterer/tools/citation_chunking/citation_chunker.py +117 -118
  23. chatterer/tools/citation_chunking/citations.py +284 -285
  24. chatterer/tools/citation_chunking/prompt.py +157 -157
  25. chatterer/tools/citation_chunking/reference.py +26 -26
  26. chatterer/tools/citation_chunking/utils.py +138 -138
  27. chatterer/tools/convert_pdf_to_markdown.py +636 -645
  28. chatterer/tools/convert_to_text.py +446 -446
  29. chatterer/tools/upstage_document_parser.py +704 -705
  30. chatterer/tools/webpage_to_markdown.py +739 -739
  31. chatterer/tools/youtube.py +146 -147
  32. chatterer/utils/__init__.py +15 -15
  33. chatterer/utils/base64_image.py +349 -293
  34. chatterer/utils/bytesio.py +59 -59
  35. chatterer/utils/code_agent.py +237 -237
  36. chatterer/utils/imghdr.py +145 -148
  37. {chatterer-0.1.25.dist-info → chatterer-0.1.27.dist-info}/METADATA +377 -390
  38. chatterer-0.1.27.dist-info/RECORD +43 -0
  39. chatterer/strategies/__init__.py +0 -13
  40. chatterer/strategies/atom_of_thoughts.py +0 -975
  41. chatterer/strategies/base.py +0 -14
  42. chatterer-0.1.25.dist-info/RECORD +0 -45
  43. {chatterer-0.1.25.dist-info → chatterer-0.1.27.dist-info}/WHEEL +0 -0
  44. {chatterer-0.1.25.dist-info → chatterer-0.1.27.dist-info}/entry_points.txt +0 -0
  45. {chatterer-0.1.25.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,13 +0,0 @@
1
- from .atom_of_thoughts import (
2
- AoTPipeline,
3
- AoTStrategy,
4
- AoTPrompter,
5
- )
6
- from .base import BaseStrategy
7
-
8
- __all__ = [
9
- "BaseStrategy",
10
- "AoTPipeline",
11
- "AoTPrompter",
12
- "AoTStrategy",
13
- ]