-
Notifications
You must be signed in to change notification settings - Fork 15.7k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
docs:
integrations
updates 21 (#27380)
Added missed provider pages. Added descriptions and links. Fixed inconsistency in text formatting. --------- Co-authored-by: Erick Friis <[email protected]> Co-authored-by: Erick Friis <[email protected]>
- Loading branch information
1 parent
591a3db
commit 3165415
Showing
5 changed files
with
94 additions
and
10 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
# LocalAI | ||
|
||
>[LocalAI](https://localai.io/) is the free, Open Source OpenAI alternative. | ||
> `LocalAI` act as a drop-in replacement REST API that’s compatible with OpenAI API | ||
> specifications for local inferencing. It allows you to run LLMs, generate images, | ||
> audio (and not only) locally or on-prem with consumer grade hardware, | ||
> supporting multiple model families and architectures. | ||
## Installation and Setup | ||
|
||
We have to install several python packages: | ||
|
||
```bash | ||
pip install tenacity openai | ||
``` | ||
|
||
|
||
## Embedding models | ||
|
||
See a [usage example](/docs/integrations/text_embedding/localai). | ||
|
||
```python | ||
from langchain_community.embeddings import LocalAIEmbeddings | ||
``` |
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,24 @@ | ||
# MongoDB | ||
|
||
>[MongoDB](https://www.mongodb.com/) is a NoSQL, document-oriented | ||
> database that supports JSON-like documents with a dynamic schema. | ||
**NOTE:** | ||
- See other `MongoDB` integrations on the [MongoDB Atlas page](/docs/integrations/providers/mongodb_atlas). | ||
|
||
## Installation and Setup | ||
|
||
Install the Python package: | ||
|
||
```bash | ||
pip install langchain-mongodb | ||
``` | ||
|
||
## Message Histories | ||
|
||
See a [usage example](/docs/integrations/memory/mongodb_chat_message_history). | ||
|
||
To import this vectorstore: | ||
```python | ||
from langchain_mongodb.chat_message_histories import MongoDBChatMessageHistory | ||
``` |
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