@breign/client 1.0.51 → 1.0.53
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.
|
@@ -21,6 +21,12 @@ export interface MessageUio {
|
|
|
21
21
|
* @memberof MessageUio
|
|
22
22
|
*/
|
|
23
23
|
message: string;
|
|
24
|
+
/**
|
|
25
|
+
* Whether to activate incremental generation of the response
|
|
26
|
+
* @type {boolean}
|
|
27
|
+
* @memberof MessageUio
|
|
28
|
+
*/
|
|
29
|
+
stream?: boolean;
|
|
24
30
|
}
|
|
25
31
|
/**
|
|
26
32
|
* Check if a given object implements the MessageUio interface.
|
|
@@ -35,6 +35,7 @@ function MessageUioFromJSONTyped(json, ignoreDiscriminator) {
|
|
|
35
35
|
}
|
|
36
36
|
return {
|
|
37
37
|
'message': json['message'],
|
|
38
|
+
'stream': json['stream'] == null ? undefined : json['stream'],
|
|
38
39
|
};
|
|
39
40
|
}
|
|
40
41
|
function MessageUioToJSON(json) {
|
|
@@ -46,5 +47,6 @@ function MessageUioToJSONTyped(value, ignoreDiscriminator = false) {
|
|
|
46
47
|
}
|
|
47
48
|
return {
|
|
48
49
|
'message': value['message'],
|
|
50
|
+
'stream': value['stream'],
|
|
49
51
|
};
|
|
50
52
|
}
|
package/dist/openapi.json
CHANGED
|
@@ -9274,6 +9274,10 @@
|
|
|
9274
9274
|
"message" : {
|
|
9275
9275
|
"description" : "Message to send to the conversation",
|
|
9276
9276
|
"type" : "string"
|
|
9277
|
+
},
|
|
9278
|
+
"stream" : {
|
|
9279
|
+
"description" : "Whether to activate incremental generation of the response",
|
|
9280
|
+
"type" : "boolean"
|
|
9277
9281
|
}
|
|
9278
9282
|
},
|
|
9279
9283
|
"required" : [ "message" ],
|