我现在说 - 我的名字是约翰史密斯。
我的意图映射为 --> 我的名字是 {input}
然而,Alexa 只捕捉到最后一个词(在这种情况下是 Smith)。我希望输入值是“John Smith”而不仅仅是“Smith”。
name = intent["slots"]["input"]["value"]
print("Slot value is " + name)
speech_output = str(name) + " is what you spoke"
如何使用单个插槽实现此目的?