3

我正在使用 API.AI 来实现助手应用程序,但现在我发现很难循环使用相同的意图来收集不同的用户输入(如果我的表达有误,请纠正我,会详细解释。)问题是,我有一个元素列表,每次我想为一个人分配一个确切的元素(通过使用输入 Assistant.getArgument() 收集),但是,我希望它每次都与用户交谈,例如“你想分配谁元素 X 到?(X 指列表中元素的名称)。我目前的实现是,创建一个单独的函数,让它提出问题,然后使用 while 循环在另一个函数中收集输入/赋值,在 while 主体结束时调用 ask 函数,但它不能作为API.AI 在响应中给出 Not Available。关于如何做到这一点的任何想法?让我知道是否有不清楚的地方。

这只是一个简短的代码片段,用于显示问题所在和我想要实现的目标。我想让它在 API.AI 中询问 4 次,获取用户输入,并将它们全部存储到输出字符串中。

var output = '';

    function do_sth(assistant){
        let get_name_input = assistant.getArgument('name');
        output = output + get_name_input + '.';
    }

    function test_repeat(assistant){
        for(let i = 0; i < 4; i++){
            assistant.ask('What is the name?');
            do_sth(assistant);
        }
    }
4

2 回答 2

2

问题是 Assistant 的编程是一个事件驱动的系统(每个 Intent 都是一个事件),并且您在服务器上使用assistant.ask()或结束事件的处理assistant.tell()。这会将您的回复发送回用户。ask()然后将等待另一个事件,whiletell()表示对话结束。

这意味着您不能将ask()结果放入循环中,也不能将结果存储在局部变量中,因为每个答案都会作为新事件返回给您(即 - 每次都对您的 webhook 进行新调用)。

这是一种方法。它由三部分组成:

  1. 用于首先使用操作调用 webhookname.entry并触发循环的意图(我的屏幕截图中的 name.init)。
  2. 当上下文处于活动状态时响应的意图(我的屏幕截图中的 name.loop)name_loop以获取名称并使用相同的操作将其发送到 webhook name.entry
  3. 用于处理name.entry意图的代码片段。

名称.init

名称.循环

代码

var loopAction = function( assistant ){
  const CONTEXT = 'name_loop';
  const PARAM = 'name';
  const VALUE = 'index';
  const NUM_NAMES = 4;

  // Get the context, which contains the loop counter index, so we know
  // which name we're getting and how many times we've been through the loop.
  var index;
  var context = assistant.getContext( CONTEXT );

  if( !context ){
    // If no context was set, then we are just starting the loop, so we
    // need to initialize it.
    index = 0;

  } else {
    // The context is set, so get the invex value from it
    index = context.parameters[VALUE];

    // Since we are going through the loop, it means we were prompted for
    // the name, so get the name.
    var name = assistant.getArgument( PARAM );

    // Save this all, somehow.
    // We may want to put it back in a context, or save it in a database,
    // or something else, but there are things to be aware of:
    // - We can't save it in a local variable - they will go out of scope
    //   after we send the next reply.
    // - We can't directly save it in a global variable - other users who
    //   call the Action will end up writing to the same place.
    loopSave( index, name );

    // Increment the counter to ask for the next name.
    index++;
  }


  if( index < NUM_NAMES ){
    // We don't have all the names yet, ask for the next one

    // Build the outgoing context and store the new index value
    var contextValues = {};
    contextValues[VALUE] = index;

    // Save the context as part of what we send back to API.AI
    assistant.setContext( CONTEXT, 5, contextValues );

    // Ask for the name
    assistant.ask( `Please give me name ${index}` );

  } else {
    // We have reached the end of the loop counter.

    // Clear the context, making sure we don't continue through the loop 
    // (Not really needed in this case, since we're about to end the
    // conversation, but useful in other cases, and a good practice.)
    assistant.setContext( CONTEXT, 0 );

    // End the conversation
    assistant.tell( `I got all ${index}, thanks!` );
  }
};
于 2017-08-14T23:47:33.170 回答
1

无需复杂化,如果我正确理解您要实现的目标,让我为您提供一个简单的解决方案。

用户可以选择 3 只宠物,狗、猫和兔子。并被要求以不同的方式命名它们。你想用一个意图来实现它,比如说pet_name。动作的名称 pet.name。

解决方案非常简单。在这些意图中创建 3 个参数(并通过选中该框将它们全部设为“必需”)。3个参数是dog_name、cat_name、rabbit_name。

现在启用该意图的实现,并在您的网络挂钩中获取所有参数。现在您可以直接在输出文本中使用它们。喜欢: outputtext = $dog_name." 对你的小狗来说是个好名字。告诉我更多信息"; (只有在 action=="pet.name" 时才能激活它)。

于 2017-08-16T03:24:28.647 回答