Conversational Integration with Alexa 설치

  • 릴리스 버전: Zurich
  • 업데이트 날짜 2025년 07월 31일
  • 소요 시간: 4분
  • 관리자 역할이 있으면 애플리케이션(sn.va.alexa)을 Conversational Integration with Alexa 설치할 수 있습니다. 이 애플리케이션은 관련 ServiceNow® Store 애플리케이션 및 플러그인이 아직 설치되어 있지 않으면 이를 설치합니다.

    시작하기 전에

    이 태스크 정보

    앱과 함께 Conversational Integration with Alexa다음 애플리케이션이 설치됩니다.
    대화형 사용자 지정 채팅 통합(com.glide.cs.custom.adapter)
    스크립팅이 가능한 API의 사용자 지정 채팅 통합 프레임워크를 제공하여 모든 대화형 인터페이스에서 애플리케이션을 활성화합니다 가상 에이전트 .

    자세한 내용은 에서 대화형 사용자 지정 채팅 통합 생성 가상 에이전트 문서를 참조하십시오.

    ServiceNow 통합 허브 런타임(com.glide.hub.integration.runtime)
    작업 및 플로우를 실행할 수 ServiceNow® 통합 허브 있습니다.

    프로시저

    1. 모두 > 시스템 애플리케이션 > 모든 사용 가능 애플리케이션 > 모두
    2. Conversational Integration with Alexa 필터 기준 및 검색 창을 사용하여 애플리케이션(sn_va_alexa)을 찾습니다.

      애플리케이션 이름 또는 ID로 애플리케이션을 검색할 수 있습니다. 애플리케이션을 찾을 수 없는 경우 ServiceNow Store에서 요청해야 할 수 있습니다.

      ServiceNow Store 웹 사이트를 방문하면 사용 가능한 모든 앱을 확인하고 스토어에 요청을 제출하는 방법에 대한 정보를 참조할 수 있습니다. 출시된 모든 앱의 누적 릴리스 정보는 ServiceNow Store 버전 기록 릴리스 정보를 참조하십시오.

    3. 애플리케이션 설치 대화 상자에서 애플리케이션 의존성을 검토합니다.

      설치될 예정이거나 현재 설치되어 있거나 설치해야 하는 모든 종속 플러그인과 애플리케이션이 나열됩니다. 플러그인 또는 애플리케이션을 설치해야 하는 경우 이를 먼저 설치해야 Conversational Integration with Alexa를 설치할 수 있습니다.

    4. 설치를 클릭합니다.

    다음에 수행할 작업

    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"
                                }
                            }
                        ]
                    }
                ]
            }
        }
    }