mirror of
https://github.com/hwchase17/langchain
synced 2024-11-08 07:10:35 +00:00
d6ef5fe86a
**Description:** Adding chat completions to the Together AI package, which is our most popular API. Also staying backwards compatible with the old API so folks can continue to use the completions API as well. Also moved the embedding API to use the OpenAI library to standardize it further. **Twitter handle:** @nutlope - [x] **Add tests and docs**: If you're adding a new integration, please include - [x] **Lint and test**: Run `make format`, `make lint` and `make test` from the root of the package(s) you've modified. See contribution guidelines for more: https://python.langchain.com/docs/contributing/ If no one reviews your PR within a few days, please @-mention one of baskaryan, efriis, eyurtsev, hwchase17. --------- Co-authored-by: Erick Friis <erick@langchain.dev>
6 lines
224 B
Python
6 lines
224 B
Python
from langchain_together.chat_models import ChatTogether
|
|
from langchain_together.embeddings import TogetherEmbeddings
|
|
from langchain_together.llms import Together
|
|
|
|
__all__ = ["ChatTogether", "Together", "TogetherEmbeddings"]
|