chatterer 0.1.1__tar.gz → 0.1.2__tar.gz

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.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.2
2
2
  Name: chatterer
3
- Version: 0.1.1
3
+ Version: 0.1.2
4
4
  Summary: The highest-level interface for various LLM APIs.
5
5
  Requires-Python: >=3.12
6
6
  Description-Content-Type: text/markdown
@@ -0,0 +1,24 @@
1
+ from .llms import LLM
2
+
3
+ __all__ = ["LLM"]
4
+
5
+ try:
6
+ from .llms import LangchainLLM
7
+
8
+ __all__ += ["LangchainLLM"]
9
+ except ImportError:
10
+ pass
11
+
12
+ try:
13
+ from .llms import OllamaLLM
14
+
15
+ __all__ += ["OllamaLLM"]
16
+ except ImportError:
17
+ pass
18
+
19
+ try:
20
+ from .llms import InstructorLLM
21
+
22
+ __all__ += ["InstructorLLM"]
23
+ except ImportError:
24
+ pass
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.2
2
2
  Name: chatterer
3
- Version: 0.1.1
3
+ Version: 0.1.2
4
4
  Summary: The highest-level interface for various LLM APIs.
5
5
  Requires-Python: >=3.12
6
6
  Description-Content-Type: text/markdown
@@ -1,6 +1,6 @@
1
1
  [project]
2
2
  name = "chatterer"
3
- version = "0.1.1"
3
+ version = "0.1.2"
4
4
  description = "The highest-level interface for various LLM APIs."
5
5
  readme = "README.md"
6
6
  requires-python = ">=3.12"
@@ -1,13 +0,0 @@
1
- from .llms import (
2
- LLM,
3
- InstructorLLM,
4
- LangchainLLM,
5
- OllamaLLM,
6
- )
7
-
8
- __all__ = [
9
- "InstructorLLM",
10
- "LangchainLLM",
11
- "LLM",
12
- "OllamaLLM",
13
- ]
File without changes
File without changes