[PR #803] [CLOSED] feat: add AI Assistant with Biological Memory Decay tutorial #13989

Closed
opened 2026-07-11 19:28:43 -05:00 by GiteaMirror · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/Shubhamsaboo/awesome-llm-apps/pull/803
Author: @sachitrafa
Created: 5/11/2026
Status: Closed

Base: mainHead: yourmemory-biological-memory-agent


📝 Commits (1)

  • fb8046f feat: add AI Assistant with Biological Memory Decay tutorial

📊 Changes

4 files changed (+173 additions, -0 deletions)

View changed files

📝 README.md (+1 -0)
advanced_llm_apps/llm_apps_with_memory_tutorials/yourmemory_agent/README.md (+49 -0)
advanced_llm_apps/llm_apps_with_memory_tutorials/yourmemory_agent/requirements.txt (+4 -0)
advanced_llm_apps/llm_apps_with_memory_tutorials/yourmemory_agent/yourmemory_agent.py (+119 -0)

📄 Description

Summary

Adds a new tutorial to the LLM Apps with Memory section demonstrating YourMemory — an open-source, local-first memory layer built on the Ebbinghaus forgetting curve.

What the tutorial shows:

  • Persistent memory across sessions using hybrid BM25 + vector retrieval
  • Biological memory decay — memories fade exponentially, strengthen on recall
  • Entity graph expansion — related memories surface via spaCy NER even when they don't match the query directly
  • Live memory panel showing per-memory strength scores
  • Auto-store — assistant detects and saves new facts mid-conversation

Stack: yourmemory + anthropic + streamlit

Files added:

  • yourmemory_agent.py — Streamlit app
  • requirements.txt
  • README.md with setup instructions and decay rate reference table

🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/Shubhamsaboo/awesome-llm-apps/pull/803 **Author:** [@sachitrafa](https://github.com/sachitrafa) **Created:** 5/11/2026 **Status:** ❌ Closed **Base:** `main` ← **Head:** `yourmemory-biological-memory-agent` --- ### 📝 Commits (1) - [`fb8046f`](https://github.com/Shubhamsaboo/awesome-llm-apps/commit/fb8046fcb9043d1596737d8650de64a7b03cdeeb) feat: add AI Assistant with Biological Memory Decay tutorial ### 📊 Changes **4 files changed** (+173 additions, -0 deletions) <details> <summary>View changed files</summary> 📝 `README.md` (+1 -0) ➕ `advanced_llm_apps/llm_apps_with_memory_tutorials/yourmemory_agent/README.md` (+49 -0) ➕ `advanced_llm_apps/llm_apps_with_memory_tutorials/yourmemory_agent/requirements.txt` (+4 -0) ➕ `advanced_llm_apps/llm_apps_with_memory_tutorials/yourmemory_agent/yourmemory_agent.py` (+119 -0) </details> ### 📄 Description ## Summary Adds a new tutorial to the LLM Apps with Memory section demonstrating [YourMemory](https://github.com/sachitrafa/YourMemory) — an open-source, local-first memory layer built on the Ebbinghaus forgetting curve. **What the tutorial shows:** - Persistent memory across sessions using hybrid BM25 + vector retrieval - Biological memory decay — memories fade exponentially, strengthen on recall - Entity graph expansion — related memories surface via spaCy NER even when they don't match the query directly - Live memory panel showing per-memory strength scores - Auto-store — assistant detects and saves new facts mid-conversation **Stack:** `yourmemory` + `anthropic` + `streamlit` **Files added:** - `yourmemory_agent.py` — Streamlit app - `requirements.txt` - `README.md` with setup instructions and decay rate reference table --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
GiteaMirror added the pull-request label 2026-07-11 19:28:43 -05:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: github-starred/awesome-llm-apps#13989