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