mirror of
https://github.com/hwchase17/langchain.git
synced 2026-06-09 10:17:00 +00:00
Description: add lint docstrings for chroma module Issue: the issue #23188 @baskaryan test: ruff check passed.  --------- 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",
|
|
]
|