本文介绍了如何将IBM Watson Assistant与Watson Discovery链接的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我希望使用标题中列出的两个服务创建一个聊天机器人.Watson助手用于为聊天机器人创建对话框,而Watson Discovery允许在各种文档(例如.html,.pdf文件)中查找信息.我想制作一个使用这两项服务的聊天机器人.

I wish to make a chatbot using the two services listed in the title. Watson assistant is used to make the dialog for the chatbot while watson discovery allows for finding information in a large variety of documents such as .html, .pdf files. I want to make a chatbot that uses these two services.

聊天机器人的工作方式是,当用户对聊天机器人说一些话时,它将通过沃森发现并运行该查询,然后将结果返回给用户.

The way the chatbot would work is that when a user says something into the chatbot, it will go through watson discovery and run that query which will then return results back to the user.

我目前知道如何使用Watson Discovery和Watson Assistant,但是我不知道如何将它们链接在一起.我知道这是有可能的,因为我已经看到了有关此演示程序的演示,但是进行这些演示的演示人员却缺乏生产聊天机器人的说明.

I currently know how to use Watson Discovery and Watson Assistant but I am unaware how to link them together. I know its possible because I have seen demos on this but the ones who have made those demos give a lack in instructions to produce the chatbot.

推荐答案

您可能想看看Watson Assistant中新的搜索技能"功能.尽管它仍处于Beta阶段,但它提供了开箱即用的助手和发现之间的无缝集成.

You might want to look at the new "Search Skill" feature in Watson Assistant. Though it is still in Beta phase, it provides a seamless integration between Assistant and Discovery out of the box.

https://cloud.ibm.com/docs/services/assistant?topic = assistant-skill-search-add

它仅适用于高级或高级计划用户.

It is available to Plus or Premium plan users only.

或者,您也可以签出此代码. https://github.com/watson-developer-cloud/assistant-with-发现

Alternatively you can check this code out.https://github.com/watson-developer-cloud/assistant-with-discovery

这篇关于如何将IBM Watson Assistant与Watson Discovery链接的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

09-11 20:38