stentor-models 1.59.31 → 1.59.32
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -88,9 +88,15 @@ export interface KnowledgeBaseSuggested extends KnowledgeBaseDocument {
|
|
|
88
88
|
*/
|
|
89
89
|
export interface KnowledgeBaseFAQ {
|
|
90
90
|
/**
|
|
91
|
-
* The question
|
|
91
|
+
* The question that is the closest match
|
|
92
92
|
*/
|
|
93
93
|
question: string;
|
|
94
|
+
/**
|
|
95
|
+
* Optional, some FAQ based systems can return multiple questions that match to the same answer. This will be populated if they exist.
|
|
96
|
+
*
|
|
97
|
+
* There most likely be a duplicate of the question field.
|
|
98
|
+
*/
|
|
99
|
+
questions?: string[];
|
|
94
100
|
/**
|
|
95
101
|
* URI, either the source or a location where more information can be found.
|
|
96
102
|
*/
|
package/package.json
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"access": "public"
|
|
6
6
|
},
|
|
7
|
-
"version": "1.59.
|
|
7
|
+
"version": "1.59.32",
|
|
8
8
|
"description": "Models for 📣 stentor",
|
|
9
9
|
"types": "lib/index",
|
|
10
10
|
"typings": "lib/index",
|
|
@@ -33,5 +33,5 @@
|
|
|
33
33
|
"dependencies": {
|
|
34
34
|
"@xapp/patterns": "2.0.2"
|
|
35
35
|
},
|
|
36
|
-
"gitHead": "
|
|
36
|
+
"gitHead": "ce119ad29f21cd3a8b911111b40c7f6aff546ce1"
|
|
37
37
|
}
|