mirror of
https://github.com/hwchase17/langchain
synced 2024-10-29 17:07:25 +00:00
240190db3f
- 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.
17 lines
487 B
Plaintext
17 lines
487 B
Plaintext
# Motörhead
|
|
|
|
>[Motörhead](https://github.com/getmetal/motorhead) is a memory server implemented in Rust. It automatically handles incremental summarization in the background and allows for stateless applications.
|
|
|
|
## Installation and Setup
|
|
|
|
See instructions at [Motörhead](https://github.com/getmetal/motorhead) for running the server locally.
|
|
|
|
|
|
## Memory
|
|
|
|
See a [usage example](/docs/integrations/memory/motorhead_memory).
|
|
|
|
```python
|
|
from langchain.memory import MotorheadMemory
|
|
```
|