@illalabs/interfaces 0.10.2-canary-beta-99447a7d → 0.10.2
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/schemas/chatContext.d.ts +20 -20
- package/dist/schemas/chatRequestBody.d.ts +64 -64
- package/dist/schemas/illaTools.d.ts +2 -2
- package/dist/schemas/messages.d.ts +4 -4
- package/dist/schemas/modelContext.d.ts +3 -3
- package/dist/schemas/planning.d.ts +36 -36
- package/dist/schemas/planningRuntime.d.ts +22 -22
- package/dist/schemas/telemetryEvents.d.ts +196 -374
- package/dist/schemas/telemetryEvents.d.ts.map +1 -1
- package/dist/schemas/telemetryEvents.js +0 -34
- package/dist/schemas/telemetryEvents.js.map +1 -1
- package/dist/schemas/uiMessageNormalizer.d.ts.map +1 -1
- package/dist/schemas/uiMessageNormalizer.js +2 -31
- package/dist/schemas/uiMessageNormalizer.js.map +1 -1
- package/dist/types/telemetry.d.ts +1 -16
- package/dist/types/telemetry.d.ts.map +1 -1
- package/dist/types/telemetry.js +1 -1
- package/dist/types/telemetry.js.map +1 -1
- package/dist/utils/constants.d.ts +1 -1
- package/dist/utils/constants.d.ts.map +1 -1
- package/dist/utils/constants.js +8 -0
- package/dist/utils/constants.js.map +1 -1
- package/package.json +1 -1
|
@@ -158,6 +158,7 @@ export declare const ChatContextSchema: z.ZodObject<Pick<{
|
|
|
158
158
|
}, "strict", z.ZodTypeAny, {
|
|
159
159
|
id: string;
|
|
160
160
|
name: string;
|
|
161
|
+
result?: unknown;
|
|
161
162
|
error?: {
|
|
162
163
|
type: "input";
|
|
163
164
|
errors: {
|
|
@@ -169,10 +170,10 @@ export declare const ChatContextSchema: z.ZodObject<Pick<{
|
|
|
169
170
|
message: string;
|
|
170
171
|
details?: unknown;
|
|
171
172
|
} | undefined;
|
|
172
|
-
result?: unknown;
|
|
173
173
|
}, {
|
|
174
174
|
id: string;
|
|
175
175
|
name: string;
|
|
176
|
+
result?: unknown;
|
|
176
177
|
error?: {
|
|
177
178
|
type: "input";
|
|
178
179
|
errors: {
|
|
@@ -184,7 +185,6 @@ export declare const ChatContextSchema: z.ZodObject<Pick<{
|
|
|
184
185
|
message: string;
|
|
185
186
|
details?: unknown;
|
|
186
187
|
} | undefined;
|
|
187
|
-
result?: unknown;
|
|
188
188
|
}>, "many">>;
|
|
189
189
|
languageModel: z.ZodString;
|
|
190
190
|
personalityContext: z.ZodDefault<z.ZodOptional<z.ZodObject<{
|
|
@@ -217,12 +217,12 @@ export declare const ChatContextSchema: z.ZodObject<Pick<{
|
|
|
217
217
|
requiresApproval: z.ZodBoolean;
|
|
218
218
|
}, "strip", z.ZodTypeAny, {
|
|
219
219
|
number: number;
|
|
220
|
-
status: "
|
|
220
|
+
status: "pending" | "in_progress" | "completed" | "failed" | "skipped";
|
|
221
221
|
description: string;
|
|
222
222
|
requiresApproval: boolean;
|
|
223
223
|
}, {
|
|
224
224
|
number: number;
|
|
225
|
-
status: "
|
|
225
|
+
status: "pending" | "in_progress" | "completed" | "failed" | "skipped";
|
|
226
226
|
description: string;
|
|
227
227
|
requiresApproval: boolean;
|
|
228
228
|
}>, "many">;
|
|
@@ -232,7 +232,7 @@ export declare const ChatContextSchema: z.ZodObject<Pick<{
|
|
|
232
232
|
title: string;
|
|
233
233
|
steps: {
|
|
234
234
|
number: number;
|
|
235
|
-
status: "
|
|
235
|
+
status: "pending" | "in_progress" | "completed" | "failed" | "skipped";
|
|
236
236
|
description: string;
|
|
237
237
|
requiresApproval: boolean;
|
|
238
238
|
}[];
|
|
@@ -242,7 +242,7 @@ export declare const ChatContextSchema: z.ZodObject<Pick<{
|
|
|
242
242
|
title: string;
|
|
243
243
|
steps: {
|
|
244
244
|
number: number;
|
|
245
|
-
status: "
|
|
245
|
+
status: "pending" | "in_progress" | "completed" | "failed" | "skipped";
|
|
246
246
|
description: string;
|
|
247
247
|
requiresApproval: boolean;
|
|
248
248
|
}[];
|
|
@@ -278,7 +278,7 @@ export declare const ChatContextSchema: z.ZodObject<Pick<{
|
|
|
278
278
|
constraints?: string[] | undefined;
|
|
279
279
|
}>;
|
|
280
280
|
}, "strip", z.ZodTypeAny, {
|
|
281
|
-
status: "
|
|
281
|
+
status: "pending" | "in_progress" | "completed" | "failed" | "skipped";
|
|
282
282
|
description: string;
|
|
283
283
|
stepNumber: number;
|
|
284
284
|
operationType: "read" | "write";
|
|
@@ -291,10 +291,10 @@ export declare const ChatContextSchema: z.ZodObject<Pick<{
|
|
|
291
291
|
errorHandling: string;
|
|
292
292
|
constraints?: string[] | undefined;
|
|
293
293
|
};
|
|
294
|
-
result?: unknown;
|
|
295
294
|
toolName?: string | undefined;
|
|
295
|
+
result?: unknown;
|
|
296
296
|
}, {
|
|
297
|
-
status: "
|
|
297
|
+
status: "pending" | "in_progress" | "completed" | "failed" | "skipped";
|
|
298
298
|
description: string;
|
|
299
299
|
stepNumber: number;
|
|
300
300
|
operationType: "read" | "write";
|
|
@@ -307,8 +307,8 @@ export declare const ChatContextSchema: z.ZodObject<Pick<{
|
|
|
307
307
|
errorHandling: string;
|
|
308
308
|
constraints?: string[] | undefined;
|
|
309
309
|
};
|
|
310
|
-
result?: unknown;
|
|
311
310
|
toolName?: string | undefined;
|
|
311
|
+
result?: unknown;
|
|
312
312
|
}>, "many">;
|
|
313
313
|
complexity: z.ZodEnum<["low", "medium", "high"]>;
|
|
314
314
|
recommendedModel: z.ZodString;
|
|
@@ -319,7 +319,7 @@ export declare const ChatContextSchema: z.ZodObject<Pick<{
|
|
|
319
319
|
availableTools: z.ZodArray<z.ZodString, "many">;
|
|
320
320
|
}, "strip", z.ZodTypeAny, {
|
|
321
321
|
steps: {
|
|
322
|
-
status: "
|
|
322
|
+
status: "pending" | "in_progress" | "completed" | "failed" | "skipped";
|
|
323
323
|
description: string;
|
|
324
324
|
stepNumber: number;
|
|
325
325
|
operationType: "read" | "write";
|
|
@@ -332,8 +332,8 @@ export declare const ChatContextSchema: z.ZodObject<Pick<{
|
|
|
332
332
|
errorHandling: string;
|
|
333
333
|
constraints?: string[] | undefined;
|
|
334
334
|
};
|
|
335
|
-
result?: unknown;
|
|
336
335
|
toolName?: string | undefined;
|
|
336
|
+
result?: unknown;
|
|
337
337
|
}[];
|
|
338
338
|
complexity: "low" | "medium" | "high";
|
|
339
339
|
recommendedModel: string;
|
|
@@ -344,7 +344,7 @@ export declare const ChatContextSchema: z.ZodObject<Pick<{
|
|
|
344
344
|
availableTools: string[];
|
|
345
345
|
}, {
|
|
346
346
|
steps: {
|
|
347
|
-
status: "
|
|
347
|
+
status: "pending" | "in_progress" | "completed" | "failed" | "skipped";
|
|
348
348
|
description: string;
|
|
349
349
|
stepNumber: number;
|
|
350
350
|
operationType: "read" | "write";
|
|
@@ -357,8 +357,8 @@ export declare const ChatContextSchema: z.ZodObject<Pick<{
|
|
|
357
357
|
errorHandling: string;
|
|
358
358
|
constraints?: string[] | undefined;
|
|
359
359
|
};
|
|
360
|
-
result?: unknown;
|
|
361
360
|
toolName?: string | undefined;
|
|
361
|
+
result?: unknown;
|
|
362
362
|
}[];
|
|
363
363
|
complexity: "low" | "medium" | "high";
|
|
364
364
|
recommendedModel: string;
|
|
@@ -406,7 +406,7 @@ export declare const ChatContextSchema: z.ZodObject<Pick<{
|
|
|
406
406
|
title: string;
|
|
407
407
|
steps: {
|
|
408
408
|
number: number;
|
|
409
|
-
status: "
|
|
409
|
+
status: "pending" | "in_progress" | "completed" | "failed" | "skipped";
|
|
410
410
|
description: string;
|
|
411
411
|
requiresApproval: boolean;
|
|
412
412
|
}[];
|
|
@@ -414,7 +414,7 @@ export declare const ChatContextSchema: z.ZodObject<Pick<{
|
|
|
414
414
|
};
|
|
415
415
|
executionSchema: {
|
|
416
416
|
steps: {
|
|
417
|
-
status: "
|
|
417
|
+
status: "pending" | "in_progress" | "completed" | "failed" | "skipped";
|
|
418
418
|
description: string;
|
|
419
419
|
stepNumber: number;
|
|
420
420
|
operationType: "read" | "write";
|
|
@@ -427,8 +427,8 @@ export declare const ChatContextSchema: z.ZodObject<Pick<{
|
|
|
427
427
|
errorHandling: string;
|
|
428
428
|
constraints?: string[] | undefined;
|
|
429
429
|
};
|
|
430
|
-
result?: unknown;
|
|
431
430
|
toolName?: string | undefined;
|
|
431
|
+
result?: unknown;
|
|
432
432
|
}[];
|
|
433
433
|
complexity: "low" | "medium" | "high";
|
|
434
434
|
recommendedModel: string;
|
|
@@ -460,7 +460,7 @@ export declare const ChatContextSchema: z.ZodObject<Pick<{
|
|
|
460
460
|
title: string;
|
|
461
461
|
steps: {
|
|
462
462
|
number: number;
|
|
463
|
-
status: "
|
|
463
|
+
status: "pending" | "in_progress" | "completed" | "failed" | "skipped";
|
|
464
464
|
description: string;
|
|
465
465
|
requiresApproval: boolean;
|
|
466
466
|
}[];
|
|
@@ -468,7 +468,7 @@ export declare const ChatContextSchema: z.ZodObject<Pick<{
|
|
|
468
468
|
};
|
|
469
469
|
executionSchema: {
|
|
470
470
|
steps: {
|
|
471
|
-
status: "
|
|
471
|
+
status: "pending" | "in_progress" | "completed" | "failed" | "skipped";
|
|
472
472
|
description: string;
|
|
473
473
|
stepNumber: number;
|
|
474
474
|
operationType: "read" | "write";
|
|
@@ -481,8 +481,8 @@ export declare const ChatContextSchema: z.ZodObject<Pick<{
|
|
|
481
481
|
errorHandling: string;
|
|
482
482
|
constraints?: string[] | undefined;
|
|
483
483
|
};
|
|
484
|
-
result?: unknown;
|
|
485
484
|
toolName?: string | undefined;
|
|
485
|
+
result?: unknown;
|
|
486
486
|
}[];
|
|
487
487
|
complexity: "low" | "medium" | "high";
|
|
488
488
|
recommendedModel: string;
|