← Back to context

Comment by chatmasta

1 day ago

I'm confused why we need a model here when this is just standard Lucene search syntax supported by Twitter for years... is the issue that its owner doesn't realize this exists?

Not only that, but I can even link you directly [0] to it! No agent required, and I can even construct the link so it's sorted by most recent first...

[0] https://x.com/search?q=from%3Aelonmusk%20(Israel%20OR%20Pale...

Elon's tweets are not much interesting in this context.

The interesting part is that grok uses Elon's tweets as the source of truth for its opinions, and the prompt shows that

  • It’s possible that Grok’s developers got tired of listening to Elon complain all the time, “Why does Grok have the wrong opinion about this?”’and “Why does Grok have the wrong opinion about that?” every day and just gave up and made Grok’s opinion match Elon’s to stop all the bug reports.

The user did not ask for Musk's opinion. But the model issued that search query (yes, using the standard Twitter search syntax) to inform its response anyway.

The user asked Grok “what do you think about the conflict”, Grok “decided” to search twitter for what is Elon’s public opinion is presumably to take it into account.

I’m guessing the accusation is that it’s either prompted, or otherwise trained by xAI to, uh…, handle the particular CEO/product they have.

Others have explained the confusion, but I'd like to add some technical details:

LLMs are what we used to call txt2txt models. The output strings which are interpreted by the code running the model to take actions like re-prompting the model with more text, or in this case, searching Twitter (to provide text to prompt the model with). We call this "RAG" or "retrieval augmented generation", and if you were around for old-timey symbolic AI, it's kind of like a really hacky mesh of neural 'AI' and symbolic AI.

The important thing is that user-provided prompt is usually prepended and/or appended with extra prompts. In this case, it seems it has extra instructions to search for Musk's opinion.