chatterer 0.1.6__py3-none-any.whl → 0.1.7__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 +39 -27
- chatterer/language_model.py +371 -327
- chatterer/messages.py +8 -0
- chatterer/strategies/__init__.py +13 -13
- chatterer/strategies/atom_of_thoughts.py +975 -976
- chatterer/strategies/base.py +14 -14
- chatterer/tools/__init__.py +17 -15
- chatterer/tools/citation_chunking/__init__.py +3 -0
- chatterer/tools/citation_chunking/chunks.py +53 -0
- chatterer/tools/citation_chunking/citation_chunker.py +118 -0
- chatterer/tools/citation_chunking/citations.py +285 -0
- chatterer/tools/citation_chunking/prompt.py +157 -0
- chatterer/tools/citation_chunking/reference.py +26 -0
- chatterer/tools/citation_chunking/utils.py +138 -0
- chatterer/tools/convert_to_text.py +466 -464
- chatterer/tools/webpage_to_markdown/__init__.py +4 -4
- chatterer/tools/webpage_to_markdown/playwright_bot.py +649 -631
- chatterer/tools/webpage_to_markdown/utils.py +329 -556
- chatterer/utils/image.py +284 -0
- {chatterer-0.1.6.dist-info → chatterer-0.1.7.dist-info}/METADATA +166 -166
- chatterer-0.1.7.dist-info/RECORD +24 -0
- {chatterer-0.1.6.dist-info → chatterer-0.1.7.dist-info}/WHEEL +1 -1
- chatterer-0.1.6.dist-info/RECORD +0 -15
- {chatterer-0.1.6.dist-info → chatterer-0.1.7.dist-info}/top_level.txt +0 -0
chatterer/messages.py
ADDED
chatterer/strategies/__init__.py
CHANGED
@@ -1,13 +1,13 @@
|
|
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
|
-
]
|
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
|
+
]
|