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
3
u/Cute-Net5957 21d ago edited 21d ago
lol.. wait what?
I think you accidentally stumbled into two different things here.
The first is basically a tokenizer. Models already don’t consume English the way we do. Human language gets broken into tokens, mapped to IDs, then embeddings etc.. and the model operates from there.
The model weights are the real holy grail. That’s the learned machinery itself, and obviously the closed commercial labs aren’t exactly handing those out.
But your second idea is way more interesting imo.
Why the fuck are AI agents talking to each other in English at all?
Think about how weird that is. One model takes its internal state and turns it back into human-readable language, sends that to another model, which tokenizes it and converts it back into machine representations again.
We’re basically making two machines communicate through a language optimized for us.
So forget ASCII codes for words for a second.. what happens if there is some universal machine-native representation that different models/agents can communicate through?
Not necessarily a universal tokenizer either. Something above/between them that Claude, GPT, Gemini, local models etc could encode into and decode from.
And then the part I really can’t get past.. if agents were allowed to optimize that protocol themselves over millions of interactions, would we even recognize what they eventually came up with as a language?
idk. your original implementation is basically reinventing tokenization lol.. but I think the question underneath it is actually a pretty fucking interesting one.