我认为使用Dialogflow的Node Fulfillment SDK可以以编程方式设置和删除上下文,并从其中提取参数。
我正在尝试收集多个参数的值,它们可以多次传入同一意图。以下代码在意图处理程序中运行:
contextParams = agent.context.get("seek-create-params-context").parameters;
currentParams = agent.parameters;
// merge will look for required params from both current and context
newParameters = merge(currentParams, contextParams);
agent.context.set({
name: "seek-create-params-context",
lifespan: 1,
parameters: newParameters
});
它提取在先前交互中传递的参数,将其与新的可用参数合并,并使用新的可用参数集重置上下文。
但是,现在,在每遍中,“ seek-create-params-context”不包含上次在newParameters
中发送的内容。他们确实根据上下文确定了正确的意图。
我究竟做错了什么?
我是否需要摆弄Dialogflow的UI来发送上下文参数?
基于真实日志的示例交互(已删除无关参数):
/*
First pass:
User msg doesn't contain any of params `value` or `product`
*/
// agent.parameters:
{}
// agent.context.get('seeking-params-expense-create').parameters:
undefined
// outgoing 'seeking-params-expense-create' params (lifespan 1)
{ value: '', product: '' }
/*
Second pass:
So far, so good.
Next pass, we receive `value`, but not `product`.
*/
// agent.parameters:
{ value: 50, product: '' }
// agent.context.get('seeking-params-expense-create').parameters:
{
'value.original': '50',
'product.original': '',
value: 50,
product: ''
}
// outgoing 'seeking-params-expense-create' params (lifespan 1):
{ value: 50, product: '' }
/*
Third pass:
This time, we want to use `value` from context since we
stored in last pass and seek `product` from user.
User only supplies `product` this time.
*/
// agent.parameters:
{ value: '', product: 'MRT' }
// agent.context.get('seeking-params-expense-create').parameters:
{
'value.original': '',
'product.original': '',
product: 'MRT',
value: ''
}
// outgoing 'seeking-params-expense-create' params (lifespan 1):
{ value: '', product: 'MRT' }
答案 0 :(得分:2)
您没有显示自己的Intent,但是看起来第二遍和第三遍都是由具有 both value
和product
参数的Intent触发的
如果Intent指定了参数,它将向Webhook传递一些东西,可能是空字符串。
它还将在当时处于活动状态的每个上下文中设置该参数,并将这些上下文也传递到webhook。即使上下文以前为该参数设置了一个值。
为了确保您的值不会被当前的Intent践踏,您应该将它们作为参数存储在Context中的任何Intent参数名称未使用的参数名称下。