7 ms·
If I am trying to interact with a company and they direct me to their chatbot, I expect that chatbot to provide me with accurate answers 100% of the time (or to
by ado__dev 3y ago
If I am trying to interact with a company and they direct me to their chatbot, I expect that chatbot to provide me with accurate answers 100% of the time (or to say it can't help me in the event that I ask a question that it's not meant to solve, and connect me to a representative who can).
If I have to double-triple check elsewhere to make sure that the chatbot is correct, or if anything the chatbot tells me is non-binding, then what's the point of using the chat bot in the first place? If you can't trust it 99% of the time, or if the company says "use this, but nothing it says should be taken as fact", then why would i waste my time?
If a company is going to provide a tool, they should take responsibility for that tool.
- steveBK123 3y agoYes, I think people underestimate the amount of imagined LLM use cases that require accurate responses. To the point that hallucinations will cost money in fines & lawsuits. This is a new frontier in short sighted customer service staffing (non-staffing in this case). The people who are on the frontline communicating with customers can convert unhappy customers to repeat customers, or into ex-customers. There's a few brands I won't buy from again after having to jump through too many hoops to get (bad) warranty service.
- jowea 3y agoThe fines and lawsuits may be way cheaper than human staff.
- jorisboris 3y agoEspecially once we have ai lawyers ;)
- kingo55 3y agoJudge, I'll refer you to my legal chatbot. I rest my case.
- mortenjorck 3y agoYour selection of generative counsel has been confirmed. Please do not navigate away from this page while the trial runs. You will receive a notification when the verdict has been reached. This may take up to a minute.
- jowea 3y agoThank you for the best 2 paragraph cyberpunk story.
- photonthug 3y agoThis initially sounded pretty good until I thought it through. Democratizing access to council and forcing troll lawyers to deal with trolling bots seems good but it will shape up like other spam arms races while legal systems gear up to deal with the ddos attacks. Good for spammers and most entrenched players, bad for the public at large. Already we can’t manage to prosecute ex presidents in a timely manner before the next election cycle. If delays seem absurd now what will it be like when anything and everything remotely legal takes 10+ years and already sky-high costs triple?
- the8472 3y agoDon't worry, AlphaJudge will provide swift justice at scale.
- TechSquidTV 3y agoWith RAG it's entirely possible to essentially eliminate 100% of hallucinations, given you are ok with responding with "I don't know" once in a while. These situations are likely coming from poorly implemented chatbot, or they decided that "I dont know" was not acceptable, and really that should be a queue to send you to a real human.
- jerpint 3y agoThere are no guarantees with RAG either, and RAG only works when the answer to the question is already printed out somewhere explicitly in the text, otherwise it’s definitely prone to hallucinate
- alexxys 3y agoYeah, RAG can't provide such guarantees. Moreover, even if the correct answer is printed somewhere, LLM+RAG still may produce wrong answer. Example from MS Copilot with GPT-4: https://sl.bing.net/ct6wwRjzkPc https://sl.bing.net/ct6wwRjzkPc It claims that OnePlus 6 has 6.4-inch display, but all linked pages actually claim that it's 6.28. Display resolution and aspect ratio are also wrong in the response.
- steveBK123 3y agoIt's funny it seems to have a lot of trouble extracting tabular data, which arguably is one of the things I hear people trying to do with it..
- sebastiennight 3y agoThis claim seems wildly inaccurate, as even with GPT-4 in a single conversation thread with previous human-written answers included, a repeat of a similar question just resulted - in my testing today - in a completely hallucinated answer. I think your claim might be based on anecdotal testing. (I used to have that same feeling after my first implementation of RAG)... Once you get a few thousand users running RAG-based conversations, you quickly see that it's "good enough to be useful", but far from being as dreamy as promised.
- citizenpaul 3y ago>that hallucinations will cost money in fines & lawsuits. Sure. They are now out about $600. They probably already laid off 500+ customer service jobs costing conservatively 30k a year each. Not including mgmt,training,health,ect. I don't think it will make a difference to the ivory tower C levels. We will just all get used to a once again lower quality help/product. Another great "enshitification" wave of the future with "AI" It also assumes that the customer service people dont make mistakes at a similar level anyway. Another "new normal" How come anything that is "new normal" is never good?
- eru 3y ago> Another "new normal" How come anything that is "new normal" is never good? If it allows them to reduce costs (and there's enough competition to force them to pass that on as reduced prices), I'm fairly happy with a new normal. See also how air travel in general used to be a lot more glamorous, but also a lot more expensive.
- lamontcg 3y ago> and there's enough competition to force them to pass that on as reduced prices i found the bug.
- eru 3y agoCynicism aside, air travel is one of the industries with pretty healthy levels of competition. (At least in Europe and South East Asia. I haven't spent much time in North America, so can't judge the market there.) People love to hate eg RyanAir, but their effect on prices is felt throughout the industry; even if you never take a single RyanAir flight.
- citizenpaul 3y agoYeah they pass those cost saving right onto record corporate profits for the last 20 years...
- 3y ago
- wongarsu 3y agoIt's not like human call center staff has never given anyone wrong information, or cost companies money in fines and lawsuits. The bar LLMs have to clear to beat the average front line support operations isn't that high, as your own experience shows. And compared to a large force of badly paid humans with high turnover, LLMs are pretty consistent and easy to train to an adequate level. They won't beat great costumer support agents, but most companies don't have many of those
- itsoktocry 3y ago>It's not like human call center staff has never given anyone wrong information, or cost companies money in fines and lawsuit A human will be more likely to say "I don't know" or pass you along, rather than outright lie.
- KiranRao0 3y agoI find it common for human customer support people to give inaccurate information. I don't know about "outright lying", but I've had people tell me things that are factually incorrect.
- atoav 3y agoDepends. Saying "thing X should not fail" is factually incorrect, when you called because thing X failed. However I would not expect an airline customer support to make up a completely fictional flight that has never existed. Maybe they could confuse flights or read a number wrong, but making one up?
- erhaetherth 3y agoHumans won't fabricate too much but when confronted with yes/no questions and they have a 50-50 shot of being right and any blowback will likely be on someone else....they'll answer whatever to get you out of their hair. Case in point, I asked my bank if they had any FX conversion fees or markup. Guy said no. I asked if there was any markup on the spread. Said no. Guess what? They absolutely mark up that spread. Their exchange rates are terrible. Just because there isn't a line-item with a fee listed doesn't mean there isn't a hidden fee in there. He's either incompetent or a liar.
- m_0x 3y ago> If you can't trust it 99% of the time A chatbot should be either 100% or 0%. Companies should not replace humans with faulty technology.
- ado__dev 3y agoAgree there. I put 99% as even human reps sometimes get it wrong, but in my experience whenever a human agent has made a mistake and relayed wrong info, the company would take appropriate steps to meet me at least half way.
- canadiantim 3y agobut humans aren't 100% either... seems ridiculous to demand 100% from any implementation
- dukeyukey 3y agoIf a human customer support person told me something and I made purchases based on that, and it turned out they lied, yeah I'd want recompense for that as well. You're allowed to be wrong (AI or human), you just have to face consequences for it.
- jorisboris 3y agoI had that once with an airline, customer rep made promises and afterwards they refused Coincidentally the audio recording of the conversation was apparently deleted …
- ihattendorf 3y agoMaybe don't demand 100%, but instead responsibility for incorrect information.
- Retric 3y agoA company is partially bound by their representatives actions, so humans can hit 100% despite making mistakes. This is simply applying the exact same standards to a chat bot.
- emodendroket 3y agoAbsolutely. That’s the big problem with the race to shoehorn generative AI into everything. If it has to be right the tools aren’t good enough yet.
- mattlondon 3y agoThis is true of all LLMs: you cannot trust a single thing they say. Everything needs to be checked - from airline fee information to code. I expect we'll see this sort of thing a lot more in the future, and probably a bit of a subsequent reversal of all of the sackings of humans once the issues (... and legal liability!) becomes clearer to people.
- tgsovlerkhgsel 3y agoUnfortunately, my impression is that human customer support often works just as well as a current-generation chatbot: They'll tell you what you want to hear, because they get rated by customer satisfaction. You get the survey, indicate that your request was resolved to your satisfaction, the agent gets their bonus... and a week later you realize everything you have been told was a lie. This got so bad that when a customer support agent at Amazon genuinely resolved my issue well once, I was surprised that it actually worked out as promised.
- Affric 3y agoReally depends on the company. Generally, for high quality on shore call centres, you do not use customer satisfaction as a metric for individual agents. You’d use first contact resolution, average handle time, and their ability to stick to the flow they’re meant to (like transferring the customer to a survey after the call). Like you say, satisfaction encourages lies. Much like sales commissions.
- JoshTriplett 3y ago> If I am trying to interact with a company and they direct me to their chatbot, I expect that chatbot to provide me with accurate answers 100% of the time (or to say it can't help me in the event that I ask a question that it's not meant to solve, and connect me to a representative who can). If I'm trying to interact with a company and they direct me to a chatbot, I expect to get useful help 0% of the time, because if help was available via a mechanism on their site I would already have found it. I expect a chatbot to stall me as long as possible before either conceding that I need a human's assistance or telling me some further hoop to jump through to reach a real human.
- eru 3y agoHonestly, that's pretty similar to dealing with front-line level 1 human support.
- JoshTriplett 3y agoI have a slightly higher expectation that first-line tech support can solve my problem if the problem is "you really should have had a self-service way to do this on your website but I'm sure you have a tool for this". And if that isn't the case, I've mostly found that contrary to stereotype, many first-line tech support people are not such rote script-followers that they can't deal with skipping most of the script when the problem is obviously on their end and going to need real human intervention.
- dataflow 3y ago> then what's the point of using the chat bot in the first place? The point is quite literally to make you give up trying to contact customer service and just pay them money, while getting their legal obligations as close to a heads-I-win, tails-you-lose situation as possible. That's not the mysterious part. The mysterious part is, why did they even let this drag into court for such a small sum?!
- potatolicious 3y ago> "The mysterious part is, why did they even let this drag into court for such a small sum?!" Because most people wouldn't bother taking it to court. If they rolled over and paid up every time their chatbot made a mistake, that gets expensive, and teaches customers that they can easily be compensated if the chatbot screws up. If they fight it tooth and nail and drag it all the way to court, it teaches customers that pursuing minor mistakes is personally painful and probably not worth it. Scorched-earth defense tactics can be effective at deterring anyone from seeking redress. It's the same fundamental reason why customer support is so hard to reach for many companies - if you make it painful enough maybe the customer will just not bother. A valuable tactic if your company imagines customers as annoying fleshy cash dispensers that talk too much. Having flown many times with Air Canada I can confirm that they do seem to perceive their passengers as annoying cash dispensers.
- dataflow 3y ago> Because most people wouldn't bother taking it to court. Wait, couldn't they have tried to settle as soon as they realized it was actually going to court? I thought that was the modus operandi in the US... is it not a thing in Canada?
- erhaetherth 3y agoWell...they lost, and now it made the news. Are they going to keep the chatbot? Is the judge going to so lenient next time, now that there's precedent of wrongdoing?
- smegger001 3y agoTo disincentivize anyone from calling them on their be in the future. If I know I will have to drag them through court just to get even a low payout I will be less likely to fight as its not worth the hassle.
- gwbas1c 3y agoMy internet went down and I could only get a chat bot on the Web site or a hang up on the support line. After the "estimated fix by ETA" came and went, I reported my ISP to the FCC. That resulted in a quick follow up from a real human.