|
|
|
|
|
by lqet
45 days ago
|
|
The exception is translation. Translation is what transformers were originally developed for. LLMs shine in translation, and creating code is, after all, a translation from natural language into a programming language. A lot of what current LLMs are good at seems to boil down to translation: * Translate some prompt into a planning list of individual TODOs * Treat each TODO as a new translation (e.g. from TODO to code), or call some external tool (lookup something on the internet, static code analysis, database request) * Translate the result(s) of these TODOs into a final text, or into a new TODO list To me, this is interesting, because maybe the Homo Sapiens intelligence simply developed as a side effect of communication (translating words into actions). |
|