docs: added community modules descriptions (#17827)

API Reference: Several `community` modules (like
[adapter](https://api.python.langchain.com/en/latest/community_api_reference.html#module-langchain_community.adapters)
module) are missing descriptions. It happens when langchain was split to
the core, langchain and community packages.
- Copied module descriptions from other packages
- Fixed several descriptions to the consistent format.
This commit is contained in:
Leonid Ganeline
2024-02-21 16:18:36 -08:00
committed by GitHub
parent 5019951a5d
commit ed0b7c3b72
7 changed files with 64 additions and 25 deletions

View File

@@ -0,0 +1,8 @@
"""**Adapters** are used to adapt LangChain models to other APIs.
LangChain integrates with many model providers.
While LangChain has its own message and model APIs,
LangChain has also made it as easy as
possible to explore other models by exposing an **adapter** to adapt LangChain
models to the other APIs, as to the OpenAI API.
"""