Fixed inaccurate import in integrations:providers:bedrock documentation (#8915)

Description:
Fixed inaccurate import in integrations:providers:bedrock documentation

In the current version of the bedrock documentation, page
https://python.langchain.com/docs/integrations/providers/bedrock it
states that the import is from langchain import Bedrock

This has been changed to from langchain.llms.bedrock import Bedrock as
stated in https://python.langchain.com/docs/integrations/llms/bedrock

Issue:
Not applicable

Dependencies
No dependencies required

Tag maintainer
@baskaryan

Twitter handle:
Not applicable
pull/8923/head
Maurits de Groot 1 year ago committed by GitHub
parent 52d6b91c18
commit 61c2d918c6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -13,7 +13,7 @@ pip install boto3
See a [usage example](/docs/integrations/llms/bedrock).
```python
from langchain import Bedrock
from langchain.llms.bedrock import Bedrock
```
## Text Embedding Models

Loading…
Cancel
Save