Skip to content

Commit

Permalink
Move README about Qdrant in to memory.md
Browse files Browse the repository at this point in the history
  • Loading branch information
wangxuqi committed Apr 22, 2023
1 parent 4a44808 commit 0457470
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions docs/configuration/memory.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down

0 comments on commit 0457470

Please sign in to comment.