fix(navigation): block VLM from hallucinating trending audio clicks during like intent

This commit is contained in:
2026-05-05 12:03:53 +02:00
parent 59cd5477af
commit 59e7967458

View File

@@ -249,6 +249,11 @@ class TelepathicEngine:
if "type" not in intent and "reply" not in intent and "message" not in intent and "search" not in intent:
return False
# 0.5 LIKE BUTTON GUARD: Never pick "Trending" or "Use audio" when trying to like
if "like" in intent:
if "trending" in semantic or "use audio" in semantic or "options" in semantic or "share" in semantic or "save audio" in semantic or "audio" in semantic or "add" in semantic:
return False
# 1. Post Username Guard
if "post username" in intent or "author username" in intent:
if "story" in semantic: