forked from langchain-ai/langchain
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
docs:
integrations
reference updates 5 (langchain-ai#25151)
Added missed references. Added missed provider pages. --------- Co-authored-by: Chester Curme <[email protected]>
- Loading branch information
Showing
8 changed files
with
95 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
# bookend.ai | ||
|
||
LangChain implements an integration with embeddings provided by [bookend.ai](https://bookend.ai/). | ||
|
||
|
||
## Installation and Setup | ||
|
||
|
||
You need to register and get the `API_KEY` | ||
from the [bookend.ai](https://bookend.ai/) website. | ||
|
||
## Embedding model | ||
|
||
See a [usage example](/docs/integrations/text_embedding/bookend). | ||
|
||
```python | ||
from langchain_community.embeddings import BookendEmbeddings | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
# Coze | ||
|
||
[Coze](https://www.coze.com/) is an AI chatbot development platform that enables | ||
the creation and deployment of chatbots for handling diverse conversations across | ||
various applications. | ||
|
||
|
||
## Installation and Setup | ||
|
||
First, you need to get the `API_KEY` from the [Coze](https://www.coze.com/) website. | ||
|
||
|
||
## Chat models | ||
|
||
See a [usage example](/docs/integrations/chat/coze/). | ||
|
||
```python | ||
from langchain_community.chat_models import ChatCoze | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
# rank_bm25 | ||
|
||
[rank_bm25](https://github.com/dorianbrown/rank_bm25) is an open-source collection of algorithms | ||
designed to query documents and return the most relevant ones, commonly used for creating | ||
search engines. | ||
|
||
See its [project page](https://github.com/dorianbrown/rank_bm25) for available algorithms. | ||
|
||
|
||
## Installation and Setup | ||
|
||
First, you need to install `rank_bm25` python package. | ||
|
||
```bash | ||
pip install rank_bm25 | ||
``` | ||
|
||
|
||
## Retriever | ||
|
||
See a [usage example](/docs/integrations/retrievers/bm25). | ||
|
||
```python | ||
from langchain_community.retrievers import BM25Retriever | ||
``` |