Skip to content
This repository has been archived by the owner on Dec 3, 2023. It is now read-only.

docs: clarified the deprecation of TEMPLATE in intent training phrase type #900

Merged
merged 4 commits into from
Mar 29, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -862,10 +862,10 @@ public enum Type implements com.google.protobuf.ProtocolMessageEnum {
* <pre>
* Templates are not annotated with entity types, but they can contain
* &#64;-prefixed entity type names as substrings.
* Template mode has been deprecated. Example mode is the only supported
* way to create new training phrases. If you have existing training
* phrases that you've created in template mode, those will continue to
* work.
* Note: Template mode has been deprecated. Example mode is the only
* supported way to create new training phrases. If you have existing
* training phrases in template mode, they will be removed during training
* and it can cause a drop in agent performance.
* </pre>
*
* <code>TEMPLATE = 2 [deprecated = true];</code>
Expand Down Expand Up @@ -902,10 +902,10 @@ public enum Type implements com.google.protobuf.ProtocolMessageEnum {
* <pre>
* Templates are not annotated with entity types, but they can contain
* &#64;-prefixed entity type names as substrings.
* Template mode has been deprecated. Example mode is the only supported
* way to create new training phrases. If you have existing training
* phrases that you've created in template mode, those will continue to
* work.
* Note: Template mode has been deprecated. Example mode is the only
* supported way to create new training phrases. If you have existing
* training phrases in template mode, they will be removed during training
* and it can cause a drop in agent performance.
* </pre>
*
* <code>TEMPLATE = 2 [deprecated = true];</code>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -227,10 +227,10 @@ message Intent {

// Templates are not annotated with entity types, but they can contain
// @-prefixed entity type names as substrings.
// Template mode has been deprecated. Example mode is the only supported
// way to create new training phrases. If you have existing training
// phrases that you've created in template mode, those will continue to
// work.
// Note: Template mode has been deprecated. Example mode is the only
// supported way to create new training phrases. If you have existing
// training phrases in template mode, they will be removed during training
// and it can cause a drop in agent performance.
TEMPLATE = 2 [deprecated = true];
}

Expand Down