FAI Memory Service is built for Large Language Models (LLMs) conversational memory.
797
FAI Memory Service is built for Large Language Models (LLMs) to store, retrieve, and manage conversational memory at scale.
Using Docker, you can quickly deploy in a consistent, isolated, and scalable environment.
Benefits:
docker run -d --name fai-memory -p 8080:8080 -v /path/to/config:/app/conf fai-memory
Key Options:
-p 8080:8080: Map API endpoint to host port-v /path/to/config:/app/conf: Mount custom configuration for memory backendcurl http://localhost:8080/health
Expected output:
{
"status": "ok",
"message": "Service is healthy"
}
For production or multi-service setups:
version: '3.9'
services:
fai-memory:
image: fai-memory:latest
ports:
- "8080:8080"
volumes:
- ./config:/app/conf
depends_on:
- redis
redis:
image: redis:6.2
ports:
- "6379:6379"
Start with:
docker-compose up -d
Docker makes it simple to deploy FAI Memory Service for LLMs, providing a scalable and reliable memory layer to support complex conversational AI systems.
Content type
Image
Digest
sha256:ebfcfb73f…
Size
24.4 MB
Last updated
12 months ago
docker pull longkeyy/fai-memory