简体   繁体   English

微软机器人框架技能

[英]Microsoft Bot Framework Skill

Is it possible to have a separate dispatcher for skill (dispatch template and QnA model of its own)?是否可以有一个单独的技能调度员(调度模板和自己的 QnA 模型)? I am not seeing this option in the skill template.我在技能模板中没有看到这个选项。 Also if I can configure one how do you make it work with a parent LUIS dispatcher?另外,如果我可以配置一个,您如何使其与父 LUIS 调度程序一起工作? I am very new to skills and following the below documentation ... https://microsoft.github.io/botframework-solutions/skills/tutorials/customize-skill/csharp/1-intro/ Thanks我对技能非常陌生,并遵循以下文档... https://microsoft.github.io/botframework-solutions/skills/tutorials/customize-skill/csharp/1-intro/谢谢

Just to provide more context to the Dispatch model in Virtual Assistant as you are new to skills.只是为了在您不熟悉技能时为 Virtual Assistant 中的 Dispatch 模型提供更多上下文。

The Dispatch model brings together the LUIS models and QnAMaker Knowledge bases into one experience by extracting utterances from each configured LUIS model and questions from QnA Maker and then creating a central dispatch LUIS model . Dispatch 模型通过从每个配置的 LUIS 模型中提取话语和从 QnA Maker 中提取问题,然后创建中央调度 LUIS 模型,将 LUIS 模型和 QnAMaker 知识库整合到一种体验中。 The Dispatch model is used at the core of each project created using the template. Dispatch 模型用于使用模板创建的每个项目的核心。 It is referenced within the MainDialog class to identify whether the target is a LUIS model or QnA .在 MainDialog 类中引用,以识别目标是 LUIS 模型还是 QnA In the case of LUIS, the secondary LUIS model is invoked returning the intent and entities as usual.在 LUIS 的情况下,调用辅助 LUIS 模型,像往常一样返回意图和实体。

Dispatcher is also used for interruption detection and Skill processing whereby your Dispatch model will be updated each time you add a new Skill . Dispatcher 还用于中断检测和 Skill 处理,每次添加新 Skill 时,您的 Dispatch 模型都会更新 The Virtual Assistant integrates Skill support for your assistant, enabling you to easily register skills through the execution of the botskills command-line tool.虚拟助手为您的助手集成了技能支持,使您能够通过执行 botskills 命令行工具轻松注册技能。 The ability to trigger skills based on utterances relies heavily on the Dispatcher which is automatically provisioned as part of your assistant deployment .基于话语触发技能的能力在很大程度上依赖于 Dispatcher ,它作为助手部署的一部分自动提供

I would suggest you to read through the following this documentation to get a hang of the terminologies and components involved and then follow the tutorial.我建议您通读以下文档以掌握所涉及的术语和组件,然后按照教程进行操作。

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM