mirror of
https://github.com/hwchase17/langchain.git
synced 2025-05-30 19:49:09 +00:00
- updated titles and descriptions of the `integrations/memory` notebooks into consistent and laconic format; - removed `docs/extras/integrations/memory/motorhead_memory_managed.ipynb` file as a duplicate of the `docs/extras/integrations/memory/motorhead_memory.ipynb`; - added `integrations/providers` Integration Cards for `dynamodb`, `motorhead`. - updated `integrations/providers/redis.mdx` with links - renamed several notebooks; updated `vercel.json` to reroute new names.
24 lines
599 B
Plaintext
24 lines
599 B
Plaintext
# AWS DynamoDB
|
|
|
|
>[AWS DynamoDB](https://awscli.amazonaws.com/v2/documentation/api/latest/reference/dynamodb/index.html)
|
|
> is a fully managed `NoSQL` database service that provides fast and predictable performance with seamless scalability.
|
|
|
|
## Installation and Setup
|
|
|
|
We have to configur the [AWS CLI](https://docs.aws.amazon.com/cli/latest/userguide/cli-chap-configure.html).
|
|
|
|
We need to install the `boto3` library.
|
|
|
|
```bash
|
|
pip install boto3
|
|
```
|
|
|
|
|
|
## Memory
|
|
|
|
See a [usage example](/docs/integrations/memory/aws_dynamodb).
|
|
|
|
```python
|
|
from langchain.memory import DynamoDBChatMessageHistory
|
|
```
|