@breign/client 1.0.80 → 1.0.82
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/dist/models/AgentPatchUio.d.ts +6 -0
- package/dist/models/AgentPatchUio.js +2 -0
- package/dist/models/AgentUio.d.ts +6 -0
- package/dist/models/AgentUio.js +2 -0
- package/dist/models/AppCreateRequestUio.d.ts +6 -0
- package/dist/models/AppCreateRequestUio.js +2 -0
- package/dist/models/AppLightUio.d.ts +6 -0
- package/dist/models/AppLightUio.js +2 -0
- package/dist/models/AppUio.d.ts +6 -0
- package/dist/models/AppUio.js +2 -0
- package/dist/models/AppUpdateRequestUio.d.ts +6 -0
- package/dist/models/AppUpdateRequestUio.js +2 -0
- package/dist/openapi.json +22 -0
- package/package.json +1 -1
|
@@ -174,6 +174,12 @@ export interface AgentPatchUio {
|
|
|
174
174
|
* @memberof AgentPatchUio
|
|
175
175
|
*/
|
|
176
176
|
hideConversationsInHistory?: boolean;
|
|
177
|
+
/**
|
|
178
|
+
*
|
|
179
|
+
* @type {number}
|
|
180
|
+
* @memberof AgentPatchUio
|
|
181
|
+
*/
|
|
182
|
+
maxToolSteps?: number;
|
|
177
183
|
}
|
|
178
184
|
/**
|
|
179
185
|
* Check if a given object implements the AgentPatchUio interface.
|
|
@@ -62,6 +62,7 @@ function AgentPatchUioFromJSONTyped(json, ignoreDiscriminator) {
|
|
|
62
62
|
'agentType': json['agentType'] == null ? undefined : (0, AgentTypeUio_1.AgentTypeUioFromJSON)(json['agentType']),
|
|
63
63
|
'personal': json['personal'] == null ? undefined : json['personal'],
|
|
64
64
|
'hideConversationsInHistory': json['hideConversationsInHistory'] == null ? undefined : json['hideConversationsInHistory'],
|
|
65
|
+
'maxToolSteps': json['maxToolSteps'] == null ? undefined : json['maxToolSteps'],
|
|
65
66
|
};
|
|
66
67
|
}
|
|
67
68
|
function AgentPatchUioToJSON(json) {
|
|
@@ -97,5 +98,6 @@ function AgentPatchUioToJSONTyped(value, ignoreDiscriminator = false) {
|
|
|
97
98
|
'agentType': (0, AgentTypeUio_1.AgentTypeUioToJSON)(value['agentType']),
|
|
98
99
|
'personal': value['personal'],
|
|
99
100
|
'hideConversationsInHistory': value['hideConversationsInHistory'],
|
|
101
|
+
'maxToolSteps': value['maxToolSteps'],
|
|
100
102
|
};
|
|
101
103
|
}
|
package/dist/models/AgentUio.js
CHANGED
|
@@ -97,6 +97,7 @@ function AgentUioFromJSONTyped(json, ignoreDiscriminator) {
|
|
|
97
97
|
'personal': json['personal'] == null ? undefined : json['personal'],
|
|
98
98
|
'createdBy': json['createdBy'] == null ? undefined : json['createdBy'],
|
|
99
99
|
'hideConversationsInHistory': json['hideConversationsInHistory'] == null ? undefined : json['hideConversationsInHistory'],
|
|
100
|
+
'maxToolSteps': json['maxToolSteps'] == null ? undefined : json['maxToolSteps'],
|
|
100
101
|
'creator': json['creator'] == null ? undefined : (0, AgentCreatorUio_1.AgentCreatorUioFromJSON)(json['creator']),
|
|
101
102
|
'engineSource': json['engineSource'] == null ? undefined : json['engineSource'],
|
|
102
103
|
'providerSource': json['providerSource'] == null ? undefined : json['providerSource'],
|
|
@@ -140,6 +141,7 @@ function AgentUioToJSONTyped(value, ignoreDiscriminator = false) {
|
|
|
140
141
|
'personal': value['personal'],
|
|
141
142
|
'createdBy': value['createdBy'],
|
|
142
143
|
'hideConversationsInHistory': value['hideConversationsInHistory'],
|
|
144
|
+
'maxToolSteps': value['maxToolSteps'],
|
|
143
145
|
'creator': (0, AgentCreatorUio_1.AgentCreatorUioToJSON)(value['creator']),
|
|
144
146
|
'engineSource': value['engineSource'],
|
|
145
147
|
'providerSource': value['providerSource'],
|
|
@@ -40,6 +40,7 @@ function AppCreateRequestUioFromJSONTyped(json, ignoreDiscriminator) {
|
|
|
40
40
|
}
|
|
41
41
|
return {
|
|
42
42
|
'name': json['name'],
|
|
43
|
+
'description': json['description'] == null ? undefined : json['description'],
|
|
43
44
|
'agentId': json['agentId'],
|
|
44
45
|
'streamingEnabled': json['streamingEnabled'],
|
|
45
46
|
'voiceProvider': json['voiceProvider'] == null ? undefined : json['voiceProvider'],
|
|
@@ -62,6 +63,7 @@ function AppCreateRequestUioToJSONTyped(value, ignoreDiscriminator = false) {
|
|
|
62
63
|
}
|
|
63
64
|
return {
|
|
64
65
|
'name': value['name'],
|
|
66
|
+
'description': value['description'],
|
|
65
67
|
'agentId': value['agentId'],
|
|
66
68
|
'streamingEnabled': value['streamingEnabled'],
|
|
67
69
|
'voiceProvider': value['voiceProvider'],
|
|
@@ -50,6 +50,7 @@ function AppLightUioFromJSONTyped(json, ignoreDiscriminator) {
|
|
|
50
50
|
return {
|
|
51
51
|
'id': json['id'],
|
|
52
52
|
'name': json['name'],
|
|
53
|
+
'description': json['description'] == null ? undefined : json['description'],
|
|
53
54
|
'agentId': json['agentId'],
|
|
54
55
|
'authSecret': json['authSecret'],
|
|
55
56
|
'streamingEnabled': json['streamingEnabled'],
|
|
@@ -69,6 +70,7 @@ function AppLightUioToJSONTyped(value, ignoreDiscriminator = false) {
|
|
|
69
70
|
return {
|
|
70
71
|
'id': value['id'],
|
|
71
72
|
'name': value['name'],
|
|
73
|
+
'description': value['description'],
|
|
72
74
|
'agentId': value['agentId'],
|
|
73
75
|
'authSecret': value['authSecret'],
|
|
74
76
|
'streamingEnabled': value['streamingEnabled'],
|
package/dist/models/AppUio.d.ts
CHANGED
package/dist/models/AppUio.js
CHANGED
|
@@ -60,6 +60,7 @@ function AppUioFromJSONTyped(json, ignoreDiscriminator) {
|
|
|
60
60
|
return {
|
|
61
61
|
'id': json['id'],
|
|
62
62
|
'name': json['name'],
|
|
63
|
+
'description': json['description'] == null ? undefined : json['description'],
|
|
63
64
|
'agentId': json['agentId'],
|
|
64
65
|
'agent': json['agent'] == null ? undefined : (0, SimpleAgentUio_1.SimpleAgentUioFromJSON)(json['agent']),
|
|
65
66
|
'sequences': json['sequences'] == null ? undefined : (json['sequences'].map(SequenceUio_1.SequenceUioFromJSON)),
|
|
@@ -98,6 +99,7 @@ function AppUioToJSONTyped(value, ignoreDiscriminator = false) {
|
|
|
98
99
|
return {
|
|
99
100
|
'id': value['id'],
|
|
100
101
|
'name': value['name'],
|
|
102
|
+
'description': value['description'],
|
|
101
103
|
'agentId': value['agentId'],
|
|
102
104
|
'agent': (0, SimpleAgentUio_1.SimpleAgentUioToJSON)(value['agent']),
|
|
103
105
|
'sequences': value['sequences'] == null ? undefined : (value['sequences'].map(SequenceUio_1.SequenceUioToJSON)),
|
|
@@ -34,6 +34,7 @@ function AppUpdateRequestUioFromJSONTyped(json, ignoreDiscriminator) {
|
|
|
34
34
|
}
|
|
35
35
|
return {
|
|
36
36
|
'name': json['name'] == null ? undefined : json['name'],
|
|
37
|
+
'description': json['description'] == null ? undefined : json['description'],
|
|
37
38
|
'streamingEnabled': json['streamingEnabled'] == null ? undefined : json['streamingEnabled'],
|
|
38
39
|
'voiceProvider': json['voiceProvider'] == null ? undefined : json['voiceProvider'],
|
|
39
40
|
'voiceProviderApiKey': json['voiceProviderApiKey'] == null ? undefined : json['voiceProviderApiKey'],
|
|
@@ -54,6 +55,7 @@ function AppUpdateRequestUioToJSONTyped(value, ignoreDiscriminator = false) {
|
|
|
54
55
|
}
|
|
55
56
|
return {
|
|
56
57
|
'name': value['name'],
|
|
58
|
+
'description': value['description'],
|
|
57
59
|
'streamingEnabled': value['streamingEnabled'],
|
|
58
60
|
'voiceProvider': value['voiceProvider'],
|
|
59
61
|
'voiceProviderApiKey': value['voiceProviderApiKey'],
|
package/dist/openapi.json
CHANGED
|
@@ -7934,6 +7934,11 @@
|
|
|
7934
7934
|
"hideConversationsInHistory" : {
|
|
7935
7935
|
"type" : "boolean"
|
|
7936
7936
|
},
|
|
7937
|
+
"maxToolSteps" : {
|
|
7938
|
+
"maximum" : 50,
|
|
7939
|
+
"minimum" : 1,
|
|
7940
|
+
"type" : "integer"
|
|
7941
|
+
},
|
|
7937
7942
|
"creator" : {
|
|
7938
7943
|
"$ref" : "#/components/schemas/Agent_creator"
|
|
7939
7944
|
},
|
|
@@ -8202,6 +8207,11 @@
|
|
|
8202
8207
|
},
|
|
8203
8208
|
"hideConversationsInHistory" : {
|
|
8204
8209
|
"type" : "boolean"
|
|
8210
|
+
},
|
|
8211
|
+
"maxToolSteps" : {
|
|
8212
|
+
"maximum" : 50,
|
|
8213
|
+
"minimum" : 1,
|
|
8214
|
+
"type" : "integer"
|
|
8205
8215
|
}
|
|
8206
8216
|
},
|
|
8207
8217
|
"type" : "object"
|
|
@@ -9020,6 +9030,9 @@
|
|
|
9020
9030
|
"name" : {
|
|
9021
9031
|
"type" : "string"
|
|
9022
9032
|
},
|
|
9033
|
+
"description" : {
|
|
9034
|
+
"type" : "string"
|
|
9035
|
+
},
|
|
9023
9036
|
"agentId" : {
|
|
9024
9037
|
"type" : "string"
|
|
9025
9038
|
},
|
|
@@ -9050,6 +9063,9 @@
|
|
|
9050
9063
|
"name" : {
|
|
9051
9064
|
"type" : "string"
|
|
9052
9065
|
},
|
|
9066
|
+
"description" : {
|
|
9067
|
+
"type" : "string"
|
|
9068
|
+
},
|
|
9053
9069
|
"agentId" : {
|
|
9054
9070
|
"type" : "string"
|
|
9055
9071
|
},
|
|
@@ -9113,6 +9129,9 @@
|
|
|
9113
9129
|
"name" : {
|
|
9114
9130
|
"type" : "string"
|
|
9115
9131
|
},
|
|
9132
|
+
"description" : {
|
|
9133
|
+
"type" : "string"
|
|
9134
|
+
},
|
|
9116
9135
|
"agentId" : {
|
|
9117
9136
|
"type" : "string"
|
|
9118
9137
|
},
|
|
@@ -9361,6 +9380,9 @@
|
|
|
9361
9380
|
"name" : {
|
|
9362
9381
|
"type" : "string"
|
|
9363
9382
|
},
|
|
9383
|
+
"description" : {
|
|
9384
|
+
"type" : "string"
|
|
9385
|
+
},
|
|
9364
9386
|
"streamingEnabled" : {
|
|
9365
9387
|
"type" : "boolean"
|
|
9366
9388
|
},
|