gpt4 book ai didi

azure - 有没有办法使用 ARM 模板完全自动化基于 QnAMaker 的 Azure Bot

转载 作者:行者123 更新时间:2023-12-03 00:00:35 25 4
gpt4 key购买 nike

我正在寻找一种解决方案,我应该能够在 ARM 模板的帮助下完全创建和配置 Azure 机器人(它应该包括创建资源、知识库和 Web 应用程序机器人)

  • 我有 ARM 模板,可以在门户上创建/自动化所需的认知服务、应用服务、应用洞察和搜索服务
  • 创建的服务已正确配置,所有应用设置都是动态的并具有正确的引用。
  • 下一步应该允许在同一执行中通过一些自动化脚本(最好是 PowerShell)创建知识库,尽管有脚本可用于创建知识库,但我不确定如何获得最新创建的OCP APIM key 并使用它来创建知识库。

我的问题是:

有什么方法可以完全自动化

  1. 资源创建
  2. 创建知识库
  3. 创建网络应用机器人

在单个自动化脚本内由于它们是相互依赖的(服务上的知识库,知识库上的 Web 应用程序机器人),我几乎找不到实现此目的的相关文章。

谢谢。

最佳答案

使用通过 ARM 部署的 QnAMaker 服务创建知识库。我们现成的 ARM 模板可供使用 here : https://github.com/Azure/azure-quickstart-templates 。下面的端点 key 插入到 qna 制造商应用服务的应用配置中。

{
"type": "Microsoft.Web/sites",
"apiVersion": "2016-08-01",
"name": "[variables('qnaMakerWebName')]",
"location": "[resourceGroup().location]",
"properties": {
"enabled": true,
"httpsOnly": true,
"siteConfig": {
"cors": {
"allowedOrigins": []
}
},
"name": "[toLower(variables('qnaMakerWebName'))]",
"serverFarmId": "[resourceId('Microsoft.Web/serverfarms', variables('serverFarmName'))]",
"hostingEnvironment": ""
},
"tags": {
"isqnamaker": "true",
"solution": "[parameters('resourceSolutionTag')]",
"[concat('hidden-related:', resourceId('Microsoft.Web/serverfarms', variables('serverFarmName')))]": "empty"
},
"dependsOn": [
"[resourceId('Microsoft.Web/serverfarms', variables('serverFarmName'))]",
"[resourceId('microsoft.insights/components', variables('appInsightsName'))]",
"[concat('Microsoft.Storage/storageAccounts/', variables('storageAccountName'))]"
],
"resources": [
{
"apiVersion": "2015-08-01",
"name": "appsettings",
"type": "config",
"dependsOn": [
"[resourceId('Microsoft.Web/Sites', variables('qnaMakerWebName'))]",
"[resourceId('Microsoft.Search/searchServices/', variables('azureSearchName'))]",
"[resourceId('microsoft.insights/components', variables('appInsightsName'))]"
],
"properties": {
"AzureSearchName": "[variables('azureSearchName')]",
"AzureSearchAdminKey": "[listAdminKeys(resourceId('Microsoft.Search/searchServices/', variables('azureSearchName')), '2015-08-19').primaryKey]",
"UserAppInsightsKey": "[reference(resourceId('microsoft.insights/components/', variables('appInsightsName')), '2015-05-01').InstrumentationKey]",
"UserAppInsightsName": "[variables('appInsightsName')]",
"UserAppInsightsAppId": "[reference(resourceId('microsoft.insights/components/', variables('appInsightsName')), '2015-05-01').AppId]",
"PrimaryEndpointKey": "[concat(variables('qnaMakerWebName'), '-PrimaryEndpointKey')]",
"SecondaryEndpointKey": "[concat(variables('qnaMakerWebName'), '-SecondaryEndpointKey')]",
"DefaultAnswer": "No good match found in KB.",
"QNAMAKER_EXTENSION_VERSION": "latest"
}
},
{
"apiVersion": "2018-02-01",
"type": "config",
"name": "logs",
"dependsOn": [
"[resourceId('Microsoft.Web/Sites', variables('qnaMakerWebName'))]"
],
"properties": {
"applicationLogs": {
"fileSystem": {
"level": "Warning",
"retentionInDays": 7
},
"azureBlobStorage": {
"level": "Verbose",
"sasUrl": "[concat(reference(concat('Microsoft.Storage/storageAccounts/', variables('storageAccountName'))).primaryEndpoints.blob, parameters('storageAccountContainerQnaAppLog'), '?', listAccountSas(variables('storageAccountName'), '2018-02-01', variables('listAccountSasRequestContent')).accountSasToken)]",
"retentionInDays": 7
}
},
"httpLogs": {
"fileSystem": {
"retentionInMb": 35,
"retentionInDays": 7,
"enabled": false
},
"azureBlobStorage": {
"enabled": true,
"sasUrl": "[concat(reference(concat('Microsoft.Storage/storageAccounts/', variables('storageAccountName'))).primaryEndpoints.blob, parameters('storageAccountContainerQnaWebLog'), '?', listAccountSas(variables('storageAccountName'), '2018-02-01', variables('listAccountSasRequestContent')).accountSasToken)]",
"retentionInDays": 7
}
},
"detailedErrorMessages": {
"enabled": true
}
}
}
]
}

机器人框架 Virtual Assistant是一个解决方案加速器,它将常见功能、服务和 Bot Framework 最佳实践合并到一个易于部署的包中,然后可以根据客户的需求进行定制。虚拟助手基于 Bot Framework SDK 构建,并部署在开发人员在 Azure Bot 服务上的 Azure 订阅内,使助手生成的所有数据(提出的问题、用户行为等)完全由客户控制。

虚拟助手的主要组件包括:

包含代码、对话框和语言生成资源的 Visual Studio 项目

ARM 和 PowerShell 中的可自定义部署脚本

自动配置和配置相关服务(LUIS、QnA、存储、计算等)

适用于已知场景的可插入技能,例如 Microsoft Graph 和 Bing 数据 Assets 的对话使用

关于azure - 有没有办法使用 ARM 模板完全自动化基于 QnAMaker 的 Azure Bot,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/65284413/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com