-
Notifications
You must be signed in to change notification settings - Fork 16.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
10 changed files
with
148 additions
and
86 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
26 changes: 26 additions & 0 deletions
26
libs/experimental/langchain_experimental/chat_models/__init__.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
"""**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 | ||
|
||
from langchain_experimental.chat_models.llm_wrapper import Llama2Chat, Orca, Vicuna | ||
|
||
__all__ = [ | ||
"Llama2Chat", | ||
"Orca", | ||
"Vicuna", | ||
] |
File renamed without changes.
Oops, something went wrong.