mirror of
https://github.com/hwchase17/langchain
synced 2024-11-06 03:20:49 +00:00
f9aea3db07
Description: add lint docstrings for chroma module Issue: the issue #23188 @baskaryan test: ruff check passed. ![image](https://github.com/langchain-ai/langchain/assets/76683249/5e168a0c-32d0-464f-8ddb-110233918019) --------- Co-authored-by: gongwn1 <gongwn1@lenovo.com>
10 lines
181 B
Python
10 lines
181 B
Python
"""This is the langchain_chroma package.
|
|
|
|
It contains the Chroma class for handling various tasks.
|
|
"""
|
|
from langchain_chroma.vectorstores import Chroma
|
|
|
|
__all__ = [
|
|
"Chroma",
|
|
]
|