Spaces:
Sleeping
Sleeping
IC4T
commited on
Commit
·
177b631
1
Parent(s):
a5be45f
commit
Browse files
langchain/langchain/llms/__init__.py
CHANGED
@@ -35,6 +35,7 @@ from langchain.llms.self_hosted import SelfHostedPipeline
|
|
35 |
from langchain.llms.self_hosted_hugging_face import SelfHostedHuggingFaceLLM
|
36 |
from langchain.llms.stochasticai import StochasticAI
|
37 |
from langchain.llms.writer import Writer
|
|
|
38 |
|
39 |
__all__ = [
|
40 |
"Anthropic",
|
@@ -43,6 +44,7 @@ __all__ = [
|
|
43 |
"Banana",
|
44 |
"CerebriumAI",
|
45 |
"Cohere",
|
|
|
46 |
"DeepInfra",
|
47 |
"ForefrontAI",
|
48 |
"GooglePalm",
|
@@ -83,6 +85,7 @@ type_to_cls_dict: Dict[str, Type[BaseLLM]] = {
|
|
83 |
"bananadev": Banana,
|
84 |
"cerebriumai": CerebriumAI,
|
85 |
"cohere": Cohere,
|
|
|
86 |
"deepinfra": DeepInfra,
|
87 |
"forefrontai": ForefrontAI,
|
88 |
"google_palm": GooglePalm,
|
|
|
35 |
from langchain.llms.self_hosted_hugging_face import SelfHostedHuggingFaceLLM
|
36 |
from langchain.llms.stochasticai import StochasticAI
|
37 |
from langchain.llms.writer import Writer
|
38 |
+
from langchain.llms.ctransformers import CTransformers
|
39 |
|
40 |
__all__ = [
|
41 |
"Anthropic",
|
|
|
44 |
"Banana",
|
45 |
"CerebriumAI",
|
46 |
"Cohere",
|
47 |
+
"CTransformers",
|
48 |
"DeepInfra",
|
49 |
"ForefrontAI",
|
50 |
"GooglePalm",
|
|
|
85 |
"bananadev": Banana,
|
86 |
"cerebriumai": CerebriumAI,
|
87 |
"cohere": Cohere,
|
88 |
+
"ctransformers": CTransformers,
|
89 |
"deepinfra": DeepInfra,
|
90 |
"forefrontai": ForefrontAI,
|
91 |
"google_palm": GooglePalm,
|