Skip to content

Copilot: Knowledge Tile

Version badge

Description

This Node is designed to provide potential answers to human agents regarding customer questions. The Node creates an AI Copilot widget that consists of a search bar and a response form. Additionally, it will provide meta-source links, information about the files from which knowledge was derived and hints for further questions. The human agent uses the search bar to access a knowledge base and find information to respond to customer queries. Responses are generated based on a Large Language Model via Cognigy Knowledge AI.

Before using the Copilot: Knowledge Tile Node, configure the Generative AI provider in the Settings and select the appropriate model from the supported model list. This Node supports models with the LLM Prompt Node and the Search Extract Output Node Cognigy features.

To set up the Copilot: Knowledge Tile Node, you need two Nodes for the Flow configuration: one to initiate the knowledge search process and the second one to execute it. Additionally, to prevent the content of other widgets from updating during the Node's operation, move the Nodes under the Else child Node of the If Node. For more information, refer to the Configuration section.

Settings

General Settings

Parameter Type Description
Tile ID CognigyScript The ID that you created in the AI Copilot configuration.
Knowledge Store Select Select a store from the list to allow the Node to retrieve the data.

UI Preferences

Parameter Type Description
Font size Select The font size of the widget title in the AI Copilot workspace. The following sizes are available:
- xl (Extra Small) — the smallest size available.
- sm base (Small Base) — baseline size for other sizes.
- lg (Large) — the standard large size, typically larger than the medium or small sizes.
- xl (Extra Large) — the standard large size.
- 2xl, 3xl, 4xl, 5xl, 6xl, 7xl, 8xl, 9xl (Larger Sizes) — progressively larger sizes, with xl representing extra large and the numbers indicating gradations of that size.

Enable Copy to Clipboard Button

If you are using Live Agent as a handover provider, you can forward information from the widget to the Reply to User section by clicking forwarder and then sending it to the end user.

For other providers, use the alternative option Enable copy to clipboard button to activate the Copy button on the tile. For Salesforce, to activate the Copy button, update your Salesforce integration using this guide.

Search Settings

Parameter Type Description
Context-Aware Search Select Considering the transcript's context for the search. It allows a virtual agent to answer follow-up questions. You can select one of the following options:
- On — is the default option. When this setting is enabled, it affects tokenization costs, which impact the amount of memory, computational power, and overall expenses needed for running an OpenAI or Azure OpenAI model. To get a better understanding of how the feature works in practice, see Examples.
- Off — the setting is turned off.
Transcript Steps Indicator Number of prior transcript steps to use in a context-aware search. This parameter is active when the Context-Aware Search setting is enabled.
Where to store the result Select The storage for the search results. Select a storage:
- default — the content will be stored in the Input object (input.knowledgeSearch).
- Input — the content will be stored in the Input object.
- Context — the content will be stored in the Context.
String to search for CognigyScript The string to search for in the knowledge store. A default value is stored in input.text.
Source Tags CognigyScript The tags serve to refine the scope of your knowledge search, allowing you to include only the most pertinent sections of the knowledge base and, as a result, improve the accuracy of search outputs.

Before specIfying tags, ensure that they were provided during the upload of the source file for this knowledge source. Add tags by specIfying each tag separately and pressing enter. The maximum number of tags is 5.

Tips: Source Tags

  • You can add CognigyScript within Source Tags.
  • Source Tags are always lower-case, only alpha-numerics (a-z, 0-9), underscores, and hyphens are allowed.
  • When using CognigyScript for Source Tags, it is important to lowercase them. For example by using the following: {{"{{input.text.toLowerCase()}}"}}.

Error Handling

Parameter Type Description
Select Error Handling Approach Select You can select one of the Error Handling options:
- Stop Flow Execution — terminate the current Flow execution.
- Continue Flow Execution — allow the Flow to continue executing, bypassing the error and proceeding to the next steps.
- Go to Node — redirect the workflow to a specific Node in the Flow, which can be useful for error recovery or customized error handling.
Error Message (optional) Text Active when the Continue Flow Execution option is selected. Optional message to output if the Search or Extract service fails.
Select Flow Select Active when the Go to Node option is selected. Select a Flow from the available options.
Select Node Select Active when the Go to Node option is selected. Select a Node from the available options.

Configuration

To use the Copilot: Knowledge AI widget, configure the following Flow:

  1. Add an If Node.
  2. Open the If Node editor.
  3. In the Condition field, specIfy the following condition: input.data._cognigy._agentAssist.payload.tileId === "tile-id", where tile-id is a Knowledge tile ID that you created in the AI Copilot configuration via API.
  4. In the Knowledge Store field, select the source that you want to use for searching knowledge.
  5. Below the Then child Node, place the Copilot: Knowledge Tile Node.
  6. Below the Else child Node, add the other Copilot tile Nodes. This step is necessary to ensure that the content of these Nodes does not get updated during the operation of the Copilot: Knowledge Tile Node. Note that the
  7. Below the Copilot: Knowledge Tile Node and other tile Nodes, place the Once child Node.
  8. Below the On First Time child Node, add a duplicate of the Copilot: Knowledge Tile Node.

Tip

If the Flow is not working or issues arise with the Knowledge Source, try creating a new Agent and running the Flow in it.

The Knowledge Tile Flow

Test your Flow by using a Demo Webchat in the Webchat Endpoint. You can use Live Agent as a handover provider or any other available provider.

The Knowledge Tile Widget in AI Copilot

More Information