Can I get Movi to Repeat what I say?

Hello,

I’m wondering I can get MOVI to repeat what I say.
For example:
If I say: Movi, Meet John.
MovI will say: Hello John, nice to meet you.
So Movi would take the name I say and say it in its sentence.

I was thinking something like this:

  recognizer.addSentence(F("Meet "(Name I say)" ")); //24 

 if (res == 24) {
recognizer.say("Hello" + Name I Say + "Nice to meet you");

Can this be done? (Preferably, without having to train a bunch of names).
If so, how would I go about doing it?

Thanks in advance.

Short answer is: No. You need to train everything in advance that MOVI can recognize.

Ok, thanks.