The responsePrompts method gets the table of prompts that the conversation task returned at a particular stage of the conversation. A prompt is defined by a LuaUserPrompt object (see LuaUserPrompt Methods).
responsePrompts()
(list) A list of LuaUserPrompt objects.
local reply = first:responsePrompts()
return string.format("The first thing I said was \"%s\"", reply[1]:getPrompt())
This example finds and returns the first prompt in the first reply that the conversation returned.
|
|