如何使用 Azure DevOps 管道 运行 刷新 LUIS 调度模型
How to use Azure DevOps pipelines to run Refreshing of LUIS Dispatch Model
我想使用 Azure DevOps 中的管道执行 "dispatch refresh",但是我找不到执行该过程的任何参考或文档。我想到了使用 Azure DevOps 中的管道来执行 "dispatch refresh" 来自 Whosebug 中此 question 中的评论之一。
非常感谢您的帮助。
要在Azure Devops中使用dispatch
,请先使用Command line
任务执行命令:
npm install -g botdispatch
安装完成后,您可以运行 refresh 命令:
dispatch refresh [options]
dispatch refresh --publishToStaging true --useAllTrainingData true
dispatch refresh --bot c:\src\bot\testbot.bot --secret <your_bot_file_secret>
如果您还不熟悉如何为您的机器人服务设置 CI/CD,您可以关注此博客:Setting up a Build and Release Pipeline for Azure Bot Service using Azure DevOps
由于您没有提供太多关于您的困惑的细节,如果这些不能帮助您,请随时发表评论。
我想使用 Azure DevOps 中的管道执行 "dispatch refresh",但是我找不到执行该过程的任何参考或文档。我想到了使用 Azure DevOps 中的管道来执行 "dispatch refresh" 来自 Whosebug 中此 question 中的评论之一。
非常感谢您的帮助。
要在Azure Devops中使用dispatch
,请先使用Command line
任务执行命令:
npm install -g botdispatch
安装完成后,您可以运行 refresh 命令:
dispatch refresh [options]
dispatch refresh --publishToStaging true --useAllTrainingData true
dispatch refresh --bot c:\src\bot\testbot.bot --secret <your_bot_file_secret>
如果您还不熟悉如何为您的机器人服务设置 CI/CD,您可以关注此博客:Setting up a Build and Release Pipeline for Azure Bot Service using Azure DevOps
由于您没有提供太多关于您的困惑的细节,如果这些不能帮助您,请随时发表评论。