logoalt Hacker News

p-e-wyesterday at 6:09 AM3 repliesview on HN

Many cloud products now continuously send themselves the input you type while you are typing it, to squeeze the maximum possible amount of data from your interactions.

I don’t know whether ChatGPT is one of those products, but if it is, that behavior might be a side effect of blocking the input pipeline until verification completes. It might be that they want to get every single one of your keystrokes, but only after checking that you’re not a bot.


Replies

davidkunzyesterday at 6:28 AM

It's still possible to let users already type from the beginning, just delay sending the characters until checks are complete. Hold them in memory until then.

show 1 reply
mort96yesterday at 9:59 AM

I just checked the network inspector, the only thing it does per key press is to generate an autocomplete list. It doesn't seem too hard to wait with the autocomplete generation until after whichever checks you run pass.

andaiyesterday at 7:59 AM

I wondered if ChatGPT streams my message to the GPU while I type it, because the response comes weirdly fast after I submit th message. But I don't know much about how this stuff works.

show 1 reply