mirror of
https://github.com/hwchase17/langchain.git
synced 2026-06-09 10:17:00 +00:00
8 lines
135 B
Python
8 lines
135 B
Python
"""LangChain integration for Chroma vector database."""
|
|
|
|
from langchain_chroma.vectorstores import Chroma
|
|
|
|
__all__ = [
|
|
"Chroma",
|
|
]
|