Alexa との対話型統合 のインストール
アドミンロールをお持ちであれば、Alexa との対話型統合 アプリケーション (sn.va.alexa) をインストールできます。このアプリケーションは、関連する ServiceNow® Store アプリケーションとプラグインをインストールします (まだインストールされていない場合)。
始める前に
- アプリケーションとその関連するすべての ServiceNow Store アプリケーションに有効な ServiceNow エンタイトルメントがあることを確認してください。詳細については、次を参照してください。 のエンタイトルメントを取得する ServiceNow 製品またはアプリケーション.
- 必要なロール:external_app_install_admin、va_admin、または admin
このタスクについて
- 会話型カスタムチャット統合 (com.glide.cs.custom.adapter)
- 会話型インターフェイスで 仮想エージェント アプリケーションを有効にするためのカスタムチャット統合フレームワークとスクリプト可能な API を提供します。
詳細については、「での会話型カスタムチャット統合の作成 仮想エージェント」を参照してください。
- ServiceNow 統合ハブランタイム (com.glide.hub.integration.runtime)
- ServiceNow® 統合ハブ のアクションとフローの実行を有効にします。
手順
次のタスク
Alexa を設定するための JSON
{
"interactionModel": {
"languageModel": {
"invocationName": "my agent",
"intents": [
{
"name": "AMAZON.CancelIntent",
"samples": []
},
{
"name": "AMAZON.HelpIntent",
"samples": []
},
{
"name": "AMAZON.StopIntent",
"samples": []
},
{
"name": "EverythingIntent",
"slots": [
{
"name": "EverythingSlot",
"type": "Bag_of_words"
}
],
"samples": [
"{EverythingSlot}"
]
},
{
"name": "AMAZON.NavigateHomeIntent",
"samples": []
},
{
"name": "VAKeywordIntent",
"slots": [
{
"name": "skip_keyword_slot",
"type": "Skip_slot_type"
},
{
"name": "repeat_keyword_slot",
"type": "Repeat_keyword_slot_type"
},
{
"name": "more_keyword_slot",
"type": "More_keyword_slot_type"
}
],
"samples": [
"{more_keyword_slot}",
"{repeat_keyword_slot}",
"{skip_keyword_slot}"
]
}
],
"types": [
{
"name": "Bag_of_words",
"values": [
{
"name": {
"value": "name: bag_of_words"
}
}
]
},
{
"name": "Skip_slot_type",
"values": [
{
"name": {
"value": "skip"
}
}
]
},
{
"name": "More_keyword_slot_type",
"values": [
{
"name": {
"value": "more"
}
}
]
},
{
"name": "Repeat_keyword_slot_type",
"values": [
{
"name": {
"value": "repeat"
}
}
]
}
]
}
}
}