mirror of
https://github.com/hwchase17/langchain
synced 2024-11-11 19:11:02 +00:00
f8a54d1d73
**Description:** Adds chroma to the partners package. Tests & code mirror those in the community package. **Dependencies:** None **Twitter handle:** @akiradev0x --------- Co-authored-by: Erick Friis <erick@langchain.dev>
10 lines
156 B
Python
10 lines
156 B
Python
from langchain_chroma import __all__
|
|
|
|
EXPECTED_ALL = [
|
|
"Chroma",
|
|
]
|
|
|
|
|
|
def test_all_imports() -> None:
|
|
assert sorted(EXPECTED_ALL) == sorted(__all__)
|