mirror of
https://github.com/hwchase17/langchain
synced 2024-11-06 03:20:49 +00:00
4cb5f4c353
This PR should make it easier for linters to do type checking and for IDEs to jump to definition of code. See #20050 as a template for this PR. - As a byproduct: Added 3 missed `test_imports`. - Added missed `SolarChat` in to __init___.py Added it into test_import ut. - Added `# type: ignore` to fix linting. It is not clear, why linting errors appear after ^ changes. --------- Co-authored-by: Eugene Yurtsev <eyurtsev@gmail.com>
271 lines
9.4 KiB
Python
271 lines
9.4 KiB
Python
"""**Chat Models** are a variation on language models.
|
|
|
|
While Chat Models use language models under the hood, the interface they expose
|
|
is a bit different. Rather than expose a "text in, text out" API, they expose
|
|
an interface where "chat messages" are the inputs and outputs.
|
|
|
|
**Class hierarchy:**
|
|
|
|
.. code-block::
|
|
|
|
BaseLanguageModel --> BaseChatModel --> <name> # Examples: ChatOpenAI, ChatGooglePalm
|
|
|
|
**Main helpers:**
|
|
|
|
.. code-block::
|
|
|
|
AIMessage, BaseMessage, HumanMessage
|
|
""" # noqa: E501
|
|
|
|
import importlib
|
|
from typing import TYPE_CHECKING, Any
|
|
|
|
if TYPE_CHECKING:
|
|
from langchain_community.chat_models.anthropic import (
|
|
ChatAnthropic, # noqa: F401
|
|
)
|
|
from langchain_community.chat_models.anyscale import (
|
|
ChatAnyscale, # noqa: F401
|
|
)
|
|
from langchain_community.chat_models.azure_openai import (
|
|
AzureChatOpenAI, # noqa: F401
|
|
)
|
|
from langchain_community.chat_models.baichuan import (
|
|
ChatBaichuan, # noqa: F401
|
|
)
|
|
from langchain_community.chat_models.baidu_qianfan_endpoint import (
|
|
QianfanChatEndpoint, # noqa: F401
|
|
)
|
|
from langchain_community.chat_models.bedrock import (
|
|
BedrockChat, # noqa: F401
|
|
)
|
|
from langchain_community.chat_models.cohere import (
|
|
ChatCohere, # noqa: F401
|
|
)
|
|
from langchain_community.chat_models.databricks import (
|
|
ChatDatabricks, # noqa: F401
|
|
)
|
|
from langchain_community.chat_models.deepinfra import (
|
|
ChatDeepInfra, # noqa: F401
|
|
)
|
|
from langchain_community.chat_models.ernie import (
|
|
ErnieBotChat, # noqa: F401
|
|
)
|
|
from langchain_community.chat_models.everlyai import (
|
|
ChatEverlyAI, # noqa: F401
|
|
)
|
|
from langchain_community.chat_models.fake import (
|
|
FakeListChatModel, # noqa: F401
|
|
)
|
|
from langchain_community.chat_models.fireworks import (
|
|
ChatFireworks, # noqa: F401
|
|
)
|
|
from langchain_community.chat_models.friendli import (
|
|
ChatFriendli, # noqa: F401
|
|
)
|
|
from langchain_community.chat_models.gigachat import (
|
|
GigaChat, # noqa: F401
|
|
)
|
|
from langchain_community.chat_models.google_palm import (
|
|
ChatGooglePalm, # noqa: F401
|
|
)
|
|
from langchain_community.chat_models.gpt_router import (
|
|
GPTRouter, # noqa: F401
|
|
)
|
|
from langchain_community.chat_models.huggingface import (
|
|
ChatHuggingFace, # noqa: F401
|
|
)
|
|
from langchain_community.chat_models.human import (
|
|
HumanInputChatModel, # noqa: F401
|
|
)
|
|
from langchain_community.chat_models.hunyuan import (
|
|
ChatHunyuan, # noqa: F401
|
|
)
|
|
from langchain_community.chat_models.javelin_ai_gateway import (
|
|
ChatJavelinAIGateway, # noqa: F401
|
|
)
|
|
from langchain_community.chat_models.jinachat import (
|
|
JinaChat, # noqa: F401
|
|
)
|
|
from langchain_community.chat_models.kinetica import (
|
|
ChatKinetica, # noqa: F401
|
|
)
|
|
from langchain_community.chat_models.konko import (
|
|
ChatKonko, # noqa: F401
|
|
)
|
|
from langchain_community.chat_models.litellm import (
|
|
ChatLiteLLM, # noqa: F401
|
|
)
|
|
from langchain_community.chat_models.litellm_router import (
|
|
ChatLiteLLMRouter, # noqa: F401
|
|
)
|
|
from langchain_community.chat_models.llama_edge import (
|
|
LlamaEdgeChatService, # noqa: F401
|
|
)
|
|
from langchain_community.chat_models.maritalk import (
|
|
ChatMaritalk, # noqa: F401
|
|
)
|
|
from langchain_community.chat_models.minimax import (
|
|
MiniMaxChat, # noqa: F401
|
|
)
|
|
from langchain_community.chat_models.mlflow import (
|
|
ChatMlflow, # noqa: F401
|
|
)
|
|
from langchain_community.chat_models.mlflow_ai_gateway import (
|
|
ChatMLflowAIGateway, # noqa: F401
|
|
)
|
|
from langchain_community.chat_models.mlx import (
|
|
ChatMLX, # noqa: F401
|
|
)
|
|
from langchain_community.chat_models.ollama import (
|
|
ChatOllama, # noqa: F401
|
|
)
|
|
from langchain_community.chat_models.openai import (
|
|
ChatOpenAI, # noqa: F401
|
|
)
|
|
from langchain_community.chat_models.pai_eas_endpoint import (
|
|
PaiEasChatEndpoint, # noqa: F401
|
|
)
|
|
from langchain_community.chat_models.perplexity import (
|
|
ChatPerplexity, # noqa: F401
|
|
)
|
|
from langchain_community.chat_models.premai import (
|
|
ChatPremAI, # noqa: F401
|
|
)
|
|
from langchain_community.chat_models.promptlayer_openai import (
|
|
PromptLayerChatOpenAI, # noqa: F401
|
|
)
|
|
from langchain_community.chat_models.solar import (
|
|
SolarChat, # noqa: F401
|
|
)
|
|
from langchain_community.chat_models.sparkllm import (
|
|
ChatSparkLLM, # noqa: F401
|
|
)
|
|
from langchain_community.chat_models.tongyi import (
|
|
ChatTongyi, # noqa: F401
|
|
)
|
|
from langchain_community.chat_models.vertexai import (
|
|
ChatVertexAI, # noqa: F401
|
|
)
|
|
from langchain_community.chat_models.volcengine_maas import (
|
|
VolcEngineMaasChat, # noqa: F401
|
|
)
|
|
from langchain_community.chat_models.yandex import (
|
|
ChatYandexGPT, # noqa: F401
|
|
)
|
|
from langchain_community.chat_models.yuan2 import (
|
|
ChatYuan2, # noqa: F401
|
|
)
|
|
from langchain_community.chat_models.zhipuai import (
|
|
ChatZhipuAI, # noqa: F401
|
|
)
|
|
|
|
__all__ = [
|
|
"AzureChatOpenAI",
|
|
"BedrockChat",
|
|
"ChatAnthropic",
|
|
"ChatAnyscale",
|
|
"ChatBaichuan",
|
|
"ChatCohere",
|
|
"ChatDatabricks",
|
|
"ChatDeepInfra",
|
|
"ChatEverlyAI",
|
|
"ChatFireworks",
|
|
"ChatFriendli",
|
|
"ChatGooglePalm",
|
|
"ChatHuggingFace",
|
|
"ChatHunyuan",
|
|
"ChatJavelinAIGateway",
|
|
"ChatKinetica",
|
|
"ChatKonko",
|
|
"ChatLiteLLM",
|
|
"ChatLiteLLMRouter",
|
|
"ChatMLX",
|
|
"ChatMLflowAIGateway",
|
|
"ChatMaritalk",
|
|
"ChatMlflow",
|
|
"ChatOllama",
|
|
"ChatOpenAI",
|
|
"ChatPerplexity",
|
|
"ChatPremAI",
|
|
"ChatSparkLLM",
|
|
"ChatTongyi",
|
|
"ChatVertexAI",
|
|
"ChatYandexGPT",
|
|
"ChatYuan2",
|
|
"ChatZhipuAI",
|
|
"ErnieBotChat",
|
|
"FakeListChatModel",
|
|
"GPTRouter",
|
|
"GigaChat",
|
|
"HumanInputChatModel",
|
|
"JinaChat",
|
|
"LlamaEdgeChatService",
|
|
"MiniMaxChat",
|
|
"PaiEasChatEndpoint",
|
|
"PromptLayerChatOpenAI",
|
|
"QianfanChatEndpoint",
|
|
"SolarChat",
|
|
"VolcEngineMaasChat",
|
|
]
|
|
|
|
|
|
_module_lookup = {
|
|
"AzureChatOpenAI": "langchain_community.chat_models.azure_openai",
|
|
"BedrockChat": "langchain_community.chat_models.bedrock",
|
|
"ChatAnthropic": "langchain_community.chat_models.anthropic",
|
|
"ChatAnyscale": "langchain_community.chat_models.anyscale",
|
|
"ChatBaichuan": "langchain_community.chat_models.baichuan",
|
|
"ChatCohere": "langchain_community.chat_models.cohere",
|
|
"ChatDatabricks": "langchain_community.chat_models.databricks",
|
|
"ChatDeepInfra": "langchain_community.chat_models.deepinfra",
|
|
"ChatEverlyAI": "langchain_community.chat_models.everlyai",
|
|
"ChatFireworks": "langchain_community.chat_models.fireworks",
|
|
"ChatFriendli": "langchain_community.chat_models.friendli",
|
|
"ChatGooglePalm": "langchain_community.chat_models.google_palm",
|
|
"ChatHuggingFace": "langchain_community.chat_models.huggingface",
|
|
"ChatHunyuan": "langchain_community.chat_models.hunyuan",
|
|
"ChatJavelinAIGateway": "langchain_community.chat_models.javelin_ai_gateway",
|
|
"ChatKinetica": "langchain_community.chat_models.kinetica",
|
|
"ChatKonko": "langchain_community.chat_models.konko",
|
|
"ChatLiteLLM": "langchain_community.chat_models.litellm",
|
|
"ChatLiteLLMRouter": "langchain_community.chat_models.litellm_router",
|
|
"ChatMLflowAIGateway": "langchain_community.chat_models.mlflow_ai_gateway",
|
|
"ChatMLX": "langchain_community.chat_models.mlx",
|
|
"ChatMaritalk": "langchain_community.chat_models.maritalk",
|
|
"ChatMlflow": "langchain_community.chat_models.mlflow",
|
|
"ChatOllama": "langchain_community.chat_models.ollama",
|
|
"ChatOpenAI": "langchain_community.chat_models.openai",
|
|
"ChatPerplexity": "langchain_community.chat_models.perplexity",
|
|
"ChatSparkLLM": "langchain_community.chat_models.sparkllm",
|
|
"ChatTongyi": "langchain_community.chat_models.tongyi",
|
|
"ChatVertexAI": "langchain_community.chat_models.vertexai",
|
|
"ChatYandexGPT": "langchain_community.chat_models.yandex",
|
|
"ChatYuan2": "langchain_community.chat_models.yuan2",
|
|
"ChatZhipuAI": "langchain_community.chat_models.zhipuai",
|
|
"ErnieBotChat": "langchain_community.chat_models.ernie",
|
|
"FakeListChatModel": "langchain_community.chat_models.fake",
|
|
"GPTRouter": "langchain_community.chat_models.gpt_router",
|
|
"GigaChat": "langchain_community.chat_models.gigachat",
|
|
"HumanInputChatModel": "langchain_community.chat_models.human",
|
|
"JinaChat": "langchain_community.chat_models.jinachat",
|
|
"LlamaEdgeChatService": "langchain_community.chat_models.llama_edge",
|
|
"MiniMaxChat": "langchain_community.chat_models.minimax",
|
|
"PaiEasChatEndpoint": "langchain_community.chat_models.pai_eas_endpoint",
|
|
"PromptLayerChatOpenAI": "langchain_community.chat_models.promptlayer_openai",
|
|
"SolarChat": "langchain_community.chat_models.solar",
|
|
"QianfanChatEndpoint": "langchain_community.chat_models.baidu_qianfan_endpoint",
|
|
"VolcEngineMaasChat": "langchain_community.chat_models.volcengine_maas",
|
|
"ChatPremAI": "langchain_community.chat_models.premai",
|
|
}
|
|
|
|
|
|
def __getattr__(name: str) -> Any:
|
|
if name in _module_lookup:
|
|
module = importlib.import_module(_module_lookup[name])
|
|
return getattr(module, name)
|
|
raise AttributeError(f"module {__name__} has no attribute {name}")
|
|
|
|
|
|
__all__ = list(_module_lookup.keys())
|