From 59e79674588fe53a9ad735af5bf9967e430f9211 Mon Sep 17 00:00:00 2001 From: Marc Mintel Date: Tue, 5 May 2026 12:03:53 +0200 Subject: [PATCH] fix(navigation): block VLM from hallucinating trending audio clicks during like intent --- GramAddict/core/telepathic_engine.py | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/GramAddict/core/telepathic_engine.py b/GramAddict/core/telepathic_engine.py index 841c321..e35ce52 100644 --- a/GramAddict/core/telepathic_engine.py +++ b/GramAddict/core/telepathic_engine.py @@ -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: