0

我是新手Watson Assistant。我正在研究他们的nodejs car_workspace

我的要求是捕获员工编号并通过聊天机器人发送有关该员工的信息。

So first I need to capture the employee num in the nodejs code. And then get the required data from a predefined array. And finally, pass this to the Chabot for the requestor to see.

请帮助解决这个问题。

4

1 回答 1

1

您从聊天机器人捕获的员工编号可以存储在上下文变量中,然后传递给应用程序端以获取动态数据。下面的文档将通过维护状态帮助您开始构建客户端应用程序 https://console.bluemix.net/docs/services/conversation/develop-app.html#building-a-client-application

您还可以对外部应用程序或服务进行编程调用,并作为对话轮次中发生的处理的一部分取回结果。https://console.bluemix.net/docs/services/conversation/dialog-actions.html#dialog-actions

请参阅 Watson Assistant 文档中列出的示例应用程序以更好地理解它https://console.bluemix.net/docs/services/conversation/sample-applications.html#sample-apps https://developer.ibm.com/代码/模式/创建认知零售聊天机器人

于 2018-05-17T08:41:06.953 回答