![]() |
submitted by /u/botpenguin1 [link] [comments] |
Year: 2021
-
ChatBot Narratives: What is the purpose of Chatbot? Chatbot uses
-
Chatbot best practices
KPIs, NLP training, validation &Â more
Anyone can build a chatbot. Most chatbot libraries have reasonable documentation, and the ubiquitous âhello worldâ bot is simple to develop. As with most things though, building an enterprise grade chatbot is far from trivial. In this post Iâm going to share with you 10 tips weâve learned through our own experience.
This is not a post about Google Dialogflow, Rasa or any specific chatbot framework. Itâs about the application of technology, the development process and measuring success. As such itâs most suitable for product owners, architects and project managers who are tasked with implementing a chatbot.
1. Know (and measure) your KPIs
Iâm stating the obvious here, but itâs really important to know what you want to achieve, and how this can be measured. Many of your KPIs will be sector or domain specific, but I will give you some chatbot specific KPIs to think about. Listed in order of importance:
User feedbackâââAsk your users if they are satisfied. This can be done during the dialog flow or at the end. Asking for feedback will give you two KPIs:
- Feedback rateâââthe percentage of users who provided feedback.
- Satisfaction rateâââthe percentage of those users who were satisfied. I generally recommend offering a binary choice âsatisfiedâ vs ânot satisfiedâ instead of a rating from 1 to 5, but the choice is yours.
Bounce rateâââThe percentage of users who abandon conversations midway.
Self service rateâââThe percentage of users who were able to achieve their goal without needing to chat, phone or email a human agent.
Return rateâââThe percentage of users who return to use the chatbot again.
Hourly usage distributionâââWhen are people using your bot? A bot that serves customers 24/7 is especially valuable as itâs usually prohibitively expensive to provide human cover 24/7.
There are also a couple of technical KPIs to think about:
Model accuracyâââIf you are using natural language understanding to understand messages you will need to measure the accuracy of your models. This is a complex topic and is best left to data scientists and experienced developers. One word of cautionâââdonât get too hung up on the technical measures of accuracy. Ultimately itâs the business KPIs that matter. A model that is 98% accurate is no use if users are dissatisfied with the service.
Response timesâââSpeed is not so important for a chatbot. You can work around slow performance by adding a âbot is typingâ type message to dialogs. Sometimes we even fake a delay to make the bot seem more human. Nevertheless, you want to keep an eye on performance to maintain acceptable response times.
Finally, itâs important to know which channel your users favour if you deploy an omni-channel chatbot. Being dependent on one third party channel, e.g. Facebook Messenger puts you in a vulnerable position.
2. Use human agents first
Like most technology, a bot is designed to automate tasks that would otherwise be done by a human operator. Before embarking on a chatbot itâs essentials that you know exactly what you are trying to automate. The best way of doing this is to first employ human agents to respond to your usersâ messages. Why do this?
To validate assumptionsâââyou (or your product owner) may have established your use cases or user stories, but how valid are they? How many users actually choose live chat to check their order status?
The 80/20 ruleâââusers will make all sorts of requests. Even for a particular use case, some requests will be so esoteric that it makes little sense to automate. For exampleâââyou will most likely want to handle postage and delivery type queries, but does your bot really need to handle queries about VAT on BFPO shipments? probably not.
To understand the tone of conversationsâââHow do your users interact over live chat? are they friendly or professional, do they use colloquialisms? Do they use emojis and text speak? Understanding the tone of conversations will allow you to develop a chatbot that your users are comfortable using.
To get training dataâââThis is probably the most important reason why you should use humans first. Even if youâre not planning to use natural language understanding you will still need data for keyword matching. If you are using NLU/NLP you will certainly need good training data. From what weâve seen, 80% of chatbots fail to meet expectations because they used synthetic training data, or a limited sample of real world data.
You may already employ human agents to serve your customers. If so, you probably need to tweak the data you log, and the way itâs structured (see below). If you donât yet employ human agents you can actually do this on a (relatively) small scale.
You donât need to serve all your customers manually before switching to a chatbot. What youâre after is a representative sample. For example, you may display a âlive chat nowâ button for one in 10 visitors.
Trending Bot Articles:
2. 4 DOâs and 3 DONâTs for Training a Chatbot NLPÂ Model
3. Concierge Bot: Handle Multiple Chatbots from One Chat Screen
3. Log (almost) everything
Ok, you need to be mindful of GDPR, so you canât log everything. For your purposes we donât actually need personally identifiable information. What youâre after is the phrases users use. In particular, youâre interested in:
- intentsââââi want to check my order statusâ. You can map intents to use cases/user stories.
- entitiesââââyes, a jacketâ. Entities (relevant nouns) form the basis of named entity recognition
- parts of speechââââI want a black or white dressâ. The adjectives, prepositions and conjunctions. You will use these to train your part of speech tagging models.
- sentimentââââIâm not happyâ or âthanks for your helpâ. You can use text classification and sentimental analysis to detect when users are satisfied or dissatisfied.
Ideally you will log conversations in a freeform database, something like elasticsearch would be great. Itâs important to log not only the messages but the wider context. i.e. you want to tie messages together into a conversation threads and identify the participants (user vs agent). Log the conversations during the initial human pilot phase and also during the full implementation. Youâll want to continually evaluate, refine and improve.
You should also log key events such as clicks and conversions and along with metadata such as timestamps, device used, ip address etc. Just careful that you donât breach GDPR via jigsaw identification
4. Make the most of your training data
If youâve followed our first piece of advice, you should have some decent training data. Now itâs time to put it to use.
You may want to split the conversations into 3Â parts:
- introâââthe first couple of messages e.g. âI want to check my order statusâ. Useful for intent and entity analysis
- bodyâââe.g. âlast Mondayâ. These messages may contain additional entities
- sign-offâââlast couple of messages e.g. âthanks for your helpâ. Useful for sentimental analysis
Next, apply clustering on the intro messages to identify common intents and entities. Following the 80/20 rule this will tell you where to focus your efforts.
Finally, use the data to train and test your NLU models or keyword matching algorithms. Take care when splitting the training and test datasets.
As mentioned in the first section, you may also want to analyse the data to understand the tone of the conversations. This will be useful when thinking how to word the questions your bot will ask.
5. Think about validation and error handling
Experienced IT professionals think carefully about validation and error handling when building apps or websites. You can usually rely on the UI to help enforce constraints. For example, by using a dropdown select box with the valid options. The challenge arises when trying to enforce the same constraints in a chatbot.
Quick replies
Some channels offer quick repliesâ prefilled responses which can act as a replacement for select dropdowns, radio buttons and checkboxes. Quick replies can be used as a means of constraining user behaviour, but should be used with care. Unlike dropdown boxes, the options are typically displayed horizontally or vertically and take up valuable screen real estate, especially on mobile devices. This makes them suitable for responses with only a few options.
In most cases you wonât be able to use quick replies. Even if they are a feasible option, a chatbot with lots of quick replies is nothing more than an app with a poor UI. As the name implies, quick replies should be used to help users respond quickly. They exist to make life easier for users, not developers.
Message validation
Free text entry is at the heart of a chatbot. Itâs unconstrained, so good validation and error handling is especially important. Rememberâââwhilst your NLU model may correctly identify an entity, this doesnât mean your downstream systems can handle it. 100 pounds or last monday are examples of entities that an NER model will probably recognise, but need transforming for downstream consumption.
6. Think how to handle more than one message
Hereâs the typical chatbot flow:
- Ask question
- Process reply
The problem arises when your users donât send a single message in reply to the question but several. Letâs take this simple example of a dialog between a customer and a human agent:
Agent: hello how can i help?
User: hi
User: i want to check my order status
User: order A123Now letâs see how this might look with a naive bot:
Bot: hello how can i help?
User: hi
Bot: Sorry i dont understand
User: i want to check my order status
User: order A123The bot asks the user a question, then tries to infer intent from the reply âhiâ. It canât make sense of this, so generates an error. There are a few workarounds:
Support chit chat
Basically you train the chatbot to recognise âchit chatâ type messages, which it can either reply to or simply ignore. Taking the example above, the bot would either ignore the âhiâ or reply with âhelloâ. Either way, it wouldnât generate an error.
Buffer incoming messages
Buffer all incoming messages. Wait until N seconds have elapsed since the last message. At this point concatenate all the buffered messages together into a single message and process it. Taking the above example it would look like:
Bot: hello how can i help?
User: hi
User: i want to check my order status
User: order A123
(wait N seconds)
Bot: Ok âŠIf the channel allows, you may be able to monitor the âuser is typingâ notification instead, setting N to a lower value. The downside to this approach is that the user always has to wait N seconds for a response which makes the bot seem unresponsive.
Buffer but short circuit
The same approach as described above, but instead of always waiting N seconds, you try to process the message buffer every time a message is received. If you can process it, you do so immediately, avoiding delay. Going back to the contrived dialog it would look something like:
Bot: hello how can i help?
User: hi
(canât process â wait)
User: i want to check my order status
(bingo)
Bot: Ok what is your order number?7. Use checkpoints
As well as validating each user response, you will want to set up various âcheckpointsâ. This means telling the user what the bot has understood and asking them to confirm this. For example saying something like:
âI understand you want to check the status of order number A123â
Of course, you need to think carefully about how you will handle a negative response. Simply repeating the same questions again and running the answers through the same NLU model or algorithm is unlikely to work. Many chatbots ask the user to rephrase their request in the hope that it will work second time around. We think this is a poor strategyâââthereâs no guarantee it will work, and itâs a poor user experience.
We believe there are two approaches that will yield better results:
Drill down
We call the first strategy the âdrill downâ approach. Start out by asking users open questions e.g. âhow can I help?â or âwhat are you looking for?â. Run the responses through the NLU models and algorithms and checkpoint the conversation.
If all is ok, great! If not, you move on to ask more specific, closed questionsâââprobably with some guidance. For example âdo you have a query about a return?â You will probably use a different set of NLU models or algorithms to parse these closed questions.
You wouldnât want to start out by asking this sort of question, because closed questions result in a lengthy dialog. Itâs much better for a user to say âI want a white dress in size 12â than answering multiple questions about the product, colour and size. The aim here is to gracefully handle the outliers that canât be served via the happy path.
Bailout
We call the second approach the âbailoutâ. Put simply if you canât understand the userâs needs you fall back to human intervention. See below for more details.
8. Augment your chatbot with human agents
What can you do with the outliers? Firstly itâs important the system recognises when itâs failing to meet the userâs expectations. For your users, thereâs nothing worse than talking to brick wall. One way of detecting this is to count the number of âsorry I donât understandâ type responses generated for each dialog. As mentioned above, checkpointing is also very important.
You canât expect your chatbot to be perfect, and it doesnât have to be. There will be cases where the chatbot doesnât understand the user due to an imperfect NLU model or algorithm. There will be instances where the bot simply lacks the business logic to fulfil the users request.
Providing a fallback or âbailoutâ to human agents is a great way of handling these edge cases. Youâre not trying to create the perfect chatbot, even if such a thing were possible. Youâre aiming to get the best return on your investment. These esoteric edge cases can be handled by a relatively small pool of human agents. Whatâs more, the conversations between the users and agents should be logged and will feed into your continuous improvement plan.
You donât necessarily need to offer live chat style support either. It may be enough to ask the user to email your sales or customer service team with their request.
9. Adopt a continuous improvement plan
The reason youâre logging the conversations is to build up training data, allowing you to build accurate models. To borrow a clichĂ©âââthis is a process not an event. Whilst the data captured during the initial âhumanâ stage gets you started, you need to retrain the models as you collect more data.
You may discover that your users interact quite differently with your bot vs human agents. Decades of Googling have conditioned people into using a terse form of language. Language intended to help the system understand their query. For example a user may tell a human agent âa white or cream cotton shirtâ but tell the bot simply âcotton shirt whiteâ.
Itâs also important to keep an eye on the KPIs and metrics.
10. Look for opportunities
Chatbots are freeform, users can say whatever they like. This presents challenges but also opportunities. Chatbots are great for market research.
Take for example, an e-commerce site for a clothing merchant. While viewing a dress the user can choose the colour: red or white. How can the user give feedback that they would like the same dress in black? They could fill out a feedback form or send an email, but theyâre unlikely to do this. More likely they will look for another dress or choose another merchant.
In contrast, an e-commerce bot could ask âwhat colour?â to which the user will reply âblackâ. The bot would tell the user that the dress is only available in red and white. However, it can suggest a similar dress thatâs available in black. Crucially the bot has captured the demand for a black version of the dress. If enough users ask for black, the buyers may decide its worth offering it next season.
Summary
Implementing an enterprise grade chatbot requires careful planning. Itâs important to understand the KPIs and business drivers before embarking on the project. Having a means of measuring success is also really important.
Getting suitable training data is essential and one of the best ways of doing this is to use human agents first. Careful logging and monitoring will allow you to improve the accuracy of your chatbot over time. As with all software applications, validation and error handling is very important. Chatbots have the potential to misunderstand users, so checkpointing is a useful double check.
Be prepared to adapt and evolve quickly, especially during the early days. Use A/B testing to find the dialog flows that work best. Retrain the NLU models as you collect more training data. Look for opportunitiesâââare users asking for use cases youâve missed? Is there demand for a product or variant youâre not yet selling.
Donât forget to give us your đ !
Chatbot best practices was originally published in Chatbots Life on Medium, where people are continuing the conversation by highlighting and responding to this story.
-
The Impact of Conversational AI: 2021 and Forward
Automation has consistently been one of the fastest-growing fields in the past decade and also one of the most influential trends. It has been continuously expanding into increasingly complex areas of business operations such as finance and compliance. In the past few years, automation has also become a part of customer relations and management with the help of a technology called conversational AIâââthe latter proving its importance during the pandemic.
In 2020, with companies being short-staffed globally, automation helped bring productivity and operations closer to 2019 levels but it wasnât just process automation on its own, conversational AI played a key role as well, both internally and externally. With that in mind, letâs take a closer look at conversational AIâs impact last year and its influence going forward.
What is Conversational AI?
In order to fully understand conversational AI, there are three broad concepts that we must know as well: artificial intelligence, automation, and computer speech. Speech is arguably the easiest concept to graspâââitâs teaching computers how we speak. Computers only speak in zeros and ones, we donât. Developers and scientists have been trying to bridge this gap by making computer speech more natural with the most progress being made recently with automation and artificial intelligence becoming a part of conversational tech.
Each of these technologies add more capabilities to conversational tech. For instance, AI enables the computer to process exponentially more data faster and significantly refine its speech. Furthermore, with machine learning, computers can âevolveâ and learn by making mistakes, although itâs too complex to explain in this article.
Likewise, automation allows the conversational tech to be integrated into complex workflows and be very useful in various areas including customer service, internal messaging systems, business intelligence (BI), analytics, etc.
Examples of Modern Implementations of Conversational AI In essence, itâs a technology that gives computers the ability to not only comprehend natural speech but also derive commands and take appropriate action without any direct input from the user.
Conversational AI Against Global Challenges
One of the most dominant themes of this global health crisis has been limiting human contact. In an ideal world, this would mean that businesses would pivot to operating by putting employees in contact with consumers. However, in the real world, this wasnât possible due to the heavy reliance on the human workforce.
However, some businesses used this challenge to put conversational AI to its biggest testâââreplacing human capital, albeit temporarily. From mobile AI assistants that allowed customers to check store inventory without visiting the store to health chatbots that enabled users to self-diagnose and take proactive health measures, a lot of chatbots were deployed last year to continue serving customers without exposing anyone to risk.
At the same time, the extended lockdowns and travel restrictions meant consumers spent over 50% more time on messaging services such as Facebook Messenger and WhatsApp. This also became an opportunity to put conversational AI through its paces. Businesses built applications for messaging platforms and social media platforms to bring important services closer to their fingertips. From placing grocery orders on Facebook Messenger to browsing shopping catalogs on Instagram.
Trending Bot Articles:
2. 4 DOâs and 3 DONâTs for Training a Chatbot NLPÂ Model
3. Concierge Bot: Handle Multiple Chatbots from One Chat Screen
Examples of Modern Implementations of Conversational AI during COVID-19
As you may imagine, the ability to not only parse documents and messages but to also take autonomous action has tremendous value to any businessâââitâs taking automation to a whole new level. On top of this, because the technology is rather open-ended and the implementation-dependent on the business itself, possibilities are virtually limitless. That said, the use of conversational tech is, for now, most concentrated in a few key business areas including customer service and engagement, business intelligence, and sales.
What is Conversational AI and How Does it Work? Weâll take a look closer look at examples of conversational AI in these areas but before, letâs answer the important question of how conversational AI is actually implemented. Since this technology is most useful when users are able to âtalkâ to it directly, one of the most popular implementations of conversational AI is a chatbot. A chatbot is an umbrella term covering different types of bots but the ones weâre interested in are usually referred to as AI chatbots. Chatbots arenât new and have existed for well over a decade but with new technologies like natural-language-processing (NLP), developers are able to infuse artificial intelligence to make chatbots far more capable. At the same time, almost all major social media and messaging platforms have chatbot support.
Letâs now take a closer look at some of the most popular examples of conversational AI implementations:
Customer Engagement Bots
Today, you can find more than a handful of companies selling the same product/service at the same price. With so little product differentiation, customers have begun basing their buying decision on customer service. In fact, according to Microsoft, customer service expectations for more than half (54%) of consumers have increased globally.
Customer service/engagement bots are thus built with one purposeâââto open up a two-way communication channel that offers consumers a unique and valuable shopping experience. Customer service bots are most commonly known for providing business/product-related information in a question-answer format but there have been some very creative implementations of customer bots as well.
Take, Nikeâs Stylebot for example. Itâs an AI chatbot that helps customers find, personalize, and even create their own shoe designs. Although customers could buy shoes using the bot as well, its main purpose was to engage with the customers and it did that very wellâââachieving a click-through rate (CTR) 12.5 times more than Nikeâs average CTR and also 4 times the conversions.
Business Intelligence Bots
Business intelligence is a field bringing together analytics, big data, and data visualization to help decision-makers gain visibility inside and outside their company. Most companies deploy dozens of BI tools ranging from relatively simple (GSuite) to custom-built platforms. However, most of these BI tools lack integration which means deriving insights from the data in different tools is still time-consuming and manual.
Conversational Business Intelligence BI bots use conversational tech and artificial intelligence to trigger complex automated workflows and interpret commands from normal speech and text. For instance, with just a simple text-based message, BI bots can autonomously:
- track and send live updates about lockdowns, COVID-19 cases, supply chain disruptions, etc.
- scan large data sets and find specific documents
- share documents securely
- visualize raw data into tables and charts
- gain crucial insights into customer behavior and buying trends
Sales Bots
AI chatbots for sales is one of the most valuable implementations of conversational AI as it has a direct impact on a companyâs bottom line. The purpose of sales bots is to make online shopping more convenient and engaging for the customer. Since an increasing number of customers spent more time on messaging and social media platforms, companies deployed chatbots to bring products where their customers now were.
One of the most popular examples of a feature-rich sales chatbot is SnapTravel. In addition to deploying AI chatbots to all major messaging platforms including Facebook Messenger, WhatsApp, and SMS, the travel company has also developed RCS chatbots, allowing consumers to check hotel reservations and flight status, book tickets, and much moreâââthrough the default SMSÂ apps.
Conversational AI Beyond the Pandemic
Implementing any new technology is a long-term investment which begs the question: will conversational AI still be a viable alternative once things go back to ânormalâ. Consumer behavior trends in 2021 indicate that conversational tech will not only survive after the pandemic but also thrive. Take a look at the following global trends:
- New Generational Behaviorisms
Millennials but especially Generation Z are growing up with smartphonesâââtheyâre absolutely used to the convenience of having the world at their fingertips and itâs going to be essential to cater to these habits.
Furthermore, these demographics actually prefer talking to AI chatbots rather than human sales representatives.
Conversational AI and COVID-19 - Productivity and Efficiency
There are hundreds of ways automation improves productivity and efficiency but conversational AI takes this one step furtherâââenabling automation in places where it normally wouldnât be possible. For instance, LâOrĂ©al used an AI chatbot to free up 200 hours (a whole working month) while shortlisting 80 interns from a talent pool of 12,000.
- Cost Savings
Apart from the indirect cost savings associated with time savings, conversational AI can reduce costs directly by automating a number of tasks in business intelligence (BI), marketing, CRM, and more, thereby reducing dependence on permanent staff. Additionally, conversational AI is more secure, less error-prone, and generally more reliable at handling routine tasks.
- Rise of Online Shopping
Online shopping has been on a steady rise for the past decade and will continue to grow at a fast pace. Furthermore, the pandemic forced a lot of new demographics to shop online for the first time, most of whom will continue shopping online even after the pandemic is over.
- Consumer Engagement
According to KPMG, personalization is the biggest factor in customer loyalty, and we predict that personalization will be one of the most important business trends of this decade as companies adopt more and more technologies that allow them to communicate on a one-to-one basis economically. Conversational AI is one such technology. Furthermore, maintaining a two-way is paramount to increasing brand loyalty and in turn, sales. This isnât possible with traditional business messaging.
How can a brand benefit from Conversational AI?
The changing consumer preferences and needs are enough to prove that conversational AI is here to stay but it doesnât just end there. Conversational AI also ties in extremely well with various dominant trends of this decade, making it a key tool in the modern marketing arsenal. Itâs a scalable, reliable, and evolving technology that opens up new possibilities to aid in internal decision-making, increase brand loyalty, reduce costs, and most importantly, offer a personalized shopping experience that helps you stand out from the crowd.
Conversational AI has numerous benefits for businesses in 2021 but the most important benefit is conversational AIâs role in differentiating your product or service from the rest. It helps businesses cater to the need for instant gratification by providing solving a wide variety of customer queries instantly. It also enables the business to improve brand loyalty through a more personalized communication channel without any significant increase in CRMÂ costs.
To get started with Conversational AI, consider contacting the Master of Code. If youâd like to learn more about chatbots and how they can be tailored to your exact business model, schedule a free discovery session today with one of our experts today.
Donât forget to give us your đ !
The Impact of Conversational AI: 2021 and Forward was originally published in Chatbots Life on Medium, where people are continuing the conversation by highlighting and responding to this story.
-
OCR: Give Eyes to Your Chatbot
We live in a world where robots are increasingly common. There are chatbots on the company websites and machines that build cars and other equipment by themselves. More and more are the tasks that these agents can perform, and OCR is one of them.
This article tells you what OCR is, its applications, and how your companyâs chatbots can use it.
What is OCR?
OCR stands for Optical Character Recognition.
Itâs a technology widely used in Artificial Intelligence, Computer Vision, and pattern recognition.
As the name implies, this technology allows a machine to read the text in images and convert this information into code that the system understands.
The text can be printed, handwritten, or typed, and the conversion can be done from scanning or photography.
It can also, for example, read captions superimposed on an image, as is the case with movie subtitles.
The Origins of OCR
According to Schantz (1982), the first forms of OCR were related to telegraphs and reading devices for blind people.
To make such recognition possible, the first versions of this technology had to be trained with images of every character and every existing font.
In 1914, Emanuel Goldberg developed a machine that read characters and converted them into standard telegraphy code.
A few years later, entering the 1930s, Goldberg invented and patented the âStatistical Machine.â This used OCR code to search microfilm files. A while later, IBM bought that same patent.
The Applications of OCR by Sector
Today, OCR systems are already quite effective and capable of easily recognizing any text. That said, their use covers various sectors and purposes.
Banking sector
Reading and Extracting Information of checksââârecognizes account number, written amount, and signature. Moreover, itâs used on procedures containing large volumes of documentation.
Insurance Sector
Like in banking, OCR can do information extraction on documents such as accident reports, collecting the cars involved in the claim, the signatures of the responsible parties, etc.
Retail Sector
You no longer have to carry around all the promotional stubs every time you go to the supermarket. Today, most supermarkets already have virtual receipts that can be scanned using OCR to extract the serial number.
Other Applications
Traveling
These days, you hardly need to learn other languages anymore, because technologies take care of that for you. This is the case with automatic translations.
There are more and more applications where you point the camera of your smartphone at a label, for example, and you have all the information translated into your language.
These tools are also useful when traveling, and you want to read the indications on signs, such as geographical names.
Besides, you already see many automated systems at airports, where machines do the ticket verification without the need for human intervention.
Trending Bot Articles:
2. 4 DOâs and 3 DONâTs for Training a Chatbot NLPÂ Model
3. Concierge Bot: Handle Multiple Chatbots from One Chat Screen
OCR Technology in Chatbots
What are chatbots?
Chatbots (conversational robots) are virtual agents with Artificial Intelligence that automate communication processes. Companies widely use these types of bots in their services, such as Customer Support.
These agents need certain technologies, such as Machine Learning and Natural Language Processing, to understand and respond to us.
It may be interesting to consult the articles below to learn more about these technologies:
Furthermore, if you want your chatbot to perform other tasks, such as reading documents, you need to include OCR technology.
The Visor.ai OCR Use Cases
Visor.ai integrates, according to the customersâ needs and requirements, the OCR technology in its solutions.
Heineken Use Case
OCR can be an exciting capability for a chatbot to have, namely in marketing campaigns. Take the example of Heineken.
Heineken launched a campaign where consumers had to send a photo, via chatbot, as proof of purchase of their beers. After the receipt validation, the chatbot would award prizes to users.
You can read more about this case study here.
Email bots Use Case
Another automation solution that Visor.ai offers is email bots.
Email bots are solutions that automate processes that take place, in this case, in the emails that companies receive.
Itâs an ideal solution for companies with high volumes of email contacts.
Besides reading the emails, categorizing, and forwarding them to the specialized service departments, these bots also read and check the documentation attached to the email.
That is, imagine you have an insurance company and a customer wants to report a car accident.
To do this, he/she needs to send, for example, the claim registration document and the identification document. However, the customer has only sent the claim document.
In this case, the bot reads the attachment, checks to see if the user properly filled out the documents. And, if the ID document is still missing, asks the user for it.
Only when it has all documents present and well filled out, the email bot pass the case to a human assistant.
Conclusions
OCR technology allows your chatbot or email bot to read and extract information from images/documents that have text.
With this capability, their complexity increases, and they become more efficient as they automate processes that take a lot of time away from their teams.
Whichever Visor.ai solution youâre interested in, talk to us, and weâll be glad to look at the options that fit you best!
Donât forget to give us your đ !
OCR: Give Eyes to Your Chatbot was originally published in Chatbots Life on Medium, where people are continuing the conversation by highlighting and responding to this story.
-
Help Please- New AI Chatbot implemented and errors during UAT
Our company www.Idiya.co.nz took the services of a Chatbot provider and during my testing as a client itâs behaving unexpectedly. Iâm not a programmer or web developer but a digital strategist. Some errors are: 1. There is huge latency 5+ seconds while returning the response or results. 2. Generic error message âsomething went wrongâ, when the user tries to search for a particular product in the bot.
They are attributing all these errors to a slow server (Kinsta), and that the server isnât able to handle too many requests. I find it hard to believe as the bot hasnât even pushed to production.
The bot is on the staging site and I can also name the provider over a PM, but can anyone help me with some insight?
submitted by /u/ayush8727
[link] [comments]