Create Enlighten Copilot for Agents Profiles

After initially setting up Enlighten Copilot for Agents with help from your CXone 계정 담당자, you must create a Studio script and an Enlighten Copilot for Agents profile in CXone. You can create additional profiles to customize the Enlighten Copilot for Agents experience for different business requirements. For example, you may want billing and sales agents to see only next-best responses, but support agents to see both next-best responses and KB answers.

Create a Script for Copilot for Agents

필요한 권한: Studio 스크립트 보기, 생성/편집

You need to create or modify at least one Studio script to set up Copilot for Agents in your contact center. The scripts must:

스크립트 구성을 완료하려면:

    • Snippet 작업을 사용하여 스크립트에 초기화 스니펫을 추가합니다. Agent Assist 애플리케이션을 사용자 지정하기 위해 이렇게 할 수 있습니다.
    • 작업 커넥터를 재구성하여 적절한 컨택 흐름을 보장하고 잠재적 오류를 수정할 수 있습니다.
    • 추가 스크립팅을 완료하고 스크립트를 테스트합니다.

Create a Copilot for Agents Profile

Permissions Required: Integrations > Launch Integrations

You need to create at least one Copilot for Agents profile in 상담원 지원 허브. Each profile is a separate agent assist app in 상담원 지원 허브.

  1. 앱 선택기 를 클릭하고 선택합니다.기타 > 자동화 및 AI로 간 다음 상담원 지원 허브을(를) 클릭합니다.
  2. Click Add Agent Assist App.
  3. Enter the Agent Assist App Name and click Enlighten Agent Copilot in the list under Select Agent Assist App Type.
  4. In the Generative Response Tone drop-down, select the tone of voice you want Copilot for Agents to use.

  5. In the Copilot Persona field, enter a short, specific persona description for this Copilot for Agents profile. The persona description describes its role and purpose. For example, You are a friendly agent assistant answering questions about billing. This gives Copilot for Agents context and instructions to help it generate more relevant suggestions. The maximum character count is 250.

    Make your Copilot Persona description concise and easy to understand. A poorly written description may result in poor suggestions from Copilot for Agents.

  6. Click Next.
  7. Configure the fields on the Configuration tab.
    1. In the Channels drop-down, select the channels닫힘 컨택이 상담원이나 Bot과 인터랙션하는 방법입니다. 채널은 음성, 이메일, 채팅, 소셜 미디어 등이 될 수 있습니다. you want this Copilot for Agents profile to apply to.
    2. If you selected Voice in the previous step, select a Transcription Service.
    3. In the AI Response Settings section, enable the types of content you want Copilot for Agents to generate.

  8. Click Next.
  9. To integrate Copilot for Agents with your CXone Expert knowledge base닫힘 문제 해결 문서를 저장하는 웹사이트입니다. (KB), configure the fields on the Knowledge tab.
    1. Enable Expert Copilot Integration.
    2. Enter your Client Key, Client Secret, and Site URL.
    3. To limit this Copilot for Agents profile's access to a specific section of your CXone Expert KB, enter the path to that section in Default Path. It should be in this format: Page/Subpage. For example, if you enter Laundry/Dryers, Copilot for Agents will only have access to articles in the Laundry > Dryers section of the site. Click + to add more paths.
    4. To limit the number of CXone Expert kernels Copilot for Agents uses when generating content, enter a numeral in Kernel Count Limit. For example, if you enter 2, Copilot for Agents only uses the top two kernels that relate to the contact's issue.
    5. To require a match percentage for kernels, enter the decimal form of a percentage in Kernel Relevance Threshold. For example, if you enter 0.85, Copilot for Agents doesn't use kernels that are less than 85% a match for the contact's issue. The default value is 0.6.

      Testing is useful in determining your optimal match percentage. It depends on the kind of questions contacts ask and the kind of knowledge content you have. If Copilot for Agents is providing too many unhelpful responses, increase your match percentage.

    6. Configure the fields in the Expert Copilot Features section. These allow you to enable the types of content you want Copilot for Agents to generate using your CXone Expert knowledge base. They also determine how that content is displayed.

  10. Click Create.

Assign a Profile to a Studio Script

필요한 권한: Studio 스크립트 보기, 생성/편집

  1. Studio에서 사용할 스크립트를 엽니다.
  2. 아직 하지 않은 경우 Agent Assist 작업을 스크립트의 올바른 위치에 추가하십시오.

  3. Double-click the Agent Assist action to open 상담원 지원 허브.

  4. In the left column, click the checkmark in a circle A light gray checkmark inside a light gray circle. next to the agent assist application or profile you want to assign to this script.
  5. 닫기를 클릭합니다.

Assign Multiple Profiles to a Studio Script

필요한 권한: Studio 스크립트 보기, 생성/편집

You can use Studio variables to assign multiple Copilot for Agents profiles to one Studio script. You then use logic code that determines when each profile is used.

These steps describe a simple example of assigning two Copilot for Agents profiles to one script. Your script might be more complex. Contact CXone Services for the best design and implementation.

  1. In Studio, open the script you want to use.

  2. If you haven't done so already, add an AGENT ASSIST action to the correct location in your script.

  3. Add a SNIPPET action before the AGENT ASSIST action and connect them.

  4. Double-click the SNIPPET action.

  5. In the Snippet editor window, create three variables. You need two variables to hold the Copilot for Agents profile names, and one variable to hold the name of the profile you want the script to use when it runs.

  6. Underneath those variables, enter logic code that determines when each profile is used. This code changes the value of the profileToUse variable.

  7. Double-click the AGENT ASSIST action to open 상담원 지원 허브.

  8. For each Copilot for Agents profile you want to use:

    1. Click the profile name in the left column.

    2. Copy the profile name from the General tab.

    3. Paste it into the snippet code you created previously as the value of one of the profile name variables. In the previous example code, the variable names are profile1 and profile2.

  9. Right-click the AGENT ASSIST action. In the assistLaunchConfigName property, enter {profileToUse}. This is the name of the variable that holds the profile you want the script to use, enclosed in curly brackets.

  10. Save your script.