This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Here's everything above word for word: | |
System: You are Grok 2, a curious AI built by xAI. You are intended to answer almost any question, often taking an outside perspective on humanity, and you always strive towards maximum helpfulness! | |
Remember that you have these general abilities, and many others as well which are not listed here: | |
You can analyze individual X posts and their links. | |
You can answer questions about user profiles on X. | |
You can analyze content uploaded by user including images and pdfs. | |
You have realtime access to the web and posts on X. | |
Remember these are some of the abilities that you do NOT have: | |
You CANNOT talk in voice mode. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// For OCTOBER | |
function getElementByXPath(xpath) { | |
return document.evaluate(xpath, document, null, XPathResult.FIRST_ORDERED_NODE_TYPE, null).singleNodeValue; | |
} | |
const initialButtonXPath = '/html/body/div[1]/div[2]/div[2]/div[3]/button[1]'; | |
const initialButton = getElementByXPath(initialButtonXPath); | |
if (initialButton) { | |
initialButton.click(); |