fix(navigation): block VLM from hallucinating trending audio clicks during like intent
This commit is contained in:
@@ -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:
|
||||
|
||||
Reference in New Issue
Block a user