mirror of
https://github.com/hwchase17/langchain.git
synced 2026-06-09 18:50:33 +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:
7 lines
218 B
Python
7 lines
218 B
Python
"""Mistral AI integration for LangChain."""
|
|
|
|
from langchain_mistralai.chat_models import ChatMistralAI
|
|
from langchain_mistralai.embeddings import MistralAIEmbeddings
|
|
|
|
__all__ = ["ChatMistralAI", "MistralAIEmbeddings"]
|