From cfe878204e657015882831c7ff978d4569624dc7 Mon Sep 17 00:00:00 2001 From: Renato Oliveira Date: Tue, 7 Apr 2026 11:41:15 -0300 Subject: [PATCH] fix: update input prompt for entity confirmation in entity_detector.py Refine the prompt for distinguishing between person and project entities by adjusting the wording for clarity. --- 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 63a7883..e2380f8 100644 --- a/mempalace/entity_detector.py +++ b/mempalace/entity_detector.py @@ -789,7 +789,7 @@ def confirm_entities(detected: dict, yes: bool = False) -> dict: name = input(" Name (or enter to stop): ").strip() if not name: break - kind = input(f" Is '{name}' a (p)erson or (r)roject? ").strip().lower() + kind = input(f" Is '{name}' a (p)erson or p(r)oject? ").strip().lower() if kind == "p": confirmed_people.append(name) elif kind == "r":