#Gave my agent better conversation histor - spacebanane

1 messages ยท Page 1 of 1 (latest)

grizzled flaxBOT
olive mortar
#

how i got to have that

cunning blade
foggy reef
#

https://gitea.reversed.dev/space/qmem-plugin

@cunning blade @olive mortar

plugins.load:

"load": {
      "paths": [
        "/root/projects/qmem-plugin" 
      ]
    },

FYI: Please pull the repo into any directory and put the path of where you pulled it here โฌ†๏ธ

plugins.entries (add or modify):

,
      "qmem-plugin": {
        "enabled": true,
        "config": {
          "qdrant": {
            "url": "http://127.0.0.1:6333"
          },
          "embedding": {
            "ollamaUrl": "http://OLLAMA_IP:11434",
            "model": "nomic-embed-text"
          },
          "capture": {
            "enabled": true,
            "messages": 35,
            "titleModel": "gemma3:4b-it-q8_0"
          }
        }
      },
      "session-memory": {
        "enabled": false
      }

Requires Ollama for now, for both embedding and the optional conversation title generation, i will add support for openai and stuff like that later on, just run ollama on your machine for now if you want to use this

Start a new Qdrant Container (This stores our Vectors)

docker run -d \
  --name qdrant \
  --restart unless-stopped \
  -p 6333:6333 \
  -v /root/docker-data/qdrant/storage:/qdrant/storage \
  qdrant/qdrant:latest

There is also an optional UI which is READ-ONLY (for now). Super experimental, don't replace your memory with this yet