“AI will took ur jerb!”
AI: cant even hack it at Taco Bell or McDonalds
This is a most excellent place for technology news and articles.
“AI will took ur jerb!”
AI: cant even hack it at Taco Bell or McDonalds
ai is taking jerbs, despite the fact that it cannot perform them at all, and the cost is being externalized to the customers. its not about whether they can do what they're meant to do, its about giving corporations excuses to further drive down human wages.
The fucking taco bell AI likes to ask if I would like anything else, then ask if I want nacho fries. Then, hearing "No", go ahead and add them anyway.
Then it likes watching me drive away, giving the store the finger.
In a fair world, we would be celebrating our machine labor achievement and enjoy our free time. Instead we have capitalism and virtual luddites shouting to protect menial labor.
Humanity.. sigh
The luddites didn't hate machines because they loved manual labor...
They wanted to ensure that mechanization benefited the workers via less hours and increased wages rather than the same wages and less jobs to go around.
Destroying mechanization was just an accomplishable goal in that fight.
What you're doing is falling for propaganda from a long ass time ago by the owner class...
same wages and less jobs to go around
If we're lucky. It's more likely to be lower wages. "We don't need to pay experienced programmers anymore, they aren't writing the code after all. We just need cheaper, less skilled people to review the code that is already 99% fine".
💯 Not about the tech, it's about who is going to use the tech to make life worse for the working class.
The parrels between the mechanical loom for them and AI for us really seem like they should be obvious...
But it's crazy on Labor Day weekend people are shit talking the luddites
I live near an AI Taco Bell. It works pretty damn well and is a lot easier to understand. There is still a cashier, they just don’t have to be on the mic the whole time. Although, the t-bell near me also seems to almost entirely ESL inside. It’s quite a bizarre experience end-to-end but they will certainly not back down. I’m not saying I support it but it’s certainly one of the less evil AI implementations?
Can someone who understands this better explain to me how this thing actually places the order into whatever POS they use? Like if LLMs are just advanced auto-complete, I get how they can do "fuzzy" tasks like answering questions or carrying on a conversation, but how do they do rigid tasks like entering the tacos into whatever system the cash register and kitchen use?
The LLM isn't limited to just what it does. It can interact with other programs.
There are a ton of audio recognition systems available, almost all of them predate this LLM bubble. There's already an API for interacting with the ordering system. So it's just down to having the LLM pull what is then do that corresponding action for the order.
This is so simple it doesn't require anything nearly as complicated as an LLM. The old phone assistants like Siri and Alexa could do this type of thing. It's literally the same as telling Alexa to place an order for something, and that's been an ability for years.
Its just an API.
There's a few ways they could go about it. They could have part of the prompt be something like "when the customer is done taking their order, create a JSON file with the order contents" and set up a dumb register essentially that looks for those files and adds that order like a standard POS would.
They could spell out a tutorial in the prompt, "to order a number 6 meal, type "system.order.meal(6)" calling the same functions that a POS system would, and have that output right to a terminal.
They could have their POS system be open on an internal screen, and have a model that can process images, and have it specify a coordinate pair, to simulate a touch screen, and make it manually enter an order that way as an employee would.
There's lots of ways to hook up the AI, and it's not actually that different from hooking up a normal POS system in the first place, although just because one method does allow an AI to interact doesn't mean it'll go about it correctly.