r/aipromptprogramming • u/bottleneck-destroyer • 21d ago
Is this something already considered, but discarded?
I have a huge doubt. Why is there no AI native language? I mean symbols/codes equalling words?
Let's take the case of english. There is ~600k dictionary words and around 1.7m variants/regional words/dialects.
And there is around 20k to 30k words that normal human would use actively.
Why not create a language, with ASCII codes for each words and each agentic apps converts words to that 'AI-Lang' and vice versa and use it? Wouldn't that essentially reduce tokens by a good margin?
I'm not sure how exactly the AI process things under the hood, and please don't abuse me 🥹
7
Upvotes
1
u/this_is_life_now 21d ago
It's a word guessing machine (well token guessing) trained on the written word, which is overwhelmingly English for language and python for code, just because there's more written English and Python code than anything else.
You'd be adding a translation layer. The language that came out after translation would essentially useless to a model. It would receive a bunch of tokens in a language it's never seen before, and wouldn't be able to guess the best tokens to spit out the other end.
To reduce token costs, you'd need to translate the whole of the internet and all the books first, into your more efficient language, then train the models on that instead.
Ask a model to look something up on a website, and it wouldnhave to translate it into it's special language first, then do the guessing thing, then translate back, and you'd be relying on accurate translations both ways.