From 216332bdbf7729497ee7d21f6513739d37de59a8 Mon Sep 17 00:00:00 2001 From: adamlui Date: Sat, 10 Aug 2024 03:00:40 +0000 Subject: [PATCH] =?UTF-8?q?Reversed=20ternary=20in=20`rqPrompt`=20for=20re?= =?UTF-8?q?adability=20=E2=86=9E=20[auto-sync=20from=20`adamlui/chatgpt-ap?= =?UTF-8?q?ps`]?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- greasemonkey/googlegpt.user.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/greasemonkey/googlegpt.user.js b/greasemonkey/googlegpt.user.js index d9ac01dd..5a9dc835 100644 --- a/greasemonkey/googlegpt.user.js +++ b/greasemonkey/googlegpt.user.js @@ -149,7 +149,7 @@ // @description:zu Yengeza izimpendulo ze-AI ku-Google Search (inikwa amandla yi-Google Gemma + GPT-4o!) // @author KudoAI // @namespace https://kudoai.com -// @version 2024.8.8.4 +// @version 2024.8.9 // @license MIT // @icon https://media.googlegpt.io/images/icons/googlegpt/black/icon48.png?8652a6e // @icon64 https://media.googlegpt.io/images/icons/googlegpt/black/icon64.png?8652a6e @@ -2719,7 +2719,7 @@ return new Promise(resolve => { const rqPrompt = `Show a numbered list of queries related to this one:\n\n${query}\n\n` - + ( get.related.api != 'Free Chat' ? ( // to evade long query automated detection + + ( get.related.api == 'Free Chat' ? '' : ( // to evade long query automated detection + ' Make sure to suggest a variety that can even greatly deviate from the original topic.' + ' For example, if the original query asked about someone\'s wife,' + ' a good related query could involve a different relative and using their name.' @@ -2728,7 +2728,7 @@ + ' Another example, if the original query asked how to learn JavaScript,' + ' good related queries could ask why/when/where instead, even replacing JS w/ other languages.' + ' But the key is variety. Do not be repetitive.' - + ' You must entice user to want to ask one of your related queries.' ) : '' ) + + ' You must entice user to want to ask one of your related queries.' )) + ` Reply in ${config.replyLanguage}` xhr({ method: apis[get.related.api].method,