├── .github └── FUNDING.yml ├── LICENSE ├── README.md ├── changelog.txt ├── chathelper.py ├── commandhandler.py ├── commands ├── file_load.py └── urlhandler.py ├── images └── ai_gen_memoir.jpg ├── memoir.css ├── memoir.js ├── memoir_config.json ├── memoir_utils.py ├── memory ├── dream.py ├── long_term_memory.py └── short_term_memory.py ├── persona └── persona.py ├── qdrant-docker-compose.yml ├── rag ├── ingest_file_class.py └── rag_data_memory.py ├── requirements.txt ├── script.py └── storage ├── qdrant └── qdrant docker files will be stored here ├── sqlite └── sqlite database files will be stored here └── storage files will be stored here /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brucepro/Memoir/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brucepro/Memoir/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brucepro/Memoir/HEAD/README.md -------------------------------------------------------------------------------- /changelog.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brucepro/Memoir/HEAD/changelog.txt -------------------------------------------------------------------------------- /chathelper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brucepro/Memoir/HEAD/chathelper.py -------------------------------------------------------------------------------- /commandhandler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brucepro/Memoir/HEAD/commandhandler.py -------------------------------------------------------------------------------- /commands/file_load.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brucepro/Memoir/HEAD/commands/file_load.py -------------------------------------------------------------------------------- /commands/urlhandler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brucepro/Memoir/HEAD/commands/urlhandler.py -------------------------------------------------------------------------------- /images/ai_gen_memoir.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brucepro/Memoir/HEAD/images/ai_gen_memoir.jpg -------------------------------------------------------------------------------- /memoir.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /memoir.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /memoir_config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brucepro/Memoir/HEAD/memoir_config.json -------------------------------------------------------------------------------- /memoir_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brucepro/Memoir/HEAD/memoir_utils.py -------------------------------------------------------------------------------- /memory/dream.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brucepro/Memoir/HEAD/memory/dream.py -------------------------------------------------------------------------------- /memory/long_term_memory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brucepro/Memoir/HEAD/memory/long_term_memory.py -------------------------------------------------------------------------------- /memory/short_term_memory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brucepro/Memoir/HEAD/memory/short_term_memory.py -------------------------------------------------------------------------------- /persona/persona.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brucepro/Memoir/HEAD/persona/persona.py -------------------------------------------------------------------------------- /qdrant-docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brucepro/Memoir/HEAD/qdrant-docker-compose.yml -------------------------------------------------------------------------------- /rag/ingest_file_class.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brucepro/Memoir/HEAD/rag/ingest_file_class.py -------------------------------------------------------------------------------- /rag/rag_data_memory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brucepro/Memoir/HEAD/rag/rag_data_memory.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brucepro/Memoir/HEAD/requirements.txt -------------------------------------------------------------------------------- /script.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brucepro/Memoir/HEAD/script.py -------------------------------------------------------------------------------- /storage/qdrant/qdrant docker files will be stored here: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /storage/sqlite/sqlite database files will be stored here: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /storage/storage files will be stored here: -------------------------------------------------------------------------------- 1 | --------------------------------------------------------------------------------