From 0457470d5c8dbfc52ed1506db9f1da173b9214ce Mon Sep 17 00:00:00 2001 From: "xuqi.wxq" Date: Sat, 22 Apr 2023 23:30:47 +0800 Subject: [PATCH] Move README about Qdrant in to memory.md --- docs/configuration/memory.md | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/docs/configuration/memory.md b/docs/configuration/memory.md index 8ce713be4884..7b1222410869 100644 --- a/docs/configuration/memory.md +++ b/docs/configuration/memory.md @@ -120,6 +120,24 @@ WEAVIATE_EMBEDDED_PATH="/home/me/.local/share/weaviate" # this is optional and i USE_WEAVIATE_EMBEDDED=False # set to True to run Embedded Weaviate MEMORY_INDEX="Autogpt" # name of the index to create for the application ``` + +### Qdrant Setup +Install docker desktop. + +Run: + +``` +docker run -p "6333:6333" -p "6334:6334" qdrant/qdrant:v1.0.3 +``` + +In your `.env` file set the following: + +``` +MEMORY_BACKEND=qdrant +QDRANT_HOST=localhost +QDRANT_PORT=6333 +``` + ## View Memory Usage