@lssm/example.agent-console 0.0.0-canary-20251225052113 → 0.0.0-canary-20251225071908
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/.turbo/turbo-build$colon$bundle.log +8 -8
- package/.turbo/turbo-build.log +7 -7
- package/CHANGELOG.md +18 -6
- package/README.md +3 -0
- package/dist/agent/agent.entity.d.ts +36 -36
- package/dist/agent/agent.entity.d.ts.map +1 -1
- package/dist/agent/agent.enum.d.ts +4 -4
- package/dist/agent/agent.event.d.ts +30 -30
- package/dist/agent/agent.operation.d.ts +115 -115
- package/dist/agent/agent.operation.d.ts.map +1 -1
- package/dist/agent/agent.operation.js.map +1 -1
- package/dist/run/run.operation.d.ts +174 -174
- package/dist/run/run.operation.d.ts.map +1 -1
- package/dist/run/run.operation.js.map +1 -1
- package/dist/run/run.schema.d.ts +99 -99
- package/dist/tool/tool.entity.d.ts +24 -24
- package/dist/tool/tool.enum.d.ts +4 -4
- package/dist/tool/tool.event.d.ts +24 -24
- package/dist/tool/tool.operation.d.ts +100 -100
- package/dist/tool/tool.operation.d.ts.map +1 -1
- package/dist/tool/tool.operation.js.map +1 -1
- package/dist/tool/tool.presentation.d.ts.map +1 -1
- package/package.json +8 -8
- package/src/agent/agent.operation.ts +38 -7
- package/src/run/run.operation.ts +16 -2
- package/src/tool/tool.operation.ts +24 -4
- package/tsconfig.tsbuildinfo +1 -1
|
@@ -1,88 +1,88 @@
|
|
|
1
|
-
import * as
|
|
1
|
+
import * as _lssm_lib_schema82 from "@lssm/lib.schema";
|
|
2
2
|
import * as _lssm_lib_contracts3 from "@lssm/lib.contracts";
|
|
3
3
|
|
|
4
4
|
//#region src/agent/agent.operation.d.ts
|
|
5
5
|
/**
|
|
6
6
|
* CreateAgentCommand - Creates a new agent configuration.
|
|
7
7
|
*/
|
|
8
|
-
declare const CreateAgentCommand: _lssm_lib_contracts3.OperationSpec<
|
|
8
|
+
declare const CreateAgentCommand: _lssm_lib_contracts3.OperationSpec<_lssm_lib_schema82.SchemaModel<{
|
|
9
9
|
organizationId: {
|
|
10
|
-
type:
|
|
10
|
+
type: _lssm_lib_schema82.FieldType<string, string>;
|
|
11
11
|
isOptional: false;
|
|
12
12
|
};
|
|
13
13
|
name: {
|
|
14
|
-
type:
|
|
14
|
+
type: _lssm_lib_schema82.FieldType<string, string>;
|
|
15
15
|
isOptional: false;
|
|
16
16
|
};
|
|
17
17
|
slug: {
|
|
18
|
-
type:
|
|
18
|
+
type: _lssm_lib_schema82.FieldType<string, string>;
|
|
19
19
|
isOptional: false;
|
|
20
20
|
};
|
|
21
21
|
description: {
|
|
22
|
-
type:
|
|
22
|
+
type: _lssm_lib_schema82.FieldType<string, string>;
|
|
23
23
|
isOptional: true;
|
|
24
24
|
};
|
|
25
25
|
modelProvider: {
|
|
26
|
-
type:
|
|
26
|
+
type: _lssm_lib_schema82.EnumType<[string, string, string, string, string]>;
|
|
27
27
|
isOptional: false;
|
|
28
28
|
};
|
|
29
29
|
modelName: {
|
|
30
|
-
type:
|
|
30
|
+
type: _lssm_lib_schema82.FieldType<string, string>;
|
|
31
31
|
isOptional: false;
|
|
32
32
|
};
|
|
33
33
|
modelConfig: {
|
|
34
|
-
type:
|
|
34
|
+
type: _lssm_lib_schema82.FieldType<Record<string, unknown>, Record<string, unknown>>;
|
|
35
35
|
isOptional: true;
|
|
36
36
|
};
|
|
37
37
|
systemPrompt: {
|
|
38
|
-
type:
|
|
38
|
+
type: _lssm_lib_schema82.FieldType<string, string>;
|
|
39
39
|
isOptional: false;
|
|
40
40
|
};
|
|
41
41
|
userPromptTemplate: {
|
|
42
|
-
type:
|
|
42
|
+
type: _lssm_lib_schema82.FieldType<string, string>;
|
|
43
43
|
isOptional: true;
|
|
44
44
|
};
|
|
45
45
|
toolIds: {
|
|
46
|
-
type:
|
|
46
|
+
type: _lssm_lib_schema82.FieldType<string, string>;
|
|
47
47
|
isArray: true;
|
|
48
48
|
isOptional: true;
|
|
49
49
|
};
|
|
50
50
|
toolChoice: {
|
|
51
|
-
type:
|
|
51
|
+
type: _lssm_lib_schema82.EnumType<[string, string, string]>;
|
|
52
52
|
isOptional: true;
|
|
53
53
|
};
|
|
54
54
|
maxIterations: {
|
|
55
|
-
type:
|
|
55
|
+
type: _lssm_lib_schema82.FieldType<number, number>;
|
|
56
56
|
isOptional: true;
|
|
57
57
|
};
|
|
58
58
|
maxTokensPerRun: {
|
|
59
|
-
type:
|
|
59
|
+
type: _lssm_lib_schema82.FieldType<number, number>;
|
|
60
60
|
isOptional: true;
|
|
61
61
|
};
|
|
62
62
|
timeoutMs: {
|
|
63
|
-
type:
|
|
63
|
+
type: _lssm_lib_schema82.FieldType<number, number>;
|
|
64
64
|
isOptional: true;
|
|
65
65
|
};
|
|
66
66
|
tags: {
|
|
67
|
-
type:
|
|
67
|
+
type: _lssm_lib_schema82.FieldType<string, string>;
|
|
68
68
|
isArray: true;
|
|
69
69
|
isOptional: true;
|
|
70
70
|
};
|
|
71
|
-
}>,
|
|
71
|
+
}>, _lssm_lib_schema82.SchemaModel<{
|
|
72
72
|
id: {
|
|
73
|
-
type:
|
|
73
|
+
type: _lssm_lib_schema82.FieldType<string, string>;
|
|
74
74
|
isOptional: false;
|
|
75
75
|
};
|
|
76
76
|
name: {
|
|
77
|
-
type:
|
|
77
|
+
type: _lssm_lib_schema82.FieldType<string, string>;
|
|
78
78
|
isOptional: false;
|
|
79
79
|
};
|
|
80
80
|
slug: {
|
|
81
|
-
type:
|
|
81
|
+
type: _lssm_lib_schema82.FieldType<string, string>;
|
|
82
82
|
isOptional: false;
|
|
83
83
|
};
|
|
84
84
|
status: {
|
|
85
|
-
type:
|
|
85
|
+
type: _lssm_lib_schema82.EnumType<[string, string, string, string]>;
|
|
86
86
|
isOptional: false;
|
|
87
87
|
};
|
|
88
88
|
}>, {
|
|
@@ -92,76 +92,76 @@ declare const CreateAgentCommand: _lssm_lib_contracts3.OperationSpec<_lssm_lib_s
|
|
|
92
92
|
/**
|
|
93
93
|
* UpdateAgentCommand - Updates an existing agent.
|
|
94
94
|
*/
|
|
95
|
-
declare const UpdateAgentCommand: _lssm_lib_contracts3.OperationSpec<
|
|
95
|
+
declare const UpdateAgentCommand: _lssm_lib_contracts3.OperationSpec<_lssm_lib_schema82.SchemaModel<{
|
|
96
96
|
agentId: {
|
|
97
|
-
type:
|
|
97
|
+
type: _lssm_lib_schema82.FieldType<string, string>;
|
|
98
98
|
isOptional: false;
|
|
99
99
|
};
|
|
100
100
|
name: {
|
|
101
|
-
type:
|
|
101
|
+
type: _lssm_lib_schema82.FieldType<string, string>;
|
|
102
102
|
isOptional: true;
|
|
103
103
|
};
|
|
104
104
|
description: {
|
|
105
|
-
type:
|
|
105
|
+
type: _lssm_lib_schema82.FieldType<string, string>;
|
|
106
106
|
isOptional: true;
|
|
107
107
|
};
|
|
108
108
|
status: {
|
|
109
|
-
type:
|
|
109
|
+
type: _lssm_lib_schema82.EnumType<[string, string, string, string]>;
|
|
110
110
|
isOptional: true;
|
|
111
111
|
};
|
|
112
112
|
modelConfig: {
|
|
113
|
-
type:
|
|
113
|
+
type: _lssm_lib_schema82.FieldType<Record<string, unknown>, Record<string, unknown>>;
|
|
114
114
|
isOptional: true;
|
|
115
115
|
};
|
|
116
116
|
systemPrompt: {
|
|
117
|
-
type:
|
|
117
|
+
type: _lssm_lib_schema82.FieldType<string, string>;
|
|
118
118
|
isOptional: true;
|
|
119
119
|
};
|
|
120
120
|
userPromptTemplate: {
|
|
121
|
-
type:
|
|
121
|
+
type: _lssm_lib_schema82.FieldType<string, string>;
|
|
122
122
|
isOptional: true;
|
|
123
123
|
};
|
|
124
124
|
toolIds: {
|
|
125
|
-
type:
|
|
125
|
+
type: _lssm_lib_schema82.FieldType<string, string>;
|
|
126
126
|
isArray: true;
|
|
127
127
|
isOptional: true;
|
|
128
128
|
};
|
|
129
129
|
toolChoice: {
|
|
130
|
-
type:
|
|
130
|
+
type: _lssm_lib_schema82.EnumType<[string, string, string]>;
|
|
131
131
|
isOptional: true;
|
|
132
132
|
};
|
|
133
133
|
maxIterations: {
|
|
134
|
-
type:
|
|
134
|
+
type: _lssm_lib_schema82.FieldType<number, number>;
|
|
135
135
|
isOptional: true;
|
|
136
136
|
};
|
|
137
137
|
maxTokensPerRun: {
|
|
138
|
-
type:
|
|
138
|
+
type: _lssm_lib_schema82.FieldType<number, number>;
|
|
139
139
|
isOptional: true;
|
|
140
140
|
};
|
|
141
141
|
timeoutMs: {
|
|
142
|
-
type:
|
|
142
|
+
type: _lssm_lib_schema82.FieldType<number, number>;
|
|
143
143
|
isOptional: true;
|
|
144
144
|
};
|
|
145
145
|
tags: {
|
|
146
|
-
type:
|
|
146
|
+
type: _lssm_lib_schema82.FieldType<string, string>;
|
|
147
147
|
isArray: true;
|
|
148
148
|
isOptional: true;
|
|
149
149
|
};
|
|
150
|
-
}>,
|
|
150
|
+
}>, _lssm_lib_schema82.SchemaModel<{
|
|
151
151
|
id: {
|
|
152
|
-
type:
|
|
152
|
+
type: _lssm_lib_schema82.FieldType<string, string>;
|
|
153
153
|
isOptional: false;
|
|
154
154
|
};
|
|
155
155
|
name: {
|
|
156
|
-
type:
|
|
156
|
+
type: _lssm_lib_schema82.FieldType<string, string>;
|
|
157
157
|
isOptional: false;
|
|
158
158
|
};
|
|
159
159
|
status: {
|
|
160
|
-
type:
|
|
160
|
+
type: _lssm_lib_schema82.EnumType<[string, string, string, string]>;
|
|
161
161
|
isOptional: false;
|
|
162
162
|
};
|
|
163
163
|
updatedAt: {
|
|
164
|
-
type:
|
|
164
|
+
type: _lssm_lib_schema82.FieldType<Date, string>;
|
|
165
165
|
isOptional: false;
|
|
166
166
|
};
|
|
167
167
|
}>, {
|
|
@@ -171,41 +171,41 @@ declare const UpdateAgentCommand: _lssm_lib_contracts3.OperationSpec<_lssm_lib_s
|
|
|
171
171
|
owners: "@agent-console-team"[];
|
|
172
172
|
tags: string[];
|
|
173
173
|
when: string;
|
|
174
|
-
payload:
|
|
174
|
+
payload: _lssm_lib_schema82.SchemaModel<{
|
|
175
175
|
id: {
|
|
176
|
-
type:
|
|
176
|
+
type: _lssm_lib_schema82.FieldType<string, string>;
|
|
177
177
|
isOptional: false;
|
|
178
178
|
};
|
|
179
179
|
name: {
|
|
180
|
-
type:
|
|
180
|
+
type: _lssm_lib_schema82.FieldType<string, string>;
|
|
181
181
|
isOptional: false;
|
|
182
182
|
};
|
|
183
183
|
slug: {
|
|
184
|
-
type:
|
|
184
|
+
type: _lssm_lib_schema82.FieldType<string, string>;
|
|
185
185
|
isOptional: false;
|
|
186
186
|
};
|
|
187
187
|
description: {
|
|
188
|
-
type:
|
|
188
|
+
type: _lssm_lib_schema82.FieldType<string, string>;
|
|
189
189
|
isOptional: true;
|
|
190
190
|
};
|
|
191
191
|
status: {
|
|
192
|
-
type:
|
|
192
|
+
type: _lssm_lib_schema82.EnumType<[string, string, string, string]>;
|
|
193
193
|
isOptional: false;
|
|
194
194
|
};
|
|
195
195
|
modelProvider: {
|
|
196
|
-
type:
|
|
196
|
+
type: _lssm_lib_schema82.EnumType<[string, string, string, string, string]>;
|
|
197
197
|
isOptional: false;
|
|
198
198
|
};
|
|
199
199
|
modelName: {
|
|
200
|
-
type:
|
|
200
|
+
type: _lssm_lib_schema82.FieldType<string, string>;
|
|
201
201
|
isOptional: false;
|
|
202
202
|
};
|
|
203
203
|
version: {
|
|
204
|
-
type:
|
|
204
|
+
type: _lssm_lib_schema82.FieldType<string, string>;
|
|
205
205
|
isOptional: false;
|
|
206
206
|
};
|
|
207
207
|
createdAt: {
|
|
208
|
-
type:
|
|
208
|
+
type: _lssm_lib_schema82.FieldType<Date, string>;
|
|
209
209
|
isOptional: false;
|
|
210
210
|
};
|
|
211
211
|
}>;
|
|
@@ -213,118 +213,118 @@ declare const UpdateAgentCommand: _lssm_lib_contracts3.OperationSpec<_lssm_lib_s
|
|
|
213
213
|
/**
|
|
214
214
|
* GetAgentQuery - Retrieves an agent by ID.
|
|
215
215
|
*/
|
|
216
|
-
declare const GetAgentQuery: _lssm_lib_contracts3.OperationSpec<
|
|
216
|
+
declare const GetAgentQuery: _lssm_lib_contracts3.OperationSpec<_lssm_lib_schema82.SchemaModel<{
|
|
217
217
|
agentId: {
|
|
218
|
-
type:
|
|
218
|
+
type: _lssm_lib_schema82.FieldType<string, string>;
|
|
219
219
|
isOptional: false;
|
|
220
220
|
};
|
|
221
221
|
includeTools: {
|
|
222
|
-
type:
|
|
222
|
+
type: _lssm_lib_schema82.FieldType<boolean, boolean>;
|
|
223
223
|
isOptional: true;
|
|
224
224
|
};
|
|
225
|
-
}>,
|
|
225
|
+
}>, _lssm_lib_schema82.SchemaModel<{
|
|
226
226
|
id: {
|
|
227
|
-
type:
|
|
227
|
+
type: _lssm_lib_schema82.FieldType<string, string>;
|
|
228
228
|
isOptional: false;
|
|
229
229
|
};
|
|
230
230
|
organizationId: {
|
|
231
|
-
type:
|
|
231
|
+
type: _lssm_lib_schema82.FieldType<string, string>;
|
|
232
232
|
isOptional: false;
|
|
233
233
|
};
|
|
234
234
|
name: {
|
|
235
|
-
type:
|
|
235
|
+
type: _lssm_lib_schema82.FieldType<string, string>;
|
|
236
236
|
isOptional: false;
|
|
237
237
|
};
|
|
238
238
|
slug: {
|
|
239
|
-
type:
|
|
239
|
+
type: _lssm_lib_schema82.FieldType<string, string>;
|
|
240
240
|
isOptional: false;
|
|
241
241
|
};
|
|
242
242
|
description: {
|
|
243
|
-
type:
|
|
243
|
+
type: _lssm_lib_schema82.FieldType<string, string>;
|
|
244
244
|
isOptional: true;
|
|
245
245
|
};
|
|
246
246
|
status: {
|
|
247
|
-
type:
|
|
247
|
+
type: _lssm_lib_schema82.EnumType<[string, string, string, string]>;
|
|
248
248
|
isOptional: false;
|
|
249
249
|
};
|
|
250
250
|
modelProvider: {
|
|
251
|
-
type:
|
|
251
|
+
type: _lssm_lib_schema82.EnumType<[string, string, string, string, string]>;
|
|
252
252
|
isOptional: false;
|
|
253
253
|
};
|
|
254
254
|
modelName: {
|
|
255
|
-
type:
|
|
255
|
+
type: _lssm_lib_schema82.FieldType<string, string>;
|
|
256
256
|
isOptional: false;
|
|
257
257
|
};
|
|
258
258
|
modelConfig: {
|
|
259
|
-
type:
|
|
259
|
+
type: _lssm_lib_schema82.FieldType<Record<string, unknown>, Record<string, unknown>>;
|
|
260
260
|
isOptional: true;
|
|
261
261
|
};
|
|
262
262
|
systemPrompt: {
|
|
263
|
-
type:
|
|
263
|
+
type: _lssm_lib_schema82.FieldType<string, string>;
|
|
264
264
|
isOptional: false;
|
|
265
265
|
};
|
|
266
266
|
userPromptTemplate: {
|
|
267
|
-
type:
|
|
267
|
+
type: _lssm_lib_schema82.FieldType<string, string>;
|
|
268
268
|
isOptional: true;
|
|
269
269
|
};
|
|
270
270
|
toolIds: {
|
|
271
|
-
type:
|
|
271
|
+
type: _lssm_lib_schema82.FieldType<string, string>;
|
|
272
272
|
isArray: true;
|
|
273
273
|
isOptional: true;
|
|
274
274
|
};
|
|
275
275
|
toolChoice: {
|
|
276
|
-
type:
|
|
276
|
+
type: _lssm_lib_schema82.EnumType<[string, string, string]>;
|
|
277
277
|
isOptional: false;
|
|
278
278
|
};
|
|
279
279
|
maxIterations: {
|
|
280
|
-
type:
|
|
280
|
+
type: _lssm_lib_schema82.FieldType<number, number>;
|
|
281
281
|
isOptional: false;
|
|
282
282
|
};
|
|
283
283
|
maxTokensPerRun: {
|
|
284
|
-
type:
|
|
284
|
+
type: _lssm_lib_schema82.FieldType<number, number>;
|
|
285
285
|
isOptional: true;
|
|
286
286
|
};
|
|
287
287
|
timeoutMs: {
|
|
288
|
-
type:
|
|
288
|
+
type: _lssm_lib_schema82.FieldType<number, number>;
|
|
289
289
|
isOptional: false;
|
|
290
290
|
};
|
|
291
291
|
version: {
|
|
292
|
-
type:
|
|
292
|
+
type: _lssm_lib_schema82.FieldType<string, string>;
|
|
293
293
|
isOptional: false;
|
|
294
294
|
};
|
|
295
295
|
tags: {
|
|
296
|
-
type:
|
|
296
|
+
type: _lssm_lib_schema82.FieldType<string, string>;
|
|
297
297
|
isArray: true;
|
|
298
298
|
isOptional: true;
|
|
299
299
|
};
|
|
300
300
|
createdAt: {
|
|
301
|
-
type:
|
|
301
|
+
type: _lssm_lib_schema82.FieldType<Date, string>;
|
|
302
302
|
isOptional: false;
|
|
303
303
|
};
|
|
304
304
|
updatedAt: {
|
|
305
|
-
type:
|
|
305
|
+
type: _lssm_lib_schema82.FieldType<Date, string>;
|
|
306
306
|
isOptional: false;
|
|
307
307
|
};
|
|
308
308
|
tools: {
|
|
309
|
-
type:
|
|
309
|
+
type: _lssm_lib_schema82.SchemaModel<{
|
|
310
310
|
id: {
|
|
311
|
-
type:
|
|
311
|
+
type: _lssm_lib_schema82.FieldType<string, string>;
|
|
312
312
|
isOptional: false;
|
|
313
313
|
};
|
|
314
314
|
name: {
|
|
315
|
-
type:
|
|
315
|
+
type: _lssm_lib_schema82.FieldType<string, string>;
|
|
316
316
|
isOptional: false;
|
|
317
317
|
};
|
|
318
318
|
slug: {
|
|
319
|
-
type:
|
|
319
|
+
type: _lssm_lib_schema82.FieldType<string, string>;
|
|
320
320
|
isOptional: false;
|
|
321
321
|
};
|
|
322
322
|
description: {
|
|
323
|
-
type:
|
|
323
|
+
type: _lssm_lib_schema82.FieldType<string, string>;
|
|
324
324
|
isOptional: false;
|
|
325
325
|
};
|
|
326
326
|
category: {
|
|
327
|
-
type:
|
|
327
|
+
type: _lssm_lib_schema82.FieldType<string, string>;
|
|
328
328
|
isOptional: false;
|
|
329
329
|
};
|
|
330
330
|
}>;
|
|
@@ -335,70 +335,70 @@ declare const GetAgentQuery: _lssm_lib_contracts3.OperationSpec<_lssm_lib_schema
|
|
|
335
335
|
/**
|
|
336
336
|
* ListAgentsQuery - Lists agents for an organization.
|
|
337
337
|
*/
|
|
338
|
-
declare const ListAgentsQuery: _lssm_lib_contracts3.OperationSpec<
|
|
338
|
+
declare const ListAgentsQuery: _lssm_lib_contracts3.OperationSpec<_lssm_lib_schema82.SchemaModel<{
|
|
339
339
|
organizationId: {
|
|
340
|
-
type:
|
|
340
|
+
type: _lssm_lib_schema82.FieldType<string, string>;
|
|
341
341
|
isOptional: false;
|
|
342
342
|
};
|
|
343
343
|
status: {
|
|
344
|
-
type:
|
|
344
|
+
type: _lssm_lib_schema82.EnumType<[string, string, string, string]>;
|
|
345
345
|
isOptional: true;
|
|
346
346
|
};
|
|
347
347
|
modelProvider: {
|
|
348
|
-
type:
|
|
348
|
+
type: _lssm_lib_schema82.EnumType<[string, string, string, string, string]>;
|
|
349
349
|
isOptional: true;
|
|
350
350
|
};
|
|
351
351
|
search: {
|
|
352
|
-
type:
|
|
352
|
+
type: _lssm_lib_schema82.FieldType<string, string>;
|
|
353
353
|
isOptional: true;
|
|
354
354
|
};
|
|
355
355
|
limit: {
|
|
356
|
-
type:
|
|
356
|
+
type: _lssm_lib_schema82.FieldType<number, number>;
|
|
357
357
|
isOptional: true;
|
|
358
358
|
defaultValue: number;
|
|
359
359
|
};
|
|
360
360
|
offset: {
|
|
361
|
-
type:
|
|
361
|
+
type: _lssm_lib_schema82.FieldType<number, number>;
|
|
362
362
|
isOptional: true;
|
|
363
363
|
defaultValue: number;
|
|
364
364
|
};
|
|
365
|
-
}>,
|
|
365
|
+
}>, _lssm_lib_schema82.SchemaModel<{
|
|
366
366
|
items: {
|
|
367
|
-
type:
|
|
367
|
+
type: _lssm_lib_schema82.SchemaModel<{
|
|
368
368
|
id: {
|
|
369
|
-
type:
|
|
369
|
+
type: _lssm_lib_schema82.FieldType<string, string>;
|
|
370
370
|
isOptional: false;
|
|
371
371
|
};
|
|
372
372
|
name: {
|
|
373
|
-
type:
|
|
373
|
+
type: _lssm_lib_schema82.FieldType<string, string>;
|
|
374
374
|
isOptional: false;
|
|
375
375
|
};
|
|
376
376
|
slug: {
|
|
377
|
-
type:
|
|
377
|
+
type: _lssm_lib_schema82.FieldType<string, string>;
|
|
378
378
|
isOptional: false;
|
|
379
379
|
};
|
|
380
380
|
description: {
|
|
381
|
-
type:
|
|
381
|
+
type: _lssm_lib_schema82.FieldType<string, string>;
|
|
382
382
|
isOptional: true;
|
|
383
383
|
};
|
|
384
384
|
status: {
|
|
385
|
-
type:
|
|
385
|
+
type: _lssm_lib_schema82.EnumType<[string, string, string, string]>;
|
|
386
386
|
isOptional: false;
|
|
387
387
|
};
|
|
388
388
|
modelProvider: {
|
|
389
|
-
type:
|
|
389
|
+
type: _lssm_lib_schema82.EnumType<[string, string, string, string, string]>;
|
|
390
390
|
isOptional: false;
|
|
391
391
|
};
|
|
392
392
|
modelName: {
|
|
393
|
-
type:
|
|
393
|
+
type: _lssm_lib_schema82.FieldType<string, string>;
|
|
394
394
|
isOptional: false;
|
|
395
395
|
};
|
|
396
396
|
version: {
|
|
397
|
-
type:
|
|
397
|
+
type: _lssm_lib_schema82.FieldType<string, string>;
|
|
398
398
|
isOptional: false;
|
|
399
399
|
};
|
|
400
400
|
createdAt: {
|
|
401
|
-
type:
|
|
401
|
+
type: _lssm_lib_schema82.FieldType<Date, string>;
|
|
402
402
|
isOptional: false;
|
|
403
403
|
};
|
|
404
404
|
}>;
|
|
@@ -406,63 +406,63 @@ declare const ListAgentsQuery: _lssm_lib_contracts3.OperationSpec<_lssm_lib_sche
|
|
|
406
406
|
isOptional: false;
|
|
407
407
|
};
|
|
408
408
|
total: {
|
|
409
|
-
type:
|
|
409
|
+
type: _lssm_lib_schema82.FieldType<number, number>;
|
|
410
410
|
isOptional: false;
|
|
411
411
|
};
|
|
412
412
|
hasMore: {
|
|
413
|
-
type:
|
|
413
|
+
type: _lssm_lib_schema82.FieldType<boolean, boolean>;
|
|
414
414
|
isOptional: false;
|
|
415
415
|
};
|
|
416
416
|
}>, undefined>;
|
|
417
417
|
/**
|
|
418
418
|
* AssignToolToAgentCommand - Assigns a tool to an agent.
|
|
419
419
|
*/
|
|
420
|
-
declare const AssignToolToAgentCommand: _lssm_lib_contracts3.OperationSpec<
|
|
420
|
+
declare const AssignToolToAgentCommand: _lssm_lib_contracts3.OperationSpec<_lssm_lib_schema82.SchemaModel<{
|
|
421
421
|
agentId: {
|
|
422
|
-
type:
|
|
422
|
+
type: _lssm_lib_schema82.FieldType<string, string>;
|
|
423
423
|
isOptional: false;
|
|
424
424
|
};
|
|
425
425
|
toolId: {
|
|
426
|
-
type:
|
|
426
|
+
type: _lssm_lib_schema82.FieldType<string, string>;
|
|
427
427
|
isOptional: false;
|
|
428
428
|
};
|
|
429
429
|
config: {
|
|
430
|
-
type:
|
|
430
|
+
type: _lssm_lib_schema82.FieldType<Record<string, unknown>, Record<string, unknown>>;
|
|
431
431
|
isOptional: true;
|
|
432
432
|
};
|
|
433
433
|
order: {
|
|
434
|
-
type:
|
|
434
|
+
type: _lssm_lib_schema82.FieldType<number, number>;
|
|
435
435
|
isOptional: true;
|
|
436
436
|
};
|
|
437
|
-
}>,
|
|
437
|
+
}>, _lssm_lib_schema82.SchemaModel<{
|
|
438
438
|
agentToolId: {
|
|
439
|
-
type:
|
|
439
|
+
type: _lssm_lib_schema82.FieldType<string, string>;
|
|
440
440
|
isOptional: false;
|
|
441
441
|
};
|
|
442
442
|
agentId: {
|
|
443
|
-
type:
|
|
443
|
+
type: _lssm_lib_schema82.FieldType<string, string>;
|
|
444
444
|
isOptional: false;
|
|
445
445
|
};
|
|
446
446
|
toolId: {
|
|
447
|
-
type:
|
|
447
|
+
type: _lssm_lib_schema82.FieldType<string, string>;
|
|
448
448
|
isOptional: false;
|
|
449
449
|
};
|
|
450
450
|
}>, undefined>;
|
|
451
451
|
/**
|
|
452
452
|
* RemoveToolFromAgentCommand - Removes a tool from an agent.
|
|
453
453
|
*/
|
|
454
|
-
declare const RemoveToolFromAgentCommand: _lssm_lib_contracts3.OperationSpec<
|
|
454
|
+
declare const RemoveToolFromAgentCommand: _lssm_lib_contracts3.OperationSpec<_lssm_lib_schema82.SchemaModel<{
|
|
455
455
|
agentId: {
|
|
456
|
-
type:
|
|
456
|
+
type: _lssm_lib_schema82.FieldType<string, string>;
|
|
457
457
|
isOptional: false;
|
|
458
458
|
};
|
|
459
459
|
toolId: {
|
|
460
|
-
type:
|
|
460
|
+
type: _lssm_lib_schema82.FieldType<string, string>;
|
|
461
461
|
isOptional: false;
|
|
462
462
|
};
|
|
463
|
-
}>,
|
|
463
|
+
}>, _lssm_lib_schema82.SchemaModel<{
|
|
464
464
|
success: {
|
|
465
|
-
type:
|
|
465
|
+
type: _lssm_lib_schema82.FieldType<boolean, boolean>;
|
|
466
466
|
isOptional: false;
|
|
467
467
|
};
|
|
468
468
|
}>, undefined>;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"agent.operation.d.ts","names":[],"sources":["../../src/agent/agent.operation.ts"],"sourcesContent":[],"mappings":";;;;;;;cAgBa,yCAAkB,
|
|
1
|
+
{"version":3,"file":"agent.operation.d.ts","names":[],"sources":["../../src/agent/agent.operation.ts"],"sourcesContent":[],"mappings":";;;;;;;cAgBa,yCAAkB,iCAAA;EAAlB,cAAA,EAAA;IAiFX,IAAA,EAAA,kBAAA,CAAA,SAAA,CAAA,MAAA,EAAA,MAAA,CAAA;;;;;;;;;;;;;;;;;gBAjF6B,KAAA;EAAA,CAAA;;;;;;sCAAA,OAAA,CAAA,MAAA,EAAA,OAAA,CAAA,QAAA,CAAA,MAAA,EAAA,OAAA,CAAA,CAAA;IAAA,UAAA,EAAA,IAAA;EAsFlB,CAAA;EA8EX,YAAA,EAAA;;;;;;;;;;;;;;;gBA9E6B,IAAA;EAAA,CAAA;;;;;;;;;;;;;;;;;;CAAA,CAAA,gCAAA,CAAA;EAmFlB,EAAA,EAAA;IA0DX,IAAA,EAnO6B,kBAAA,CAAA,SAmO7B,CAAA,MAAA,EAAA,MAAA,CAAA;;;EA1DwB,IAAA,EAAA;;;;;;;;;;;;;;;;;;;cAnFb,yCAAkB,iCAAA;;UA8E7B,kBAAA,CAAA;;;;;;;;;;;EAKwB,MAAA,EAAA;IA+Db,IAAA,6BAmEX,CAAA,CAAA,MAAA,EAAA,MAAA,EAAA,MAAA,EAAA,MAAA,CAAA,CAAA;IAAA,UAAA,EAAA,IAAA;;;;;;;IAnE0B,IAAA,8BAAA,CAAA,MAAA,EAAA,MAAA,CAAA;;;;;;;;;;;;;;oBAAA;EAAA,CAAA;EAwEf,aAAA,EAAA;IAsEX,IAAA,8BAAA,CAAA,MAAA,EAAA,MAAA,CAAA;;;;;;;EAtEmC,SAAA,EAAA;;;;;IAAA,IAAA,8BAAA,CAAA,MAAA,EAAA,MAAA,CAAA;IA2ExB,OAAA,EAAA,IAAA;IA6CX,UAAA,EAAA,IAAA;;kCA7CqC,CAAA;EAAA,EAAA,EAAA;UArSR,kBAAA,CAAA;qBAqSQ;EAAA,CAAA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;cAlN1B,oCAAa,iCAAA;;UA0DxB,kBAAA,CAAA;;;;;;;;;UA1DwB,kBAAA,CAAA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;cA+Db,sCAAe,iCAAA;;UAmE1B,kBAAA,CAAA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;cAnE0B,kBAAA,CAAA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;cAwEf,+CAAwB,iCAAA;;UAsEnC,kBAAA,CAAA;;;;;;;;;;;;;;;;;UAtEmC,kBAAA,CAAA;;;;;;;;;;;;;;;cA2ExB,iDAA0B,iCAAA;;UA6CrC,kBAAA,CAAA;;;;;;;;;UA7CqC,kBAAA,CAAA"}
|