@lssm/example.agent-console 0.0.0-canary-20251220002821 → 0.0.0-canary-20251220021406
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 +34 -34
- package/.turbo/turbo-build.log +34 -34
- package/CHANGELOG.md +6 -6
- package/dist/agent/agent.contracts.d.ts +126 -126
- package/dist/agent/agent.contracts.d.ts.map +1 -1
- package/dist/agent/agent.entity.d.ts +36 -36
- package/dist/agent/agent.enum.d.ts +4 -4
- package/dist/agent/agent.event.d.ts +31 -31
- package/dist/agent/agent.event.d.ts.map +1 -1
- package/dist/agent/agent.schema.d.ts +95 -95
- package/dist/libs/contracts/dist/ownership.js +1 -0
- package/dist/libs/contracts/dist/ownership.js.map +1 -1
- package/dist/run/run.contracts.d.ts +175 -175
- package/dist/run/run.entity.d.ts +56 -56
- package/dist/run/run.enum.d.ts +5 -5
- package/dist/run/run.event.d.ts +71 -71
- package/dist/run/run.schema.d.ts +99 -99
- package/dist/tool/tool.contracts.d.ts +101 -101
- package/dist/tool/tool.contracts.d.ts.map +1 -1
- 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 +25 -25
- package/dist/tool/tool.presentation.d.ts.map +1 -1
- package/package.json +8 -8
- package/tsconfig.tsbuildinfo +1 -1
|
@@ -1,126 +1,126 @@
|
|
|
1
|
-
import * as
|
|
2
|
-
import * as
|
|
1
|
+
import * as _lssm_lib_contracts0 from "@lssm/lib.contracts";
|
|
2
|
+
import * as _lssm_lib_schema50 from "@lssm/lib.schema";
|
|
3
3
|
|
|
4
4
|
//#region src/agent/agent.contracts.d.ts
|
|
5
5
|
/**
|
|
6
6
|
* CreateAgentCommand - Creates a new agent configuration.
|
|
7
7
|
*/
|
|
8
|
-
declare const CreateAgentCommand:
|
|
8
|
+
declare const CreateAgentCommand: _lssm_lib_contracts0.ContractSpec<_lssm_lib_schema50.SchemaModel<{
|
|
9
9
|
organizationId: {
|
|
10
|
-
type:
|
|
10
|
+
type: _lssm_lib_schema50.FieldType<string, string>;
|
|
11
11
|
isOptional: false;
|
|
12
12
|
};
|
|
13
13
|
name: {
|
|
14
|
-
type:
|
|
14
|
+
type: _lssm_lib_schema50.FieldType<string, string>;
|
|
15
15
|
isOptional: false;
|
|
16
16
|
};
|
|
17
17
|
slug: {
|
|
18
|
-
type:
|
|
18
|
+
type: _lssm_lib_schema50.FieldType<string, string>;
|
|
19
19
|
isOptional: false;
|
|
20
20
|
};
|
|
21
21
|
description: {
|
|
22
|
-
type:
|
|
22
|
+
type: _lssm_lib_schema50.FieldType<string, string>;
|
|
23
23
|
isOptional: true;
|
|
24
24
|
};
|
|
25
25
|
modelProvider: {
|
|
26
|
-
type:
|
|
26
|
+
type: _lssm_lib_schema50.EnumType<[string, string, string, string, string]>;
|
|
27
27
|
isOptional: false;
|
|
28
28
|
};
|
|
29
29
|
modelName: {
|
|
30
|
-
type:
|
|
30
|
+
type: _lssm_lib_schema50.FieldType<string, string>;
|
|
31
31
|
isOptional: false;
|
|
32
32
|
};
|
|
33
33
|
modelConfig: {
|
|
34
|
-
type:
|
|
34
|
+
type: _lssm_lib_schema50.FieldType<Record<string, unknown>, Record<string, unknown>>;
|
|
35
35
|
isOptional: true;
|
|
36
36
|
};
|
|
37
37
|
systemPrompt: {
|
|
38
|
-
type:
|
|
38
|
+
type: _lssm_lib_schema50.FieldType<string, string>;
|
|
39
39
|
isOptional: false;
|
|
40
40
|
};
|
|
41
41
|
userPromptTemplate: {
|
|
42
|
-
type:
|
|
42
|
+
type: _lssm_lib_schema50.FieldType<string, string>;
|
|
43
43
|
isOptional: true;
|
|
44
44
|
};
|
|
45
45
|
toolIds: {
|
|
46
|
-
type:
|
|
46
|
+
type: _lssm_lib_schema50.FieldType<string, string>;
|
|
47
47
|
isArray: true;
|
|
48
48
|
isOptional: true;
|
|
49
49
|
};
|
|
50
50
|
toolChoice: {
|
|
51
|
-
type:
|
|
51
|
+
type: _lssm_lib_schema50.EnumType<[string, string, string]>;
|
|
52
52
|
isOptional: true;
|
|
53
53
|
};
|
|
54
54
|
maxIterations: {
|
|
55
|
-
type:
|
|
55
|
+
type: _lssm_lib_schema50.FieldType<number, number>;
|
|
56
56
|
isOptional: true;
|
|
57
57
|
};
|
|
58
58
|
maxTokensPerRun: {
|
|
59
|
-
type:
|
|
59
|
+
type: _lssm_lib_schema50.FieldType<number, number>;
|
|
60
60
|
isOptional: true;
|
|
61
61
|
};
|
|
62
62
|
timeoutMs: {
|
|
63
|
-
type:
|
|
63
|
+
type: _lssm_lib_schema50.FieldType<number, number>;
|
|
64
64
|
isOptional: true;
|
|
65
65
|
};
|
|
66
66
|
tags: {
|
|
67
|
-
type:
|
|
67
|
+
type: _lssm_lib_schema50.FieldType<string, string>;
|
|
68
68
|
isArray: true;
|
|
69
69
|
isOptional: true;
|
|
70
70
|
};
|
|
71
|
-
}>,
|
|
71
|
+
}>, _lssm_lib_schema50.SchemaModel<{
|
|
72
72
|
id: {
|
|
73
|
-
type:
|
|
73
|
+
type: _lssm_lib_schema50.FieldType<string, string>;
|
|
74
74
|
isOptional: false;
|
|
75
75
|
};
|
|
76
76
|
name: {
|
|
77
|
-
type:
|
|
77
|
+
type: _lssm_lib_schema50.FieldType<string, string>;
|
|
78
78
|
isOptional: false;
|
|
79
79
|
};
|
|
80
80
|
slug: {
|
|
81
|
-
type:
|
|
81
|
+
type: _lssm_lib_schema50.FieldType<string, string>;
|
|
82
82
|
isOptional: false;
|
|
83
83
|
};
|
|
84
84
|
status: {
|
|
85
|
-
type:
|
|
85
|
+
type: _lssm_lib_schema50.EnumType<[string, string, string, string]>;
|
|
86
86
|
isOptional: false;
|
|
87
87
|
};
|
|
88
88
|
}>, {
|
|
89
|
-
ref:
|
|
89
|
+
ref: _lssm_lib_contracts0.EventSpec<_lssm_lib_schema50.SchemaModel<{
|
|
90
90
|
id: {
|
|
91
|
-
type:
|
|
91
|
+
type: _lssm_lib_schema50.FieldType<string, string>;
|
|
92
92
|
isOptional: false;
|
|
93
93
|
};
|
|
94
94
|
organizationId: {
|
|
95
|
-
type:
|
|
95
|
+
type: _lssm_lib_schema50.FieldType<string, string>;
|
|
96
96
|
isOptional: false;
|
|
97
97
|
};
|
|
98
98
|
name: {
|
|
99
|
-
type:
|
|
99
|
+
type: _lssm_lib_schema50.FieldType<string, string>;
|
|
100
100
|
isOptional: false;
|
|
101
101
|
};
|
|
102
102
|
slug: {
|
|
103
|
-
type:
|
|
103
|
+
type: _lssm_lib_schema50.FieldType<string, string>;
|
|
104
104
|
isOptional: false;
|
|
105
105
|
};
|
|
106
106
|
modelProvider: {
|
|
107
|
-
type:
|
|
107
|
+
type: _lssm_lib_schema50.FieldType<string, string>;
|
|
108
108
|
isOptional: false;
|
|
109
109
|
};
|
|
110
110
|
modelName: {
|
|
111
|
-
type:
|
|
111
|
+
type: _lssm_lib_schema50.FieldType<string, string>;
|
|
112
112
|
isOptional: false;
|
|
113
113
|
};
|
|
114
114
|
toolCount: {
|
|
115
|
-
type:
|
|
115
|
+
type: _lssm_lib_schema50.FieldType<number, number>;
|
|
116
116
|
isOptional: false;
|
|
117
117
|
};
|
|
118
118
|
createdById: {
|
|
119
|
-
type:
|
|
119
|
+
type: _lssm_lib_schema50.FieldType<string, string>;
|
|
120
120
|
isOptional: true;
|
|
121
121
|
};
|
|
122
122
|
createdAt: {
|
|
123
|
-
type:
|
|
123
|
+
type: _lssm_lib_schema50.FieldType<Date, string>;
|
|
124
124
|
isOptional: false;
|
|
125
125
|
};
|
|
126
126
|
}>>;
|
|
@@ -129,117 +129,117 @@ declare const CreateAgentCommand: _lssm_lib_contracts4.ContractSpec<_lssm_lib_sc
|
|
|
129
129
|
/**
|
|
130
130
|
* UpdateAgentCommand - Updates an existing agent.
|
|
131
131
|
*/
|
|
132
|
-
declare const UpdateAgentCommand:
|
|
132
|
+
declare const UpdateAgentCommand: _lssm_lib_contracts0.ContractSpec<_lssm_lib_schema50.SchemaModel<{
|
|
133
133
|
agentId: {
|
|
134
|
-
type:
|
|
134
|
+
type: _lssm_lib_schema50.FieldType<string, string>;
|
|
135
135
|
isOptional: false;
|
|
136
136
|
};
|
|
137
137
|
name: {
|
|
138
|
-
type:
|
|
138
|
+
type: _lssm_lib_schema50.FieldType<string, string>;
|
|
139
139
|
isOptional: true;
|
|
140
140
|
};
|
|
141
141
|
description: {
|
|
142
|
-
type:
|
|
142
|
+
type: _lssm_lib_schema50.FieldType<string, string>;
|
|
143
143
|
isOptional: true;
|
|
144
144
|
};
|
|
145
145
|
status: {
|
|
146
|
-
type:
|
|
146
|
+
type: _lssm_lib_schema50.EnumType<[string, string, string, string]>;
|
|
147
147
|
isOptional: true;
|
|
148
148
|
};
|
|
149
149
|
modelConfig: {
|
|
150
|
-
type:
|
|
150
|
+
type: _lssm_lib_schema50.FieldType<Record<string, unknown>, Record<string, unknown>>;
|
|
151
151
|
isOptional: true;
|
|
152
152
|
};
|
|
153
153
|
systemPrompt: {
|
|
154
|
-
type:
|
|
154
|
+
type: _lssm_lib_schema50.FieldType<string, string>;
|
|
155
155
|
isOptional: true;
|
|
156
156
|
};
|
|
157
157
|
userPromptTemplate: {
|
|
158
|
-
type:
|
|
158
|
+
type: _lssm_lib_schema50.FieldType<string, string>;
|
|
159
159
|
isOptional: true;
|
|
160
160
|
};
|
|
161
161
|
toolIds: {
|
|
162
|
-
type:
|
|
162
|
+
type: _lssm_lib_schema50.FieldType<string, string>;
|
|
163
163
|
isArray: true;
|
|
164
164
|
isOptional: true;
|
|
165
165
|
};
|
|
166
166
|
toolChoice: {
|
|
167
|
-
type:
|
|
167
|
+
type: _lssm_lib_schema50.EnumType<[string, string, string]>;
|
|
168
168
|
isOptional: true;
|
|
169
169
|
};
|
|
170
170
|
maxIterations: {
|
|
171
|
-
type:
|
|
171
|
+
type: _lssm_lib_schema50.FieldType<number, number>;
|
|
172
172
|
isOptional: true;
|
|
173
173
|
};
|
|
174
174
|
maxTokensPerRun: {
|
|
175
|
-
type:
|
|
175
|
+
type: _lssm_lib_schema50.FieldType<number, number>;
|
|
176
176
|
isOptional: true;
|
|
177
177
|
};
|
|
178
178
|
timeoutMs: {
|
|
179
|
-
type:
|
|
179
|
+
type: _lssm_lib_schema50.FieldType<number, number>;
|
|
180
180
|
isOptional: true;
|
|
181
181
|
};
|
|
182
182
|
tags: {
|
|
183
|
-
type:
|
|
183
|
+
type: _lssm_lib_schema50.FieldType<string, string>;
|
|
184
184
|
isArray: true;
|
|
185
185
|
isOptional: true;
|
|
186
186
|
};
|
|
187
|
-
}>,
|
|
187
|
+
}>, _lssm_lib_schema50.SchemaModel<{
|
|
188
188
|
id: {
|
|
189
|
-
type:
|
|
189
|
+
type: _lssm_lib_schema50.FieldType<string, string>;
|
|
190
190
|
isOptional: false;
|
|
191
191
|
};
|
|
192
192
|
name: {
|
|
193
|
-
type:
|
|
193
|
+
type: _lssm_lib_schema50.FieldType<string, string>;
|
|
194
194
|
isOptional: false;
|
|
195
195
|
};
|
|
196
196
|
status: {
|
|
197
|
-
type:
|
|
197
|
+
type: _lssm_lib_schema50.EnumType<[string, string, string, string]>;
|
|
198
198
|
isOptional: false;
|
|
199
199
|
};
|
|
200
200
|
updatedAt: {
|
|
201
|
-
type:
|
|
201
|
+
type: _lssm_lib_schema50.FieldType<Date, string>;
|
|
202
202
|
isOptional: false;
|
|
203
203
|
};
|
|
204
204
|
}>, {
|
|
205
205
|
name: string;
|
|
206
206
|
version: number;
|
|
207
207
|
when: string;
|
|
208
|
-
payload:
|
|
208
|
+
payload: _lssm_lib_schema50.SchemaModel<{
|
|
209
209
|
id: {
|
|
210
|
-
type:
|
|
210
|
+
type: _lssm_lib_schema50.FieldType<string, string>;
|
|
211
211
|
isOptional: false;
|
|
212
212
|
};
|
|
213
213
|
name: {
|
|
214
|
-
type:
|
|
214
|
+
type: _lssm_lib_schema50.FieldType<string, string>;
|
|
215
215
|
isOptional: false;
|
|
216
216
|
};
|
|
217
217
|
slug: {
|
|
218
|
-
type:
|
|
218
|
+
type: _lssm_lib_schema50.FieldType<string, string>;
|
|
219
219
|
isOptional: false;
|
|
220
220
|
};
|
|
221
221
|
description: {
|
|
222
|
-
type:
|
|
222
|
+
type: _lssm_lib_schema50.FieldType<string, string>;
|
|
223
223
|
isOptional: true;
|
|
224
224
|
};
|
|
225
225
|
status: {
|
|
226
|
-
type:
|
|
226
|
+
type: _lssm_lib_schema50.EnumType<[string, string, string, string]>;
|
|
227
227
|
isOptional: false;
|
|
228
228
|
};
|
|
229
229
|
modelProvider: {
|
|
230
|
-
type:
|
|
230
|
+
type: _lssm_lib_schema50.EnumType<[string, string, string, string, string]>;
|
|
231
231
|
isOptional: false;
|
|
232
232
|
};
|
|
233
233
|
modelName: {
|
|
234
|
-
type:
|
|
234
|
+
type: _lssm_lib_schema50.FieldType<string, string>;
|
|
235
235
|
isOptional: false;
|
|
236
236
|
};
|
|
237
237
|
version: {
|
|
238
|
-
type:
|
|
238
|
+
type: _lssm_lib_schema50.FieldType<string, string>;
|
|
239
239
|
isOptional: false;
|
|
240
240
|
};
|
|
241
241
|
createdAt: {
|
|
242
|
-
type:
|
|
242
|
+
type: _lssm_lib_schema50.FieldType<Date, string>;
|
|
243
243
|
isOptional: false;
|
|
244
244
|
};
|
|
245
245
|
}>;
|
|
@@ -247,118 +247,118 @@ declare const UpdateAgentCommand: _lssm_lib_contracts4.ContractSpec<_lssm_lib_sc
|
|
|
247
247
|
/**
|
|
248
248
|
* GetAgentQuery - Retrieves an agent by ID.
|
|
249
249
|
*/
|
|
250
|
-
declare const GetAgentQuery:
|
|
250
|
+
declare const GetAgentQuery: _lssm_lib_contracts0.ContractSpec<_lssm_lib_schema50.SchemaModel<{
|
|
251
251
|
agentId: {
|
|
252
|
-
type:
|
|
252
|
+
type: _lssm_lib_schema50.FieldType<string, string>;
|
|
253
253
|
isOptional: false;
|
|
254
254
|
};
|
|
255
255
|
includeTools: {
|
|
256
|
-
type:
|
|
256
|
+
type: _lssm_lib_schema50.FieldType<boolean, boolean>;
|
|
257
257
|
isOptional: true;
|
|
258
258
|
};
|
|
259
|
-
}>,
|
|
259
|
+
}>, _lssm_lib_schema50.SchemaModel<{
|
|
260
260
|
id: {
|
|
261
|
-
type:
|
|
261
|
+
type: _lssm_lib_schema50.FieldType<string, string>;
|
|
262
262
|
isOptional: false;
|
|
263
263
|
};
|
|
264
264
|
organizationId: {
|
|
265
|
-
type:
|
|
265
|
+
type: _lssm_lib_schema50.FieldType<string, string>;
|
|
266
266
|
isOptional: false;
|
|
267
267
|
};
|
|
268
268
|
name: {
|
|
269
|
-
type:
|
|
269
|
+
type: _lssm_lib_schema50.FieldType<string, string>;
|
|
270
270
|
isOptional: false;
|
|
271
271
|
};
|
|
272
272
|
slug: {
|
|
273
|
-
type:
|
|
273
|
+
type: _lssm_lib_schema50.FieldType<string, string>;
|
|
274
274
|
isOptional: false;
|
|
275
275
|
};
|
|
276
276
|
description: {
|
|
277
|
-
type:
|
|
277
|
+
type: _lssm_lib_schema50.FieldType<string, string>;
|
|
278
278
|
isOptional: true;
|
|
279
279
|
};
|
|
280
280
|
status: {
|
|
281
|
-
type:
|
|
281
|
+
type: _lssm_lib_schema50.EnumType<[string, string, string, string]>;
|
|
282
282
|
isOptional: false;
|
|
283
283
|
};
|
|
284
284
|
modelProvider: {
|
|
285
|
-
type:
|
|
285
|
+
type: _lssm_lib_schema50.EnumType<[string, string, string, string, string]>;
|
|
286
286
|
isOptional: false;
|
|
287
287
|
};
|
|
288
288
|
modelName: {
|
|
289
|
-
type:
|
|
289
|
+
type: _lssm_lib_schema50.FieldType<string, string>;
|
|
290
290
|
isOptional: false;
|
|
291
291
|
};
|
|
292
292
|
modelConfig: {
|
|
293
|
-
type:
|
|
293
|
+
type: _lssm_lib_schema50.FieldType<Record<string, unknown>, Record<string, unknown>>;
|
|
294
294
|
isOptional: true;
|
|
295
295
|
};
|
|
296
296
|
systemPrompt: {
|
|
297
|
-
type:
|
|
297
|
+
type: _lssm_lib_schema50.FieldType<string, string>;
|
|
298
298
|
isOptional: false;
|
|
299
299
|
};
|
|
300
300
|
userPromptTemplate: {
|
|
301
|
-
type:
|
|
301
|
+
type: _lssm_lib_schema50.FieldType<string, string>;
|
|
302
302
|
isOptional: true;
|
|
303
303
|
};
|
|
304
304
|
toolIds: {
|
|
305
|
-
type:
|
|
305
|
+
type: _lssm_lib_schema50.FieldType<string, string>;
|
|
306
306
|
isArray: true;
|
|
307
307
|
isOptional: true;
|
|
308
308
|
};
|
|
309
309
|
toolChoice: {
|
|
310
|
-
type:
|
|
310
|
+
type: _lssm_lib_schema50.EnumType<[string, string, string]>;
|
|
311
311
|
isOptional: false;
|
|
312
312
|
};
|
|
313
313
|
maxIterations: {
|
|
314
|
-
type:
|
|
314
|
+
type: _lssm_lib_schema50.FieldType<number, number>;
|
|
315
315
|
isOptional: false;
|
|
316
316
|
};
|
|
317
317
|
maxTokensPerRun: {
|
|
318
|
-
type:
|
|
318
|
+
type: _lssm_lib_schema50.FieldType<number, number>;
|
|
319
319
|
isOptional: true;
|
|
320
320
|
};
|
|
321
321
|
timeoutMs: {
|
|
322
|
-
type:
|
|
322
|
+
type: _lssm_lib_schema50.FieldType<number, number>;
|
|
323
323
|
isOptional: false;
|
|
324
324
|
};
|
|
325
325
|
version: {
|
|
326
|
-
type:
|
|
326
|
+
type: _lssm_lib_schema50.FieldType<string, string>;
|
|
327
327
|
isOptional: false;
|
|
328
328
|
};
|
|
329
329
|
tags: {
|
|
330
|
-
type:
|
|
330
|
+
type: _lssm_lib_schema50.FieldType<string, string>;
|
|
331
331
|
isArray: true;
|
|
332
332
|
isOptional: true;
|
|
333
333
|
};
|
|
334
334
|
createdAt: {
|
|
335
|
-
type:
|
|
335
|
+
type: _lssm_lib_schema50.FieldType<Date, string>;
|
|
336
336
|
isOptional: false;
|
|
337
337
|
};
|
|
338
338
|
updatedAt: {
|
|
339
|
-
type:
|
|
339
|
+
type: _lssm_lib_schema50.FieldType<Date, string>;
|
|
340
340
|
isOptional: false;
|
|
341
341
|
};
|
|
342
342
|
tools: {
|
|
343
|
-
type:
|
|
343
|
+
type: _lssm_lib_schema50.SchemaModel<{
|
|
344
344
|
id: {
|
|
345
|
-
type:
|
|
345
|
+
type: _lssm_lib_schema50.FieldType<string, string>;
|
|
346
346
|
isOptional: false;
|
|
347
347
|
};
|
|
348
348
|
name: {
|
|
349
|
-
type:
|
|
349
|
+
type: _lssm_lib_schema50.FieldType<string, string>;
|
|
350
350
|
isOptional: false;
|
|
351
351
|
};
|
|
352
352
|
slug: {
|
|
353
|
-
type:
|
|
353
|
+
type: _lssm_lib_schema50.FieldType<string, string>;
|
|
354
354
|
isOptional: false;
|
|
355
355
|
};
|
|
356
356
|
description: {
|
|
357
|
-
type:
|
|
357
|
+
type: _lssm_lib_schema50.FieldType<string, string>;
|
|
358
358
|
isOptional: false;
|
|
359
359
|
};
|
|
360
360
|
category: {
|
|
361
|
-
type:
|
|
361
|
+
type: _lssm_lib_schema50.FieldType<string, string>;
|
|
362
362
|
isOptional: false;
|
|
363
363
|
};
|
|
364
364
|
}>;
|
|
@@ -369,70 +369,70 @@ declare const GetAgentQuery: _lssm_lib_contracts4.ContractSpec<_lssm_lib_schema1
|
|
|
369
369
|
/**
|
|
370
370
|
* ListAgentsQuery - Lists agents for an organization.
|
|
371
371
|
*/
|
|
372
|
-
declare const ListAgentsQuery:
|
|
372
|
+
declare const ListAgentsQuery: _lssm_lib_contracts0.ContractSpec<_lssm_lib_schema50.SchemaModel<{
|
|
373
373
|
organizationId: {
|
|
374
|
-
type:
|
|
374
|
+
type: _lssm_lib_schema50.FieldType<string, string>;
|
|
375
375
|
isOptional: false;
|
|
376
376
|
};
|
|
377
377
|
status: {
|
|
378
|
-
type:
|
|
378
|
+
type: _lssm_lib_schema50.EnumType<[string, string, string, string]>;
|
|
379
379
|
isOptional: true;
|
|
380
380
|
};
|
|
381
381
|
modelProvider: {
|
|
382
|
-
type:
|
|
382
|
+
type: _lssm_lib_schema50.EnumType<[string, string, string, string, string]>;
|
|
383
383
|
isOptional: true;
|
|
384
384
|
};
|
|
385
385
|
search: {
|
|
386
|
-
type:
|
|
386
|
+
type: _lssm_lib_schema50.FieldType<string, string>;
|
|
387
387
|
isOptional: true;
|
|
388
388
|
};
|
|
389
389
|
limit: {
|
|
390
|
-
type:
|
|
390
|
+
type: _lssm_lib_schema50.FieldType<number, number>;
|
|
391
391
|
isOptional: true;
|
|
392
392
|
defaultValue: number;
|
|
393
393
|
};
|
|
394
394
|
offset: {
|
|
395
|
-
type:
|
|
395
|
+
type: _lssm_lib_schema50.FieldType<number, number>;
|
|
396
396
|
isOptional: true;
|
|
397
397
|
defaultValue: number;
|
|
398
398
|
};
|
|
399
|
-
}>,
|
|
399
|
+
}>, _lssm_lib_schema50.SchemaModel<{
|
|
400
400
|
items: {
|
|
401
|
-
type:
|
|
401
|
+
type: _lssm_lib_schema50.SchemaModel<{
|
|
402
402
|
id: {
|
|
403
|
-
type:
|
|
403
|
+
type: _lssm_lib_schema50.FieldType<string, string>;
|
|
404
404
|
isOptional: false;
|
|
405
405
|
};
|
|
406
406
|
name: {
|
|
407
|
-
type:
|
|
407
|
+
type: _lssm_lib_schema50.FieldType<string, string>;
|
|
408
408
|
isOptional: false;
|
|
409
409
|
};
|
|
410
410
|
slug: {
|
|
411
|
-
type:
|
|
411
|
+
type: _lssm_lib_schema50.FieldType<string, string>;
|
|
412
412
|
isOptional: false;
|
|
413
413
|
};
|
|
414
414
|
description: {
|
|
415
|
-
type:
|
|
415
|
+
type: _lssm_lib_schema50.FieldType<string, string>;
|
|
416
416
|
isOptional: true;
|
|
417
417
|
};
|
|
418
418
|
status: {
|
|
419
|
-
type:
|
|
419
|
+
type: _lssm_lib_schema50.EnumType<[string, string, string, string]>;
|
|
420
420
|
isOptional: false;
|
|
421
421
|
};
|
|
422
422
|
modelProvider: {
|
|
423
|
-
type:
|
|
423
|
+
type: _lssm_lib_schema50.EnumType<[string, string, string, string, string]>;
|
|
424
424
|
isOptional: false;
|
|
425
425
|
};
|
|
426
426
|
modelName: {
|
|
427
|
-
type:
|
|
427
|
+
type: _lssm_lib_schema50.FieldType<string, string>;
|
|
428
428
|
isOptional: false;
|
|
429
429
|
};
|
|
430
430
|
version: {
|
|
431
|
-
type:
|
|
431
|
+
type: _lssm_lib_schema50.FieldType<string, string>;
|
|
432
432
|
isOptional: false;
|
|
433
433
|
};
|
|
434
434
|
createdAt: {
|
|
435
|
-
type:
|
|
435
|
+
type: _lssm_lib_schema50.FieldType<Date, string>;
|
|
436
436
|
isOptional: false;
|
|
437
437
|
};
|
|
438
438
|
}>;
|
|
@@ -440,63 +440,63 @@ declare const ListAgentsQuery: _lssm_lib_contracts4.ContractSpec<_lssm_lib_schem
|
|
|
440
440
|
isOptional: false;
|
|
441
441
|
};
|
|
442
442
|
total: {
|
|
443
|
-
type:
|
|
443
|
+
type: _lssm_lib_schema50.FieldType<number, number>;
|
|
444
444
|
isOptional: false;
|
|
445
445
|
};
|
|
446
446
|
hasMore: {
|
|
447
|
-
type:
|
|
447
|
+
type: _lssm_lib_schema50.FieldType<boolean, boolean>;
|
|
448
448
|
isOptional: false;
|
|
449
449
|
};
|
|
450
450
|
}>, undefined>;
|
|
451
451
|
/**
|
|
452
452
|
* AssignToolToAgentCommand - Assigns a tool to an agent.
|
|
453
453
|
*/
|
|
454
|
-
declare const AssignToolToAgentCommand:
|
|
454
|
+
declare const AssignToolToAgentCommand: _lssm_lib_contracts0.ContractSpec<_lssm_lib_schema50.SchemaModel<{
|
|
455
455
|
agentId: {
|
|
456
|
-
type:
|
|
456
|
+
type: _lssm_lib_schema50.FieldType<string, string>;
|
|
457
457
|
isOptional: false;
|
|
458
458
|
};
|
|
459
459
|
toolId: {
|
|
460
|
-
type:
|
|
460
|
+
type: _lssm_lib_schema50.FieldType<string, string>;
|
|
461
461
|
isOptional: false;
|
|
462
462
|
};
|
|
463
463
|
config: {
|
|
464
|
-
type:
|
|
464
|
+
type: _lssm_lib_schema50.FieldType<Record<string, unknown>, Record<string, unknown>>;
|
|
465
465
|
isOptional: true;
|
|
466
466
|
};
|
|
467
467
|
order: {
|
|
468
|
-
type:
|
|
468
|
+
type: _lssm_lib_schema50.FieldType<number, number>;
|
|
469
469
|
isOptional: true;
|
|
470
470
|
};
|
|
471
|
-
}>,
|
|
471
|
+
}>, _lssm_lib_schema50.SchemaModel<{
|
|
472
472
|
agentToolId: {
|
|
473
|
-
type:
|
|
473
|
+
type: _lssm_lib_schema50.FieldType<string, string>;
|
|
474
474
|
isOptional: false;
|
|
475
475
|
};
|
|
476
476
|
agentId: {
|
|
477
|
-
type:
|
|
477
|
+
type: _lssm_lib_schema50.FieldType<string, string>;
|
|
478
478
|
isOptional: false;
|
|
479
479
|
};
|
|
480
480
|
toolId: {
|
|
481
|
-
type:
|
|
481
|
+
type: _lssm_lib_schema50.FieldType<string, string>;
|
|
482
482
|
isOptional: false;
|
|
483
483
|
};
|
|
484
484
|
}>, undefined>;
|
|
485
485
|
/**
|
|
486
486
|
* RemoveToolFromAgentCommand - Removes a tool from an agent.
|
|
487
487
|
*/
|
|
488
|
-
declare const RemoveToolFromAgentCommand:
|
|
488
|
+
declare const RemoveToolFromAgentCommand: _lssm_lib_contracts0.ContractSpec<_lssm_lib_schema50.SchemaModel<{
|
|
489
489
|
agentId: {
|
|
490
|
-
type:
|
|
490
|
+
type: _lssm_lib_schema50.FieldType<string, string>;
|
|
491
491
|
isOptional: false;
|
|
492
492
|
};
|
|
493
493
|
toolId: {
|
|
494
|
-
type:
|
|
494
|
+
type: _lssm_lib_schema50.FieldType<string, string>;
|
|
495
495
|
isOptional: false;
|
|
496
496
|
};
|
|
497
|
-
}>,
|
|
497
|
+
}>, _lssm_lib_schema50.SchemaModel<{
|
|
498
498
|
success: {
|
|
499
|
-
type:
|
|
499
|
+
type: _lssm_lib_schema50.FieldType<boolean, boolean>;
|
|
500
500
|
isOptional: false;
|
|
501
501
|
};
|
|
502
502
|
}>, undefined>;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"agent.contracts.d.ts","names":[],"sources":["../../src/agent/agent.contracts.ts"],"sourcesContent":[],"mappings":";;;;;;;cAgBa,yCAAkB,
|
|
1
|
+
{"version":3,"file":"agent.contracts.d.ts","names":[],"sources":["../../src/agent/agent.contracts.ts"],"sourcesContent":[],"mappings":";;;;;;;cAgBa,yCAAkB,gCAAA;EAAlB,cAAA,EAAA;IA6CX,IAAA,EAAA,kBAAA,CAAA,SAAA,CAAA,MAAA,EAAA,MAAA,CAAA;;;;;;;;;;;;;;;;;gBA7C6B,KAAA;EAAA,CAAA;;;;;;;;;;;;;;;;;;IAAA,IAAA,8BAAA,CAAA,MAAA,EAAA,MAAA,CAAA;IAkDlB,OAAA,EAAA,IAAA;IA2CX,UAAA,EAAA,IAAA;;;;;;;;;;;;;;;sCA3C6B,CAAA,MAAA,EAAA,MAAA,CAAA;IAAA,UAAA,EAAA,IAAA;;;;;;;;;UAlDA,kBAAA,CAAA;;;;;;;;sCAkDA,CAAA,MAAA,EAAA,MAAA,CAAA;IAAA,UAAA,EAAA,KAAA;EAgDlB,CAAA;EA8BX,MAAA,EAAA;;gBA9BwB,KAAA;EAAA,CAAA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;MAAA,IAAA,8BAAA,CAAA,MAAA,EAAA,MAAA,CAAA;MAmCb,UA4CX,EAAA,IAAA;IAAA,CAAA;;;;;;;CA5C0B,EAAA,CAAA;;;;cAnFf,yCAAkB,gCAAA;;UA2C7B,kBAAA,CAAA;;;;;;;;sCAwC0B,CAAA,MAAA,EAAA,MAAA,CAAA;IAAA,UAAA,EAAA,IAAA;EAiDf,CAAA;EA2CX,MAAA,EAAA;;;;;;gBA3CmC,IAAA;EAAA,CAAA;;;;;EAAA,kBAAA,EAAA;IAgDxB,IAAA,8BA4BX,CAAA,MAAA,EAAA,MAAA,CAAA;IAAA,UAAA,EAAA,IAAA;;;IA5BqC,IAAA,8BAAA,CAAA,MAAA,EAAA,MAAA,CAAA;;oBAAA;EAAA,CAAA;;;;;;;;;;;;;;;;;;;;;;;;UApLR,kBAAA,CAAA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;cAgDlB,oCAAa,gCAAA;;UA8BxB,kBAAA,CAAA;;;;;;;;;UA9BwB,kBAAA,CAAA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;cAmCb,sCAAe,gCAAA;;UA4C1B,kBAAA,CAAA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;cA5C0B,kBAAA,CAAA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;cAiDf,+CAAwB,gCAAA;;UA2CnC,kBAAA,CAAA;;;;;;;;;;;;;;;;;UA3CmC,kBAAA,CAAA;;;;;;;;;;;;;;;cAgDxB,iDAA0B,gCAAA;;UA4BrC,kBAAA,CAAA;;;;;;;;;UA5BqC,kBAAA,CAAA"}
|