指定属性“influence_conversation”的值为true或者false可以决定这个slot是否能够影响到对话流程。如果你不想让定义的slot影响对话,那么使用:
influence_conversation: false
下面的示例中,对话机器人每次在预测下一个action时都会忽略掉slot "age"的值:
slots:
age:
type: text
# this slot will not influence the predictions
# of the dialogue policies
influence_conversation: false