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.
- {chatterer-0.1.1 → chatterer-0.1.2}/PKG-INFO +1 -1
- chatterer-0.1.2/chatterer/__init__.py +24 -0
- {chatterer-0.1.1 → chatterer-0.1.2}/chatterer.egg-info/PKG-INFO +1 -1
- {chatterer-0.1.1 → chatterer-0.1.2}/pyproject.toml +1 -1
- chatterer-0.1.1/chatterer/__init__.py +0 -13
- {chatterer-0.1.1 → chatterer-0.1.2}/README.md +0 -0
- {chatterer-0.1.1 → chatterer-0.1.2}/chatterer/llms/__init__.py +0 -0
- {chatterer-0.1.1 → chatterer-0.1.2}/chatterer/llms/base.py +0 -0
- {chatterer-0.1.1 → chatterer-0.1.2}/chatterer/llms/instructor.py +0 -0
- {chatterer-0.1.1 → chatterer-0.1.2}/chatterer/llms/langchain.py +0 -0
- {chatterer-0.1.1 → chatterer-0.1.2}/chatterer/llms/ollama.py +0 -0
- {chatterer-0.1.1 → chatterer-0.1.2}/chatterer.egg-info/SOURCES.txt +0 -0
- {chatterer-0.1.1 → chatterer-0.1.2}/chatterer.egg-info/dependency_links.txt +0 -0
- {chatterer-0.1.1 → chatterer-0.1.2}/chatterer.egg-info/requires.txt +0 -0
- {chatterer-0.1.1 → chatterer-0.1.2}/chatterer.egg-info/top_level.txt +0 -0
- {chatterer-0.1.1 → chatterer-0.1.2}/setup.cfg +0 -0
@@ -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
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|