recognition speech is not recognising user utterances properly with dialogflow integration

  • Thread starter Thread starter Android Central Question
  • Start date Start date
A

Android Central Question

I am facing an issue while implementing dialogflow integration with android custom app. Sometimes recognition engine identifies user utterances properly and most of the time it's doesn't. So how can we improve the recognition engine so it can understand user utterances more accurately. I have used android dialogflow sdk for integration but this link doesn't solve my issue.

One more solution i found is that we can use google's prompt using android Intent which has better recognition engine. here is the code for android Intent which generates a pop-up and it recognise user utterance more appropriate.

below is the code for google's prompt:-

Intent intent = new Intent(RecognizerIntent.ACTION_RECOGNIZE_SPEECH);
intent.putExtra(RecognizerIntent.EXTRA_CALLING_PACKAGE, getClass().getPackage().getName());
intent.putExtra(RecognizerIntent.EXTRA_PROMPT, "Say hi or hello");
intent.putExtra(RecognizerIntent.EXTRA_LANGUAGE_MODEL,
RecognizerIntent.LANGUAGE_MODEL_FREE_FORM);
intent.putExtra(RecognizerIntent.EXTRA_MAX_RESULTS, 10);
startActivity(intent);
But the issue is how can we integrate android intent with AI Services to use dialogflow so that we can configure AI Services like Language support, Recognition engine type and access token of dialogflow

Can anyone help me on this please?
 
Hi, welcome to Android Forums

I'd like to recommend creating a account so me or other members can assist you, as guest have limitations in replying here and if we need further Information to communicate with you.

I'll provide a link to register, please come back to your post so we can further assist you . Thank you


https://forums.androidcentral.com/showthread.php?t=409154
 
Hi everyone,
I am new to the community. So i don't know ethics of posting a question. Please forgive me if i have made a mistake.
Can anyone help me to solve my query please?
 
Welcome to Android Central.

Are you having issues with an app you installed, or are you a developer who is having issues with your own app?