MemoHood and MemoBase – local memory and knowledge base for AI agents
MemoBase is a plugin for hermes-agent that creates a local knowledge base from various file types, web pages, YouTube content, audio, and Obsidian notes. It answers queries strictly using the indexed data, providing verbatim citations or a clear refusal when the information is absent. The system combines full‑text search (FTS5) with vector embeddings and a relevance‑fusion reranker, all stored in a local SQLite database.
- ▪MemoBase ingests PDFs, DOCX, HTML, MD, TXT, CSV, URLs, YouTube videos, audio recordings, and Obsidian vaults into a searchable SQLite database.
- ▪Queries are processed through a hybrid pipeline that merges BM25‑style FTS5 results with vector KNN scores using reciprocal rank fusion and a Cohere reranker.
- ▪If the retrieved fragments do not meet a sufficiency gate, the model refuses to answer rather than hallucinate, and any provided citation is verified against the source text.
- ▪The solution runs locally without requiring PyTorch or external cloud services, using fast ONNX embeddings and optional Whisper transcription for audio/video content.
Opening excerpt (first ~120 words) tap to expand
📚 MemoBase Плагин для hermes-agent, который превращает ваши файлы (PDF/DOCX/HTML/MD/TXT/CSV), веб-страницы, YouTube-видео и целые каналы, аудиозаписи и заметки Obsidian в локальную базу знаний — и отвечает строго по ней: с дословными проверенными цитатами или честным отказом, если ответа в базе нет. 🌐 Русский · English Зачем · Возможности · Установка · Настройки · Инструменты flowchart TD subgraph ING["Загрузка — memobase_ingest"] FILES["Файлы и URL<br/>PDF / DOCX / HTML / MD / TXT / CSV"] OBS["Obsidian<br/>заметка или vault"] YT["YouTube<br/>видео или канал"] AUD["Аудио / голосовые / видео"] CAPS{"Субтитры<br/>ScrapeCreators → Apify"} STT["Расшифровка STT<br/>Groq Whisper → Gemini<br/>(таймкоды сегментов)"] EXT["Извлечение текста<br/>(SSRF-проверка для URL)"]…
Excerpt limited to ~120 words for fair-use compliance. The full article is at GitHub.