chatterer 0.1.5__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/messages.py ADDED
@@ -0,0 +1,8 @@
1
+ from langchain_core.messages import AIMessage, BaseMessage, HumanMessage, SystemMessage
2
+
3
+ __all__ = [
4
+ "AIMessage",
5
+ "BaseMessage",
6
+ "HumanMessage",
7
+ "SystemMessage",
8
+ ]
chatterer/py.typed ADDED
File without changes
@@ -1,19 +1,13 @@
1
- from .atom_of_thoughts import (
2
- AoTPipeline,
3
- AoTStrategy,
4
- BaseAoTPrompter,
5
- CodingAoTPrompter,
6
- GeneralAoTPrompter,
7
- PhilosophyAoTPrompter,
8
- )
9
- from .base import BaseStrategy
10
-
11
- __all__ = [
12
- "BaseStrategy",
13
- "AoTPipeline",
14
- "BaseAoTPrompter",
15
- "AoTStrategy",
16
- "GeneralAoTPrompter",
17
- "CodingAoTPrompter",
18
- "PhilosophyAoTPrompter",
19
- ]
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
+ ]