mirror of
https://github.com/hwchase17/langchain
synced 2024-11-11 19:11:02 +00:00
916332ef5b
- **Description:** Added `langchain_ibm` as an langchain partners package of IBM [watsonx.ai](https://www.ibm.com/products/watsonx-ai) LLM provider (`WatsonxLLM`) - **Dependencies:** [ibm-watsonx-ai](https://pypi.org/project/ibm-watsonx-ai/), - **Tag maintainer:** : --------- Co-authored-by: Erick Friis <erick@langchain.dev>
8 lines
150 B
Python
8 lines
150 B
Python
from langchain_ibm import __all__
|
|
|
|
EXPECTED_ALL = ["WatsonxLLM"]
|
|
|
|
|
|
def test_all_imports() -> None:
|
|
assert sorted(EXPECTED_ALL) == sorted(__all__)
|