mirror of
https://github.com/hwchase17/langchain
synced 2024-11-20 03:25:56 +00:00
92a5f00ffb
- added missed integration to `docs/ecosystem/integrations/` - updated notebooks to consistent format: changed titles, file names; added descriptions #### Who can review? @hwchase17 @dev2049
25 lines
634 B
Markdown
25 lines
634 B
Markdown
# Amazon Bedrock
|
|
|
|
>[Amazon Bedrock](https://aws.amazon.com/bedrock/) is a fully managed service that makes FMs from leading AI startups and Amazon available via an API, so you can choose from a wide range of FMs to find the model that is best suited for your use case.
|
|
|
|
## Installation and Setup
|
|
|
|
```bash
|
|
pip install boto3
|
|
```
|
|
|
|
## LLM
|
|
|
|
See a [usage example](../modules/models/llms/integrations/bedrock.ipynb).
|
|
|
|
```python
|
|
from langchain import Bedrock
|
|
```
|
|
|
|
## Text Embedding Models
|
|
|
|
See a [usage example](../modules/models/text_embedding/examples/amazon_bedrock.ipynb).
|
|
```python
|
|
from langchain.embeddings import BedrockEmbeddings
|
|
```
|