我已经在Azure HealthBot管理门户中创建了这些场景,并希望公开供其他bot/rootbot使用的技能。我已经配置了技能暴露,并获得了技能清单,包括我们正在调用的endpoint.When端点,它会导致404错误。
宣言:
{
"$schema": "https://schemas.botframework.com/schemas/skills/v2.1/skill-manifest.json",
"$id": "testhealthbot",
"name": "testhealthbot",
"version": "1.0",
"description": "test",
"publisherName": "test",
"tags": [],
"endpoints": [
{
"name": "default",
"protocol": "BotFrameworkV3",
"description": "Production endpoint for HealthBot Skill testhealthbot",
"endpointUrl": "https://bot-api-us.healthbot.microsoft.com/bot/dynabot/testhealthbot-hpmn88l/skill/consume",
"msAppId": "3dc55673-cdd5-4e4d-8838-d51d2exxxxx"
}
],
"activities": {
"message": {
"type": "message",
"description": "Receives the user's' utterance and attempts to resolve it using the skill's LU models"
}
}
}有人能指点我如何调用这个技能或如何使用rootbot的技巧吗?
发布于 2021-08-03 05:02:58
https://stackoverflow.com/questions/68470802
复制相似问题