mirror of
https://github.com/hwchase17/langchain.git
synced 2026-06-09 10:17:00 +00:00
docs: add missing module-level docstrings to partner integrations Added module-level docstrings to 6 partner integration __init__.py files that were missing documentation:
22 lines
514 B
Python
22 lines
514 B
Python
"""Hugging Face integration for LangChain."""
|
|
|
|
from langchain_huggingface.chat_models import (
|
|
ChatHuggingFace, # type: ignore[import-not-found]
|
|
)
|
|
from langchain_huggingface.embeddings import (
|
|
HuggingFaceEmbeddings,
|
|
HuggingFaceEndpointEmbeddings,
|
|
)
|
|
from langchain_huggingface.llms import (
|
|
HuggingFaceEndpoint,
|
|
HuggingFacePipeline,
|
|
)
|
|
|
|
__all__ = [
|
|
"ChatHuggingFace",
|
|
"HuggingFaceEmbeddings",
|
|
"HuggingFaceEndpoint",
|
|
"HuggingFaceEndpointEmbeddings",
|
|
"HuggingFacePipeline",
|
|
]
|