Skip to content

Vehicle registration input

0

Wanting to know if there is something in AWS that can be built for when a person calls up and is asked to say their vehicle registration either alphabetically or NATO phonetic alphabet - Lima, Mike, Charlie. That the bot will be able to understand and register this to then serve up in the custom guide view if possible? Voice recognized interpretations,.

asked 2 years ago168 views

2 Answers
2

Hi,

That has been such a feature added to Amazon Lex some times ago: https://aws.amazon.com/about-aws/whats-new/2021/11/amazon-lex-spelling-support/

All details about spelling support in Lex are there: https://docs.aws.amazon.com/lexv2/latest/dg/spelling-styles.html

Best,

Didier

EXPERT

answered 2 years ago

0

Yes, AWS offers solutions that can be used to build a system for recognizing and processing vehicle registration inputs via voice, including phonetic alphabet inputs. This can be achieved by combining several AWS services:

  1. Amazon Connect: This can be used as the contact center solution to handle incoming calls.

  2. Amazon Transcribe: This service can be used for real-time speech recognition, converting the caller's spoken vehicle registration (whether alphabetic or NATO phonetic alphabet) into text.

  3. AWS Lambda: This serverless compute service can be used to process the transcribed text, interpret the phonetic alphabet if used, and convert it into the actual vehicle registration.

  4. Amazon Polly: While not directly related to input recognition, Polly can be used for text-to-speech output, potentially confirming the registration back to the caller using phonetic pronunciation for clarity.

  5. Amazon DynamoDB or another AWS database service: This can be used to store and retrieve vehicle registration information.

  6. Amazon API Gateway: This can be used to create, publish, and manage APIs that access your backend services, such as Lambda functions or DynamoDB tables.

To implement phonetic alphabet recognition, you would need to create a custom lexicon or use natural language processing techniques to map phonetic words (like "Lima" for "L") to their corresponding letters. This processing could be done within a Lambda function.

For serving up the information in a custom guide view, you could use Amazon Connect's contact flow designer to route the call and display the retrieved information to an agent, or use Amazon Lex to create a conversational interface that can understand and respond to queries about the vehicle registration.

Remember that while AWS provides the building blocks, you would need to design and implement the specific logic for interpreting phonetic alphabet inputs and matching them to vehicle registrations. Also, ensure that you comply with all relevant data protection and privacy regulations when handling vehicle registration information.
Sources
Guidance for Automotive Call Service on AWS
Using phonetic pronunciation - Amazon Polly

answered 2 years ago

You are not logged in. Log in to post an answer.

A good answer clearly answers the question and provides constructive feedback and encourages professional growth in the question asker.