responsePrompts
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).
Syntax
responsePrompts()
Returns
(list) A list of LuaUserPrompt
objects.
Example
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.