Made prompt shorter

This commit is contained in:
2025-09-10 22:08:16 -07:00
parent bddce23c76
commit d181ac73b1

View File

@@ -31,7 +31,7 @@ def print_recommendation(path: str | None, text: str, ctx: InferenceContext,
print(f"- {i}: {r} ({cat}-{subcat})")
if interactive_rename and path is not None:
response = input("(n#), t [text], c [cat], b [search], ?, q > ")
response = input("(n#), t, c, b, ?, q > ")
if m := match(r'^([0-9]+)', response):
selection = int(m.group(1))