LLMs don't really have logic like that. If we take chess as an example, a chess bot (like the ones that have been around for ages) will calculate all possible future moves giving the current game setup and chose the one with the highest win probability.Arjuna92 wrote: ↑13 April 2026, 14:15
That means it wasn't given any strategy advice but simply told to play the game a huge number of times and find out when it happens to win against itself, gaining an immense understanding of game positions and strategy but not necessarily of tactics or logic, right? So would an LLM just try to find a legal move by parsing the rulebook?
A LLM will break down the current situation, assign it a token and check what other tokens are usually associated with this token and pick one of those.
Say white opens E4. An LLM will look at this situation and say "oh yes, this is 12345 and in all my data 12345 was followed by 23456 X% of the time so I will select 23456" and then move to C5, because the Sicilian Defense has been assigned the token 23456. But the LLM din't calculate whether this is actually a good move.
Could a LLM with a big enough data set be a good chess player? Sure, but a classic chess bot will do the job much more efficiently. LLMs are really good at certain tasks, but people want to apply them to situations where they don't make sense.