Create and manage a Smart Snippet model
Create and manage a Smart Snippet model
Coveo Machine Learning (Coveo ML) Smart Snippet models provide users with answers to their queries by displaying a snippet of the most relevant result item directly on their results list.
Note
Coveo ML Smart Snippet models don’t learn from usage analytics events to provide answers to user queries (see How Does Coveo ML Smart Snippets Work?). |
Prerequisites
To take advantage of Coveo ML Smart Snippets, make sure that:
-
You have the required privileges to create Smart Snippet models.
-
The items you want the model to extract snippets from use the value of the
permanentid
field as their unique identifier. -
The search interfaces in which you want to integrate the model are properly configured.
Note
If an item includes a multi-value field, the model learns only on the first value of the field. If an item includes a multi-value field, change the field to a single-value field, and then rebuild the model. Otherwise, be aware that only the first value in a multi-value field is used for learning purposes. |
Optimize the content
Coveo ML Smart Snippets establish correlations between the headers appearing in result items and user queries. Therefore, your content must be configured accordingly.
For optimal results, we recommend that you use Google structured data in JSON-LD format in the <head>
of the HTML items that must be used by the model to extract snippets.
The following code sample shows a simple HTML markup that contains JSON-LD formatted content within the <head>
:
<html>
<head>
<title>Example Site - Frequently Asked Questions(FAQ)</title>
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "FAQPage",
"mainEntity":[{
"@type": "Question",
"name": "What is Smart Snippets?",
"acceptedAnswer": {
"@type": "Answer",
"text": "<p>Coveo Smart Snippet models provide users with answers to their queries directly on the results page by displaying a snippet of the most relevant result item. This allows users to quickly find answers without having to open links from the results page.</p>"]
}
</script>
</head>
<body>
</body>
</html>
However, Coveo ML Smart Snippets will also work with raw HTML. When using this approach, it must be noted that Coveo ML Smart Snippet models don’t exclude navigation menus, featured content, or any other peripheral content in an item. To help the algorithm identify this type of content, you should specify CSS properties to exclude.
Notes
|
HTML supported tags
In an item, a Smart Snippet model takes the content that appears within the following tags into consideration when they’re attached to the last header (<h>
tag) in a header stack:
-
<br>
-
<ol>
NoteSmart Snippet models support the
start
attribute in<ol>
tags -
<ul>
-
<li>
-
<p>
-
<b>
-
<i>
-
<em>
-
<span>
-
<a>
Notes-
For a snippet to correctly render the hyperlink, the URL value used in the
href
attribute must be absolute and use a secure scheme (that is,https://
). -
When a user clicks an inline link displayed on a snippet, the
openSmartSnippetInlineLink
click event is logged. This can be useful to report on the usage of links dipslayed in snippets.
-
Considering a page that is configured as follows:
<body>
<h1>FAQ</h1>
<h2>Synchronizing Speedbit Watches</h2>
<p>The procedure differs depending on the device with which you want to synchronize your watch.</p>
<h3>Synchronizing a Speedbit Watch With a Smartphone</h3>
<p>Procedure to synchronize your Speedbit watch with your smartphone.</p>
<h3>Synchronizing a Speedbit Watch With a Computer</h3>
<p>Procedure to synchronize your Speedbit watch with your computer.</p>
</body>
The model would process the page as follows:
[
{"headers": ["FAQ", "Synchronizing Speedbit Watches", "Synchronizing a Speedbit Watch With a Smartphone"], "excerpt": "<p>Procedure to synchronize your Speedbit watch with your smartphone.</p>"},
{"headers": ["FAQ", "Synchronizing Speedbit Watches", "Synchronizing a Speedbit Watch With a Computer"], "excerpt": "<p>Procedure to synchronize your Speedbit watch with your computer.</p>"}
]
|
CSS properties to exclude
When configuring a Coveo ML Smart Snippet model, you can specify CSS selectors to exclude from the model learning process. This means that content that appears within these elements won’t be considered by the algorithm when extracting snippets.
In your support website, you have a common .navigation_bar
CSS class used for the styling of your navigation bar.
Since you don’t want the model to use this content for its learning process, you specify the .navigation_bar
class to ignore content matching this selector.
Configure the search interface
Your search interface must be configured to leverage Coveo’s ML Smart Snippets. Refer to Configure a search interface for Smart Snippets for more information about configuration using the Coveo JavaScript Search Framework and Coveo Headless library.
Create a Smart Snippet model
-
Depending on whether models have already been created in your Coveo organization:
-
If your Coveo organization doesn’t contain any models, on the Models (platform-ca | platform-eu | platform-au) page, click the Smart Snippets card.
-
If your Coveo organization already contains models, on the Models (platform-ca | platform-eu | platform-au) page, click Add model, and then click the Smart Snippets card.
-
-
Click Next.
-
In the Learn from section, select the content that the model will use. You can select the source(s) and apply additional filters using the Standard configuration, or use Advanced mode to define a custom filter expression.
You’ll lose the current mode settings when you switch between Standard and Advanced mode.
The Data volume preview section shows the impact of your settings on the data that’s available to the model.
-
In the Standard tab:
-
In the Sources dropdown menu, select the sources that contain the items from which you want the model to extract relevant snippets of content.
NoteIf your Coveo organization includes multiple indexes, the model can learn only from sources that are linked to the default index.
A Coveo ML Smart Snippet model returns snippets of content for HTML items only.
-
(Optional) In the Apply filters on dataset section, you can specify a condition to segment the content on which the model should base its training.
ExampleYou want the model to base its training only on items for which the collection field has the
FAQ
value.Therefore, you add a
collection is equal to FAQ
condition.-
Click Add filter(s).
-
In the Field name input, enter the name of the field that you want to use to segment the dataset.
-
In the Select an operator dropdown menu, select the desired operator.
-
In the Value input, enter the value of the field on which you want to segment the dataset.
-
Click Apply.
-
-
-
In the Advanced tab:
-
Enter a custom filter expression using Coveo query syntax.
-
Click Apply.
-
-
-
Click Next.
-
(Optional) You can further refine the content that must be used by the model to extract snippets by scoping specific content fields. By default, the model uses content from the {body-html} of an item.
-
Click Add a content field.
-
In the Document type dropdown menu, select a document type such as
Knowledge
,Documentation
, orWebPage
that should be used to refine the index items that must be used by the model. When specifying a specific document type, items of other document types will be ignored by the model.ExampleThe content you want the model to extract resides in a Salesforce source. This content is available in items whose
documenttype
has theKnowledge
value. Therefore, you selectKnowledge
in the Document type dropdown menu so that the model uses only items whosedocumenttype
field value isKnowledge
. -
In the Field(s) containing HTML content dropdown menu, select the fields containing the content that the model must use.
NoteIf an item includes a multi-value field, the model learns only on the first value of the field. If an item includes a multi-value field, change the field to a single-value field, and then rebuild the model. Otherwise, be aware that only the first value in a multi-value field is used for learning purposes.
ExampleThe content you want the model to extract resides in a Salesforce source. The relevant information, formatted in HTML, is located in a custom field named
sf_case_details_c
. Therefore, you select thesf_case_details_c
field in the Field(s) containing HTML content dropdown menu so that the model uses only the content that appears in thesf_case_details_c
field when extracting the document.
-
-
Click Next.
-
(Optional) In the CSS properties to exclude section, click Add a CSS selector to specify CSS selectors to exclude from the model learning process.
-
Click Next.
-
In the Name your model input, enter a meaningful display name for the model, and then click Start building.
-
You can then associate the model with a pipeline to take advantage of the model in a search interface.
Edit a Smart Snippet model
-
On the Models (platform-ca | platform-eu | platform-au) page, click the model you want to edit, and then click Edit in the Action bar.
-
On the subpage that opens, select the Configuration tab.
-
In the upper-right corner, click Edit.
-
Under Name, edit the model’s display name.
-
In the Learn from section, select the content that the model will use. You can select the source(s) and apply additional filters using the Standard configuration, or use Advanced mode to define a custom filter expression.
You’ll lose the current mode settings when you switch between Standard and Advanced mode.
The Data volume preview section shows the impact of your settings on the data that’s available to the model.
-
In the Standard tab:
-
In the Sources dropdown menu, select the sources that contain the items from which you want the model to extract relevant snippets of content.
NoteIf your Coveo organization includes multiple indexes, the model can learn only from sources that are linked to the default index.
A Coveo ML Smart Snippet model returns snippets of content for HTML items only.
-
(Optional) In the Apply filters on dataset section, you can specify a condition to segment the content on which the model should base its training.
ExampleYou want the model to base its training only on items for which the collection field has the
FAQ
value.Therefore, you add a
collection is equal to FAQ
condition.-
Click Add filter(s).
-
In the Field name input, enter the name of the field that you want to use to segment the dataset.
-
In the Select an operator dropdown menu, select the desired operator.
-
In the Value input, enter the value of the field on which you want to segment the dataset.
-
Click Apply.
-
-
-
In the Advanced tab:
-
Enter a custom filter expression using Coveo query syntax.
-
Click Apply.
-
-
-
(Optional) You can further refine the content that must be used by the model to extract snippets by scoping specific content fields. By default, the model uses content from the {body-html} of an item.
-
Click Add a content field.
-
In the Document type dropdown menu, select a document type such as
Knowledge
,Documentation
, orWebPage
that should be used to refine the index items that must be used by the model. When specifying a specific document type, items of other document types will be ignored by the model.ExampleThe content you want the model to extract resides in a Salesforce source. This content is available in items whose
documenttype
has theKnowledge
value. Therefore, you selectKnowledge
in the Document type dropdown menu so that the model uses only items whosedocumenttype
field value isKnowledge
. -
In the Field(s) containing HTML content dropdown menu, select the fields containing the content that the model must use.
NoteIf an item includes a multi-value field, the model learns only on the first value of the field. If an item includes a multi-value field, change the field to a single-value field, and then rebuild the model. Otherwise, be aware that only the first value in a multi-value field is used for learning purposes.
ExampleThe content you want the model to extract resides in a Salesforce source. The relevant information, formatted in HTML, is located in a custom field named
sf_case_details_c
. Therefore, you select thesf_case_details_c
field in the Field(s) containing HTML content dropdown menu so that the model uses only the content that appears in thesf_case_details_c
field when extracting the document.
-
-
(Optional) In the CSS properties to exclude section, click Add a CSS selector to specify CSS selectors to exclude from the model learning process.
-
Click Save.
If you have the Enterprise edition, group this Smart Snippet model and your other implementation resources together in a project. See Manage projects. |
Delete a Smart Snippet model
You must dissociate a model from all its associated query pipelines before deleting it. Models aren’t automatically dissociated from pipelines when they’re deleted. |
-
On the Models (platform-ca | platform-eu | platform-au) page, click the ML model that you want to delete, and then click More > Delete in the Action bar.
-
In the Delete a Model panel that appears, click Delete model.
Review active model information
On the Models (platform-ca | platform-eu | platform-au) page, click the desired model (must be Active), and then click Open in the Action bar (see Reviewing model information).
Reference
"Status" column
On the Models (platform-ca | platform-eu | platform-au) page of the Administration Console, the Status column indicates the current state of your Coveo ML models.
The following table lists the possible model statuses and their definitions:
Status | Definition | Status icon |
---|---|---|
Active |
The model is active and available. |
|
Build in progress |
The model is currently building. |
|
Inactive |
The model isn’t ready to be queried, such as when a model was recently created or the organization is offline. |
|
Limited |
Build issues exist that may affect model performance. |
|
Soon to be archived |
The model will soon be archived because it hasn’t been queried for an extended period of time. |
|
Error |
An error prevented the model from being built successfully. |
|
Archived |
The model was archived because it hasn’t been queried for at least 30 days. |
|
Required privileges
By default, members with the required privileges can view and edit elements of the Models (platform-ca | platform-eu | platform-au) page.
The following table indicates the privileges required for members to manage Coveo Smart Snippets models (see Manage privileges and Privilege reference).
Action | Service - Domain | Required access level |
---|---|---|
View models |
Machine Learning - Models |
View |
Manage models |
Organization - Organization |
View |
Machine Learning - Models |
Edit |
|
Machine Learning - Allow content preview |
Enable |
|
Content - Sources |
View All |
|
Content - Fields |
View |