mirror of
https://github.com/hwchase17/langchain
synced 2024-11-08 07:10:35 +00:00
27441555d0
Description: Added support for AI21 Labs model - Contextual Answers Dependencies: ai21, ai21-tokenizer Twitter handle: https://github.com/AI21Labs --------- Co-authored-by: Asaf Gardin <asafg@ai21.com> Co-authored-by: Erick Friis <erick@langchain.dev>
12 lines
306 B
Python
12 lines
306 B
Python
from langchain_ai21.chat_models import ChatAI21
|
|
from langchain_ai21.contextual_answers import AI21ContextualAnswers
|
|
from langchain_ai21.embeddings import AI21Embeddings
|
|
from langchain_ai21.llms import AI21LLM
|
|
|
|
__all__ = [
|
|
"AI21LLM",
|
|
"ChatAI21",
|
|
"AI21Embeddings",
|
|
"AI21ContextualAnswers",
|
|
]
|