stentor-models 1.59.32 → 1.59.34
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.
- package/lib/NLU/NLUService.d.ts +5 -0
- package/package.json +2 -2
package/lib/NLU/NLUService.d.ts
CHANGED
|
@@ -3,6 +3,7 @@ import { Message } from "../Message";
|
|
|
3
3
|
import { IntentRequest, InputUnknownRequest } from "../Request";
|
|
4
4
|
import { ActiveContext } from "../Response";
|
|
5
5
|
import { KnowledgeBaseServiceFilters } from "../Services";
|
|
6
|
+
import { SessionStore } from "../Storage";
|
|
6
7
|
/**
|
|
7
8
|
* Slightly smaller intent request without the sessionId and other identifying information. It also doesn't pass through the original raw query.
|
|
8
9
|
*/
|
|
@@ -49,6 +50,10 @@ export interface NLURequestProps {
|
|
|
49
50
|
* Current session transcript
|
|
50
51
|
*/
|
|
51
52
|
transcript?: Message[];
|
|
53
|
+
/**
|
|
54
|
+
* Optional session store
|
|
55
|
+
*/
|
|
56
|
+
session?: SessionStore;
|
|
52
57
|
/**
|
|
53
58
|
* Optional filters for knowledge base service calls
|
|
54
59
|
*/
|
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.34",
|
|
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": "81fe458c393a16d97c9cdab7826ed6c0a451f092"
|
|
37
37
|
}
|