From 39e1651af323fd29c79ed9f225541f0145d0f3b7 Mon Sep 17 00:00:00 2001 From: Igor Lins e Silva <4753812+igorls@users.noreply.github.com> Date: Mon, 13 Apr 2026 01:43:57 -0300 Subject: [PATCH] fix: correct typo in entity_detector interactive classification prompt (#755) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit '(r)roject' had a duplicate 'r', making it read as '(r)roject' instead of the intended '(r)project'. Small UX fix — no behavior change. Co-authored-by: Arnold Wender --- mempalace/entity_detector.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mempalace/entity_detector.py b/mempalace/entity_detector.py index 061778c..80fc107 100644 --- a/mempalace/entity_detector.py +++ b/mempalace/entity_detector.py @@ -760,7 +760,7 @@ def confirm_entities(detected: dict, yes: bool = False) -> dict: if detected["uncertain"]: print("\n Uncertain entities — classify each:") for e in detected["uncertain"]: - ans = input(f" {e['name']} — (p)erson, (r)roject, or (s)kip? ").strip().lower() + ans = input(f" {e['name']} — (p)erson, (r)project, or (s)kip? ").strip().lower() if ans == "p": confirmed_people.append(e["name"]) elif ans == "r":