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.
This commit is contained in:
Renato Oliveira
2026-04-07 11:41:15 -03:00
parent 1782628b8a
commit cfe878204e
+1 -1
View File
@@ -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":