agentic-ui-libs 0.2.0-beta.9 → 0.3.0-beta.1

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.
Files changed (29) hide show
  1. package/dist/assets/style.css +1 -1
  2. package/dist/data/executionEventsSample.d.ts +354 -835
  3. package/dist/data/executionEventsSample.d.ts.map +1 -1
  4. package/dist/features/dashboard/Dashboard.d.ts.map +1 -1
  5. package/dist/features/debug-logs/DebugPanel.d.ts.map +1 -1
  6. package/dist/features/debug-logs/components/DataViewer.d.ts +1 -1
  7. package/dist/features/debug-logs/components/DataViewer.d.ts.map +1 -1
  8. package/dist/features/debug-logs/components/DebugCard.d.ts +5 -2
  9. package/dist/features/debug-logs/components/DebugCard.d.ts.map +1 -1
  10. package/dist/features/debug-logs/index.d.ts +2 -1
  11. package/dist/features/debug-logs/index.d.ts.map +1 -1
  12. package/dist/features/debug-logs/services/ApiService.d.ts +37 -0
  13. package/dist/features/debug-logs/services/ApiService.d.ts.map +1 -0
  14. package/dist/features/debug-logs/services/TreeBuilder.d.ts +1 -1
  15. package/dist/features/debug-logs/services/TreeBuilder.d.ts.map +1 -1
  16. package/dist/features/debug-logs/types.d.ts +44 -4
  17. package/dist/features/debug-logs/types.d.ts.map +1 -1
  18. package/dist/index.js +9286 -8542
  19. package/dist/lib/dashboard-api.service.d.ts.map +1 -1
  20. package/dist/shared/ui/CopyButton.d.ts +15 -0
  21. package/dist/shared/ui/CopyButton.d.ts.map +1 -0
  22. package/dist/shared/ui/IconPreview.d.ts +2 -2
  23. package/dist/shared/ui/IconPreview.d.ts.map +1 -1
  24. package/dist/shared/ui/MultiSelect.d.ts +1 -1
  25. package/dist/shared/ui/MultiSelect.d.ts.map +1 -1
  26. package/dist/shared/ui/index.d.ts +1 -0
  27. package/dist/shared/ui/index.d.ts.map +1 -1
  28. package/dist/ui-libs.umd.js +105 -88
  29. package/package.json +5 -2
@@ -7,14 +7,11 @@ export declare const executionEventsSample1: ({
7
7
  name: string;
8
8
  timestamp: string;
9
9
  type: string;
10
- icon: {
11
- name: string;
12
- color: string;
13
- type: string;
14
- };
15
10
  status: string;
16
11
  input?: undefined;
17
12
  output?: undefined;
13
+ error?: undefined;
14
+ metadata?: undefined;
18
15
  };
19
16
  sessionId: string;
20
17
  runId: string;
@@ -31,8 +28,9 @@ export declare const executionEventsSample1: ({
31
28
  timestamp: string;
32
29
  type: string;
33
30
  status: string;
34
- icon?: undefined;
35
31
  output?: undefined;
32
+ error?: undefined;
33
+ metadata?: undefined;
36
34
  };
37
35
  sessionId: string;
38
36
  runId: string;
@@ -47,24 +45,23 @@ export declare const executionEventsSample1: ({
47
45
  name: string;
48
46
  output: {
49
47
  name: string;
50
- tool_call_id: string;
51
48
  args: {
52
- reason: string;
53
49
  message: string;
54
- conversationState: string;
55
- };
56
- additional_kwargs: {
57
- llmUsageMetadata: {
58
- input_tokens: number;
59
- output_tokens: number;
60
- total_tokens: number;
61
- };
50
+ reason: string;
62
51
  };
52
+ tool_call_id: string;
63
53
  }[];
54
+ error: string;
64
55
  timestamp: string;
65
56
  type: string;
66
57
  status: string;
67
- icon?: undefined;
58
+ metadata: {
59
+ usage_metadata: {
60
+ input_tokens: number;
61
+ output_tokens: number;
62
+ total_tokens: number;
63
+ };
64
+ };
68
65
  input?: undefined;
69
66
  };
70
67
  sessionId: string;
@@ -78,37 +75,72 @@ export declare const executionEventsSample1: ({
78
75
  id: string;
79
76
  parentId: string;
80
77
  name: string;
81
- input: {
78
+ output: {
82
79
  name: string;
83
- tool_call_id: string;
84
80
  args: {
85
- reason: string;
86
81
  message: string;
87
- conversationState: string;
88
- searchtext?: undefined;
82
+ reason: string;
89
83
  };
90
- additional_kwargs: {
91
- llmUsageMetadata: {
92
- input_tokens: number;
93
- output_tokens: number;
94
- total_tokens: number;
95
- input_token_details?: undefined;
96
- };
84
+ tool_call_id: string;
85
+ }[];
86
+ timestamp: string;
87
+ type: string;
88
+ status: string;
89
+ metadata: {
90
+ usage_metadata: {
91
+ input_tokens: number;
92
+ output_tokens: number;
93
+ total_tokens: number;
97
94
  };
98
- type?: undefined;
99
- toolName?: undefined;
100
- input?: undefined;
101
- output?: undefined;
102
- metadata?: undefined;
103
95
  };
96
+ input?: undefined;
97
+ error?: undefined;
98
+ };
99
+ sessionId: string;
100
+ runId: string;
101
+ timestamp: string;
102
+ eventType: string;
103
+ })[];
104
+ export declare const executionEventsSample2: ({
105
+ type: string;
106
+ data: {
107
+ phase: string;
108
+ id: string;
109
+ parentId: null;
110
+ name: string;
104
111
  timestamp: string;
105
112
  type: string;
113
+ icon: {
114
+ name: string;
115
+ color: string;
116
+ type: string;
117
+ };
106
118
  status: string;
107
- icon?: undefined;
119
+ input?: undefined;
108
120
  output?: undefined;
121
+ metadata?: undefined;
109
122
  };
123
+ runId: string;
110
124
  sessionId: string;
125
+ timestamp: string;
126
+ eventType: string;
127
+ } | {
128
+ type: string;
129
+ data: {
130
+ phase: string;
131
+ id: string;
132
+ parentId: string;
133
+ name: string;
134
+ input: string;
135
+ timestamp: string;
136
+ type: string;
137
+ status: string;
138
+ icon?: undefined;
139
+ output?: undefined;
140
+ metadata?: undefined;
141
+ };
111
142
  runId: string;
143
+ sessionId: string;
112
144
  timestamp: string;
113
145
  eventType: string;
114
146
  } | {
@@ -119,40 +151,32 @@ export declare const executionEventsSample1: ({
119
151
  parentId: string;
120
152
  name: string;
121
153
  output: {
122
- type: string;
123
- toolName: string;
124
- input: {
154
+ name: string;
155
+ args: {
156
+ user_query: string;
157
+ thought: string;
125
158
  reason: string;
126
- message: string;
127
- conversationState: string;
128
- };
129
- output: {
130
- conversationState: string;
131
- message: string;
132
- };
133
- metadata: {
134
- type: string;
135
- eventType: string;
136
- eventData: {
137
- name: string;
138
- mode: string;
139
- condition: string;
140
- to: string;
141
- type: string;
142
- _id: string;
143
- };
144
- isToolEvent: boolean;
145
- isOptionalParameter: boolean;
146
159
  };
160
+ tool_call_id: string;
161
+ isAgentHandoff: boolean;
147
162
  }[];
148
163
  timestamp: string;
149
164
  type: string;
150
165
  status: string;
166
+ metadata: {
167
+ usage_metadata: {
168
+ input_tokens: number;
169
+ output_tokens: number;
170
+ total_tokens: number;
171
+ };
172
+ provider: string;
173
+ architecture: string;
174
+ };
151
175
  icon?: undefined;
152
176
  input?: undefined;
153
177
  };
154
- sessionId: string;
155
178
  runId: string;
179
+ sessionId: string;
156
180
  timestamp: string;
157
181
  eventType: string;
158
182
  } | {
@@ -162,21 +186,22 @@ export declare const executionEventsSample1: ({
162
186
  id: string;
163
187
  parentId: string;
164
188
  name: string;
165
- output: {
189
+ input: {
166
190
  name: string;
167
191
  tool_call_id: string;
168
192
  args: {
169
- message: string;
170
- conversationState: string;
193
+ user_query: string;
194
+ thought: string;
171
195
  reason: string;
172
- searchtext?: undefined;
196
+ query?: undefined;
197
+ conversationState?: undefined;
198
+ message?: undefined;
173
199
  };
174
200
  additional_kwargs: {
175
201
  llmUsageMetadata: {
176
202
  input_tokens: number;
177
203
  output_tokens: number;
178
204
  total_tokens: number;
179
- input_token_details?: undefined;
180
205
  };
181
206
  };
182
207
  type?: undefined;
@@ -189,10 +214,11 @@ export declare const executionEventsSample1: ({
189
214
  type: string;
190
215
  status: string;
191
216
  icon?: undefined;
192
- input?: undefined;
217
+ output?: undefined;
218
+ metadata?: undefined;
193
219
  };
194
- sessionId: string;
195
220
  runId: string;
221
+ sessionId: string;
196
222
  timestamp: string;
197
223
  eventType: string;
198
224
  } | {
@@ -206,37 +232,67 @@ export declare const executionEventsSample1: ({
206
232
  type: string;
207
233
  toolName: string;
208
234
  input: {
209
- message: string;
210
- conversationState: string;
235
+ user_query: string;
236
+ thought: string;
211
237
  reason: string;
212
- searchtext?: undefined;
238
+ query?: undefined;
239
+ conversationState?: undefined;
240
+ message?: undefined;
213
241
  };
214
242
  output: {
215
- conversationState: string;
216
- message: string;
217
- kind?: undefined;
218
- url?: undefined;
219
- queries?: undefined;
220
- context?: undefined;
221
- searchInformation?: undefined;
222
- items?: undefined;
243
+ sql_query: string;
244
+ result?: undefined;
245
+ __systemFields?: undefined;
246
+ type?: undefined;
247
+ conversationState?: undefined;
248
+ message?: undefined;
223
249
  };
224
250
  metadata: {
225
251
  type: string;
226
- eventType: string;
227
- eventData: {
228
- name: string;
229
- mode: string;
230
- condition: string;
231
- to: string;
232
- type: string;
233
- metadata: {
234
- isfallback: boolean;
235
- type: string;
236
- };
237
- _id: string;
238
- };
239
- isToolEvent: boolean;
252
+ toolId: string;
253
+ isOptionalParameter: boolean;
254
+ icon?: undefined;
255
+ eventType?: undefined;
256
+ eventData?: undefined;
257
+ isToolEvent?: undefined;
258
+ };
259
+ };
260
+ timestamp: string;
261
+ type: string;
262
+ status: string;
263
+ icon?: undefined;
264
+ input?: undefined;
265
+ metadata?: undefined;
266
+ };
267
+ runId: string;
268
+ sessionId: string;
269
+ timestamp: string;
270
+ eventType: string;
271
+ } | {
272
+ type: string;
273
+ data: {
274
+ phase: string;
275
+ id: string;
276
+ parentId: string;
277
+ name: string;
278
+ input: {
279
+ type: string;
280
+ toolName: string;
281
+ input: {
282
+ user_query: string;
283
+ thought: string;
284
+ reason: string;
285
+ query?: undefined;
286
+ };
287
+ output: {
288
+ sql_query: string;
289
+ result?: undefined;
290
+ __systemFields?: undefined;
291
+ type?: undefined;
292
+ };
293
+ metadata: {
294
+ type: string;
295
+ toolId: string;
240
296
  isOptionalParameter: boolean;
241
297
  icon?: undefined;
242
298
  };
@@ -249,10 +305,11 @@ export declare const executionEventsSample1: ({
249
305
  type: string;
250
306
  status: string;
251
307
  icon?: undefined;
252
- input?: undefined;
308
+ output?: undefined;
309
+ metadata?: undefined;
253
310
  };
254
- sessionId: string;
255
311
  runId: string;
312
+ sessionId: string;
256
313
  timestamp: string;
257
314
  eventType: string;
258
315
  } | {
@@ -264,38 +321,31 @@ export declare const executionEventsSample1: ({
264
321
  name: string;
265
322
  output: {
266
323
  name: string;
267
- tool_call_id: string;
268
324
  args: {
269
325
  reason: string;
270
- searchtext: string;
271
- message?: undefined;
272
- conversationState?: undefined;
273
- };
274
- additional_kwargs: {
275
- llmUsageMetadata: {
276
- input_tokens: number;
277
- output_tokens: number;
278
- total_tokens: number;
279
- input_token_details: {
280
- cache_read: number;
281
- cache_creation: number;
282
- };
283
- };
326
+ query: string;
327
+ thought: string;
284
328
  };
285
- type?: undefined;
286
- toolName?: undefined;
287
- input?: undefined;
288
- output?: undefined;
289
- metadata?: undefined;
290
- };
329
+ tool_call_id: string;
330
+ isAgentHandoff: boolean;
331
+ }[];
291
332
  timestamp: string;
292
333
  type: string;
293
334
  status: string;
335
+ metadata: {
336
+ usage_metadata: {
337
+ input_tokens: number;
338
+ output_tokens: number;
339
+ total_tokens: number;
340
+ };
341
+ provider: string;
342
+ architecture: string;
343
+ };
294
344
  icon?: undefined;
295
345
  input?: undefined;
296
346
  };
297
- sessionId: string;
298
347
  runId: string;
348
+ sessionId: string;
299
349
  timestamp: string;
300
350
  eventType: string;
301
351
  } | {
@@ -310,19 +360,17 @@ export declare const executionEventsSample1: ({
310
360
  tool_call_id: string;
311
361
  args: {
312
362
  reason: string;
313
- searchtext: string;
314
- message?: undefined;
363
+ query: string;
364
+ thought: string;
365
+ user_query?: undefined;
315
366
  conversationState?: undefined;
367
+ message?: undefined;
316
368
  };
317
369
  additional_kwargs: {
318
370
  llmUsageMetadata: {
319
371
  input_tokens: number;
320
372
  output_tokens: number;
321
373
  total_tokens: number;
322
- input_token_details: {
323
- cache_read: number;
324
- cache_creation: number;
325
- };
326
374
  };
327
375
  };
328
376
  type?: undefined;
@@ -336,9 +384,10 @@ export declare const executionEventsSample1: ({
336
384
  status: string;
337
385
  icon?: undefined;
338
386
  output?: undefined;
387
+ metadata?: undefined;
339
388
  };
340
- sessionId: string;
341
389
  runId: string;
390
+ sessionId: string;
342
391
  timestamp: string;
343
392
  eventType: string;
344
393
  } | {
@@ -353,365 +402,39 @@ export declare const executionEventsSample1: ({
353
402
  toolName: string;
354
403
  input: {
355
404
  reason: string;
356
- searchtext: string;
357
- message?: undefined;
405
+ query: string;
406
+ thought: string;
407
+ user_query?: undefined;
358
408
  conversationState?: undefined;
409
+ message?: undefined;
359
410
  };
360
411
  output: {
361
- kind: string;
362
- url: {
363
- type: string;
364
- template: string;
365
- };
366
- queries: {
367
- request: {
368
- title: string;
369
- totalResults: string;
370
- searchTerms: string;
371
- count: number;
372
- startIndex: number;
373
- inputEncoding: string;
374
- outputEncoding: string;
375
- safe: string;
376
- cx: string;
377
- }[];
378
- nextPage: {
379
- title: string;
380
- totalResults: string;
381
- searchTerms: string;
382
- count: number;
383
- startIndex: number;
384
- inputEncoding: string;
385
- outputEncoding: string;
386
- safe: string;
387
- cx: string;
388
- }[];
389
- };
390
- context: {
391
- title: string;
392
- };
393
- searchInformation: {
394
- searchTime: number;
395
- formattedSearchTime: string;
396
- totalResults: string;
397
- formattedTotalResults: string;
398
- };
399
- items: ({
400
- kind: string;
401
- title: string;
402
- htmlTitle: string;
403
- link: string;
404
- displayLink: string;
405
- snippet: string;
406
- htmlSnippet: string;
407
- formattedUrl: string;
408
- htmlFormattedUrl: string;
409
- pagemap: {
410
- cse_thumbnail: {
411
- src: string;
412
- width: string;
413
- height: string;
414
- }[];
415
- metatags: {
416
- "og:image": string;
417
- "og:type": string;
418
- "og:image:width": string;
419
- "twitter:card": string;
420
- "theme-color": string;
421
- "og:site_name": string;
422
- skype_toolbar: string;
423
- "msvalidate.01": string;
424
- "og:title": string;
425
- "og:image:height": string;
426
- "og:image:type": string;
427
- "msapplication-tileimage": string;
428
- "og:description": string;
429
- "article:publisher": string;
430
- "twitter:site": string;
431
- "article:modified_time": string;
432
- viewport: string;
433
- "og:locale": string;
434
- "og:url": string;
435
- }[];
436
- cse_image: {
437
- src: string;
438
- }[];
439
- };
440
- } | {
441
- kind: string;
442
- title: string;
443
- htmlTitle: string;
444
- link: string;
445
- displayLink: string;
446
- snippet: string;
447
- htmlSnippet: string;
448
- formattedUrl: string;
449
- htmlFormattedUrl: string;
450
- pagemap: {
451
- cse_thumbnail: {
452
- src: string;
453
- width: string;
454
- height: string;
455
- }[];
456
- metatags: {
457
- "og:image": string;
458
- "og:type": string;
459
- "twitter:card": string;
460
- "twitter:title": string;
461
- clientsideingraphs: string;
462
- "al:ios:app_name": string;
463
- "linkedin:pagetag": string;
464
- "og:title": string;
465
- "al:android:package": string;
466
- pagekey: string;
467
- bingbot: string;
468
- locale: string;
469
- "al:ios:url": string;
470
- "og:description": string;
471
- "al:ios:app_store_id": string;
472
- "twitter:image": string;
473
- "al:android:url": string;
474
- "twitter:site": string;
475
- viewport: string;
476
- "twitter:description": string;
477
- "og:url": string;
478
- "al:android:app_name": string;
479
- }[];
480
- cse_image: {
481
- src: string;
482
- }[];
483
- };
484
- } | {
485
- kind: string;
486
- title: string;
487
- htmlTitle: string;
488
- link: string;
489
- displayLink: string;
490
- snippet: string;
491
- htmlSnippet: string;
492
- formattedUrl: string;
493
- htmlFormattedUrl: string;
494
- pagemap: {
495
- cse_thumbnail: {
496
- src: string;
497
- width: string;
498
- height: string;
499
- }[];
500
- metatags: {
501
- "og:image": string;
502
- "og:type": string;
503
- "og:image:width": string;
504
- "twitter:card": string;
505
- "theme-color": string;
506
- "og:site_name": string;
507
- skype_toolbar: string;
508
- "og:title": string;
509
- "og:image:height": string;
510
- "twitter:label1": string;
511
- "og:image:type": string;
512
- "msapplication-tileimage": string;
513
- "og:description": string;
514
- "article:publisher": string;
515
- "twitter:data1": string;
516
- "twitter:site": string;
517
- "article:modified_time": string;
518
- viewport: string;
519
- "og:locale": string;
520
- "og:url": string;
521
- }[];
522
- cse_image: {
523
- src: string;
524
- }[];
525
- };
526
- } | {
527
- kind: string;
528
- title: string;
529
- htmlTitle: string;
530
- link: string;
531
- displayLink: string;
532
- snippet: string;
533
- htmlSnippet: string;
534
- formattedUrl: string;
535
- htmlFormattedUrl: string;
536
- pagemap: {
537
- cse_thumbnail: {
538
- src: string;
539
- width: string;
540
- height: string;
541
- }[];
542
- metatags: {
543
- referrer: string;
544
- viewport: string;
545
- kore_builder_version: string;
546
- }[];
547
- cse_image: {
548
- src: string;
549
- }[];
550
- };
551
- } | {
552
- kind: string;
553
- title: string;
554
- htmlTitle: string;
555
- link: string;
556
- displayLink: string;
557
- snippet: string;
558
- htmlSnippet: string;
559
- formattedUrl: string;
560
- htmlFormattedUrl: string;
561
- pagemap: {
562
- cse_thumbnail: {
563
- src: string;
564
- width: string;
565
- height: string;
566
- }[];
567
- metatags: {
568
- "og:image": string;
569
- "article:published_time": string;
570
- "og:image:width": string;
571
- "twitter:card": string;
572
- "og:site_name": string;
573
- "sailthru.tags": string;
574
- "twitter:label1": string;
575
- "twitter:label2": string;
576
- "parsely-author": string;
577
- "og:image:type": string;
578
- "msapplication-tileimage": string;
579
- "og:description": string;
580
- "twitter:creator": string;
581
- "parsely-metadata": string;
582
- "article:publisher": string;
583
- "twitter:data1": string;
584
- "twitter:data2": string;
585
- "parsely-type": string;
586
- "twitter:site": string;
587
- "article:modified_time": string;
588
- "parsely-link": string;
589
- "sailthru.title": string;
590
- "parsely-image-url": string;
591
- "parsely-section": string;
592
- "sailthru.date": string;
593
- "og:type": string;
594
- author: string;
595
- "og:title": string;
596
- "og:image:height": string;
597
- "sailthru.image.thumb": string;
598
- "parsely-title": string;
599
- "parsely-pub-date": string;
600
- "sailthru.description": string;
601
- "parsely-tags": string;
602
- viewport: string;
603
- "og:locale": string;
604
- "og:url": string;
605
- "sailthru.author": string;
606
- "sailthru.image.full": string;
607
- }[];
608
- cse_image: {
609
- src: string;
610
- }[];
611
- };
612
- } | {
613
- kind: string;
614
- title: string;
615
- htmlTitle: string;
616
- link: string;
617
- displayLink: string;
618
- snippet: string;
619
- htmlSnippet: string;
620
- formattedUrl: string;
621
- htmlFormattedUrl: string;
622
- pagemap: {
623
- metatags: {
624
- viewport: string;
625
- }[];
626
- cse_thumbnail?: undefined;
627
- cse_image?: undefined;
628
- };
629
- } | {
630
- kind: string;
631
- title: string;
632
- htmlTitle: string;
633
- link: string;
634
- displayLink: string;
635
- snippet: string;
636
- htmlSnippet: string;
637
- formattedUrl: string;
638
- htmlFormattedUrl: string;
639
- pagemap: {
640
- cse_thumbnail: {
641
- src: string;
642
- width: string;
643
- height: string;
644
- }[];
645
- metatags: {
646
- "twitter:title": string;
647
- "og:type": string;
648
- "twitter:card": string;
649
- "twitter:domain": string;
650
- viewport: string;
651
- author: string;
652
- "twitter:description": string;
653
- "og:title": string;
654
- "og:description": string;
655
- }[];
656
- cse_image: {
657
- src: string;
658
- }[];
659
- };
660
- } | {
661
- kind: string;
662
- title: string;
663
- htmlTitle: string;
664
- link: string;
665
- displayLink: string;
666
- snippet: string;
667
- htmlSnippet: string;
668
- formattedUrl: string;
669
- htmlFormattedUrl: string;
670
- pagemap: {
671
- cse_thumbnail: {
672
- src: string;
673
- width: string;
674
- height: string;
675
- }[];
676
- metatags: {
677
- "twitter:title": string;
678
- "twitter:card": string;
679
- viewport: string;
680
- "og:title": string;
681
- "og:url": string;
682
- }[];
683
- cse_image: {
684
- src: string;
685
- }[];
686
- };
687
- })[];
412
+ result: string;
413
+ __systemFields: string;
414
+ type: string;
415
+ sql_query?: undefined;
688
416
  conversationState?: undefined;
689
417
  message?: undefined;
690
418
  };
691
419
  metadata: {
692
420
  type: string;
693
- icon: {
694
- name: string;
695
- color: string;
696
- };
421
+ icon: null;
697
422
  isOptionalParameter: boolean;
423
+ toolId?: undefined;
698
424
  eventType?: undefined;
699
425
  eventData?: undefined;
700
426
  isToolEvent?: undefined;
701
427
  };
702
- name?: undefined;
703
- tool_call_id?: undefined;
704
- args?: undefined;
705
- additional_kwargs?: undefined;
706
428
  };
707
429
  timestamp: string;
708
430
  type: string;
709
431
  status: string;
710
432
  icon?: undefined;
711
433
  input?: undefined;
434
+ metadata?: undefined;
712
435
  };
713
- sessionId: string;
714
436
  runId: string;
437
+ sessionId: string;
715
438
  timestamp: string;
716
439
  eventType: string;
717
440
  } | {
@@ -726,344 +449,21 @@ export declare const executionEventsSample1: ({
726
449
  toolName: string;
727
450
  input: {
728
451
  reason: string;
729
- searchtext: string;
452
+ query: string;
453
+ thought: string;
454
+ user_query?: undefined;
730
455
  };
731
456
  output: {
732
- kind: string;
733
- url: {
734
- type: string;
735
- template: string;
736
- };
737
- queries: {
738
- request: {
739
- title: string;
740
- totalResults: string;
741
- searchTerms: string;
742
- count: number;
743
- startIndex: number;
744
- inputEncoding: string;
745
- outputEncoding: string;
746
- safe: string;
747
- cx: string;
748
- }[];
749
- nextPage: {
750
- title: string;
751
- totalResults: string;
752
- searchTerms: string;
753
- count: number;
754
- startIndex: number;
755
- inputEncoding: string;
756
- outputEncoding: string;
757
- safe: string;
758
- cx: string;
759
- }[];
760
- };
761
- context: {
762
- title: string;
763
- };
764
- searchInformation: {
765
- searchTime: number;
766
- formattedSearchTime: string;
767
- totalResults: string;
768
- formattedTotalResults: string;
769
- };
770
- items: ({
771
- kind: string;
772
- title: string;
773
- htmlTitle: string;
774
- link: string;
775
- displayLink: string;
776
- snippet: string;
777
- htmlSnippet: string;
778
- formattedUrl: string;
779
- htmlFormattedUrl: string;
780
- pagemap: {
781
- cse_thumbnail: {
782
- src: string;
783
- width: string;
784
- height: string;
785
- }[];
786
- metatags: {
787
- "og:image": string;
788
- "og:type": string;
789
- "og:image:width": string;
790
- "twitter:card": string;
791
- "theme-color": string;
792
- "og:site_name": string;
793
- skype_toolbar: string;
794
- "msvalidate.01": string;
795
- "og:title": string;
796
- "og:image:height": string;
797
- "og:image:type": string;
798
- "msapplication-tileimage": string;
799
- "og:description": string;
800
- "article:publisher": string;
801
- "twitter:site": string;
802
- "article:modified_time": string;
803
- viewport: string;
804
- "og:locale": string;
805
- "og:url": string;
806
- }[];
807
- cse_image: {
808
- src: string;
809
- }[];
810
- };
811
- } | {
812
- kind: string;
813
- title: string;
814
- htmlTitle: string;
815
- link: string;
816
- displayLink: string;
817
- snippet: string;
818
- htmlSnippet: string;
819
- formattedUrl: string;
820
- htmlFormattedUrl: string;
821
- pagemap: {
822
- cse_thumbnail: {
823
- src: string;
824
- width: string;
825
- height: string;
826
- }[];
827
- metatags: {
828
- "og:image": string;
829
- "og:type": string;
830
- "twitter:card": string;
831
- "twitter:title": string;
832
- clientsideingraphs: string;
833
- "al:ios:app_name": string;
834
- "linkedin:pagetag": string;
835
- "og:title": string;
836
- "al:android:package": string;
837
- pagekey: string;
838
- bingbot: string;
839
- locale: string;
840
- "al:ios:url": string;
841
- "og:description": string;
842
- "al:ios:app_store_id": string;
843
- "twitter:image": string;
844
- "al:android:url": string;
845
- "twitter:site": string;
846
- viewport: string;
847
- "twitter:description": string;
848
- "og:url": string;
849
- "al:android:app_name": string;
850
- }[];
851
- cse_image: {
852
- src: string;
853
- }[];
854
- };
855
- } | {
856
- kind: string;
857
- title: string;
858
- htmlTitle: string;
859
- link: string;
860
- displayLink: string;
861
- snippet: string;
862
- htmlSnippet: string;
863
- formattedUrl: string;
864
- htmlFormattedUrl: string;
865
- pagemap: {
866
- cse_thumbnail: {
867
- src: string;
868
- width: string;
869
- height: string;
870
- }[];
871
- metatags: {
872
- "og:image": string;
873
- "og:type": string;
874
- "og:image:width": string;
875
- "twitter:card": string;
876
- "theme-color": string;
877
- "og:site_name": string;
878
- skype_toolbar: string;
879
- "og:title": string;
880
- "og:image:height": string;
881
- "twitter:label1": string;
882
- "og:image:type": string;
883
- "msapplication-tileimage": string;
884
- "og:description": string;
885
- "article:publisher": string;
886
- "twitter:data1": string;
887
- "twitter:site": string;
888
- "article:modified_time": string;
889
- viewport: string;
890
- "og:locale": string;
891
- "og:url": string;
892
- }[];
893
- cse_image: {
894
- src: string;
895
- }[];
896
- };
897
- } | {
898
- kind: string;
899
- title: string;
900
- htmlTitle: string;
901
- link: string;
902
- displayLink: string;
903
- snippet: string;
904
- htmlSnippet: string;
905
- formattedUrl: string;
906
- htmlFormattedUrl: string;
907
- pagemap: {
908
- cse_thumbnail: {
909
- src: string;
910
- width: string;
911
- height: string;
912
- }[];
913
- metatags: {
914
- referrer: string;
915
- viewport: string;
916
- kore_builder_version: string;
917
- }[];
918
- cse_image: {
919
- src: string;
920
- }[];
921
- };
922
- } | {
923
- kind: string;
924
- title: string;
925
- htmlTitle: string;
926
- link: string;
927
- displayLink: string;
928
- snippet: string;
929
- htmlSnippet: string;
930
- formattedUrl: string;
931
- htmlFormattedUrl: string;
932
- pagemap: {
933
- cse_thumbnail: {
934
- src: string;
935
- width: string;
936
- height: string;
937
- }[];
938
- metatags: {
939
- "og:image": string;
940
- "article:published_time": string;
941
- "og:image:width": string;
942
- "twitter:card": string;
943
- "og:site_name": string;
944
- "sailthru.tags": string;
945
- "twitter:label1": string;
946
- "twitter:label2": string;
947
- "parsely-author": string;
948
- "og:image:type": string;
949
- "msapplication-tileimage": string;
950
- "og:description": string;
951
- "twitter:creator": string;
952
- "parsely-metadata": string;
953
- "article:publisher": string;
954
- "twitter:data1": string;
955
- "twitter:data2": string;
956
- "parsely-type": string;
957
- "twitter:site": string;
958
- "article:modified_time": string;
959
- "parsely-link": string;
960
- "sailthru.title": string;
961
- "parsely-image-url": string;
962
- "parsely-section": string;
963
- "sailthru.date": string;
964
- "og:type": string;
965
- author: string;
966
- "og:title": string;
967
- "og:image:height": string;
968
- "sailthru.image.thumb": string;
969
- "parsely-title": string;
970
- "parsely-pub-date": string;
971
- "sailthru.description": string;
972
- "parsely-tags": string;
973
- viewport: string;
974
- "og:locale": string;
975
- "og:url": string;
976
- "sailthru.author": string;
977
- "sailthru.image.full": string;
978
- }[];
979
- cse_image: {
980
- src: string;
981
- }[];
982
- };
983
- } | {
984
- kind: string;
985
- title: string;
986
- htmlTitle: string;
987
- link: string;
988
- displayLink: string;
989
- snippet: string;
990
- htmlSnippet: string;
991
- formattedUrl: string;
992
- htmlFormattedUrl: string;
993
- pagemap: {
994
- metatags: {
995
- viewport: string;
996
- }[];
997
- cse_thumbnail?: undefined;
998
- cse_image?: undefined;
999
- };
1000
- } | {
1001
- kind: string;
1002
- title: string;
1003
- htmlTitle: string;
1004
- link: string;
1005
- displayLink: string;
1006
- snippet: string;
1007
- htmlSnippet: string;
1008
- formattedUrl: string;
1009
- htmlFormattedUrl: string;
1010
- pagemap: {
1011
- cse_thumbnail: {
1012
- src: string;
1013
- width: string;
1014
- height: string;
1015
- }[];
1016
- metatags: {
1017
- "twitter:title": string;
1018
- "og:type": string;
1019
- "twitter:card": string;
1020
- "twitter:domain": string;
1021
- viewport: string;
1022
- author: string;
1023
- "twitter:description": string;
1024
- "og:title": string;
1025
- "og:description": string;
1026
- }[];
1027
- cse_image: {
1028
- src: string;
1029
- }[];
1030
- };
1031
- } | {
1032
- kind: string;
1033
- title: string;
1034
- htmlTitle: string;
1035
- link: string;
1036
- displayLink: string;
1037
- snippet: string;
1038
- htmlSnippet: string;
1039
- formattedUrl: string;
1040
- htmlFormattedUrl: string;
1041
- pagemap: {
1042
- cse_thumbnail: {
1043
- src: string;
1044
- width: string;
1045
- height: string;
1046
- }[];
1047
- metatags: {
1048
- "twitter:title": string;
1049
- "twitter:card": string;
1050
- viewport: string;
1051
- "og:title": string;
1052
- "og:url": string;
1053
- }[];
1054
- cse_image: {
1055
- src: string;
1056
- }[];
1057
- };
1058
- })[];
457
+ result: string;
458
+ __systemFields: string;
459
+ type: string;
460
+ sql_query?: undefined;
1059
461
  };
1060
462
  metadata: {
1061
463
  type: string;
1062
- icon: {
1063
- name: string;
1064
- color: string;
1065
- };
464
+ icon: null;
1066
465
  isOptionalParameter: boolean;
466
+ toolId?: undefined;
1067
467
  };
1068
468
  name?: undefined;
1069
469
  tool_call_id?: undefined;
@@ -1075,9 +475,10 @@ export declare const executionEventsSample1: ({
1075
475
  status: string;
1076
476
  icon?: undefined;
1077
477
  output?: undefined;
478
+ metadata?: undefined;
1078
479
  };
1079
- sessionId: string;
1080
480
  runId: string;
481
+ sessionId: string;
1081
482
  timestamp: string;
1082
483
  eventType: string;
1083
484
  } | {
@@ -1089,38 +490,32 @@ export declare const executionEventsSample1: ({
1089
490
  name: string;
1090
491
  output: {
1091
492
  name: string;
1092
- tool_call_id: string;
1093
493
  args: {
1094
- reason: string;
494
+ thought: string;
1095
495
  conversationState: string;
496
+ reason: string;
1096
497
  message: string;
1097
- searchtext?: undefined;
1098
498
  };
1099
- additional_kwargs: {
1100
- llmUsageMetadata: {
1101
- input_tokens: number;
1102
- output_tokens: number;
1103
- total_tokens: number;
1104
- input_token_details: {
1105
- cache_read: number;
1106
- cache_creation: number;
1107
- };
1108
- };
1109
- };
1110
- type?: undefined;
1111
- toolName?: undefined;
1112
- input?: undefined;
1113
- output?: undefined;
1114
- metadata?: undefined;
1115
- };
499
+ tool_call_id: string;
500
+ isAgentHandoff: boolean;
501
+ }[];
1116
502
  timestamp: string;
1117
503
  type: string;
1118
504
  status: string;
505
+ metadata: {
506
+ usage_metadata: {
507
+ input_tokens: number;
508
+ output_tokens: number;
509
+ total_tokens: number;
510
+ };
511
+ provider: string;
512
+ architecture: string;
513
+ };
1119
514
  icon?: undefined;
1120
515
  input?: undefined;
1121
516
  };
1122
- sessionId: string;
1123
517
  runId: string;
518
+ sessionId: string;
1124
519
  timestamp: string;
1125
520
  eventType: string;
1126
521
  } | {
@@ -1134,20 +529,18 @@ export declare const executionEventsSample1: ({
1134
529
  name: string;
1135
530
  tool_call_id: string;
1136
531
  args: {
1137
- reason: string;
532
+ thought: string;
1138
533
  conversationState: string;
534
+ reason: string;
1139
535
  message: string;
1140
- searchtext?: undefined;
536
+ user_query?: undefined;
537
+ query?: undefined;
1141
538
  };
1142
539
  additional_kwargs: {
1143
540
  llmUsageMetadata: {
1144
541
  input_tokens: number;
1145
542
  output_tokens: number;
1146
543
  total_tokens: number;
1147
- input_token_details: {
1148
- cache_read: number;
1149
- cache_creation: number;
1150
- };
1151
544
  };
1152
545
  };
1153
546
  type?: undefined;
@@ -1161,9 +554,10 @@ export declare const executionEventsSample1: ({
1161
554
  status: string;
1162
555
  icon?: undefined;
1163
556
  output?: undefined;
557
+ metadata?: undefined;
1164
558
  };
1165
- sessionId: string;
1166
559
  runId: string;
560
+ sessionId: string;
1167
561
  timestamp: string;
1168
562
  eventType: string;
1169
563
  } | {
@@ -1177,20 +571,20 @@ export declare const executionEventsSample1: ({
1177
571
  type: string;
1178
572
  toolName: string;
1179
573
  input: {
1180
- reason: string;
574
+ thought: string;
1181
575
  conversationState: string;
576
+ reason: string;
1182
577
  message: string;
1183
- searchtext?: undefined;
578
+ user_query?: undefined;
579
+ query?: undefined;
1184
580
  };
1185
581
  output: {
1186
582
  conversationState: string;
1187
583
  message: string;
1188
- kind?: undefined;
1189
- url?: undefined;
1190
- queries?: undefined;
1191
- context?: undefined;
1192
- searchInformation?: undefined;
1193
- items?: undefined;
584
+ sql_query?: undefined;
585
+ result?: undefined;
586
+ __systemFields?: undefined;
587
+ type?: undefined;
1194
588
  };
1195
589
  metadata: {
1196
590
  type: string;
@@ -1202,22 +596,112 @@ export declare const executionEventsSample1: ({
1202
596
  to: string;
1203
597
  type: string;
1204
598
  _id: string;
1205
- metadata?: undefined;
1206
599
  };
1207
600
  isToolEvent: boolean;
1208
601
  isOptionalParameter: boolean;
602
+ toolId?: undefined;
1209
603
  icon?: undefined;
1210
604
  };
1211
- name?: undefined;
1212
- tool_call_id?: undefined;
1213
- args?: undefined;
1214
- additional_kwargs?: undefined;
1215
605
  };
1216
606
  timestamp: string;
1217
607
  type: string;
1218
608
  status: string;
1219
609
  icon?: undefined;
1220
610
  input?: undefined;
611
+ metadata?: undefined;
612
+ };
613
+ runId: string;
614
+ sessionId: string;
615
+ timestamp: string;
616
+ eventType: string;
617
+ } | {
618
+ type: string;
619
+ data: {
620
+ phase: string;
621
+ id: string;
622
+ parentId: null;
623
+ name: string;
624
+ timestamp: string;
625
+ type: string;
626
+ status: string;
627
+ icon?: undefined;
628
+ input?: undefined;
629
+ output?: undefined;
630
+ metadata?: undefined;
631
+ };
632
+ runId: string;
633
+ sessionId: string;
634
+ timestamp: string;
635
+ eventType: string;
636
+ })[];
637
+ export declare const executionEventsSample3: ({
638
+ type: string;
639
+ data: {
640
+ phase: string;
641
+ id: string;
642
+ parentId: null;
643
+ name: string;
644
+ timestamp: string;
645
+ type: string;
646
+ status: string;
647
+ input?: undefined;
648
+ error?: undefined;
649
+ output?: undefined;
650
+ };
651
+ sessionId: string;
652
+ runId: string;
653
+ timestamp: string;
654
+ eventType: string;
655
+ } | {
656
+ type: string;
657
+ data: {
658
+ phase: string;
659
+ id: string;
660
+ parentId: string;
661
+ name: string;
662
+ input: string;
663
+ timestamp: string;
664
+ type: string;
665
+ status: string;
666
+ error?: undefined;
667
+ output?: undefined;
668
+ };
669
+ sessionId: string;
670
+ runId: string;
671
+ timestamp: string;
672
+ eventType: string;
673
+ } | {
674
+ type: string;
675
+ data: {
676
+ phase: string;
677
+ id: string;
678
+ parentId: string;
679
+ name: string;
680
+ error: {
681
+ scannedPrompt: string;
682
+ endFlow: boolean;
683
+ hasScanners: boolean;
684
+ scannersData: {
685
+ Toxicity: {
686
+ scannerInput: string;
687
+ scannerOutput: {
688
+ Output: string;
689
+ RiskScore: number;
690
+ Validity: boolean;
691
+ Duration: string;
692
+ };
693
+ };
694
+ };
695
+ results: never[];
696
+ scannerName: string;
697
+ endFlowMsg: string;
698
+ scanType: string;
699
+ };
700
+ timestamp: string;
701
+ type: string;
702
+ status: string;
703
+ output: string;
704
+ input?: undefined;
1221
705
  };
1222
706
  sessionId: string;
1223
707
  runId: string;
@@ -1260,6 +744,41 @@ export declare const executionEventsSample: ({
1260
744
  runId: string;
1261
745
  timestamp: string;
1262
746
  eventType: string;
747
+ } | {
748
+ type: string;
749
+ data: {
750
+ phase: string;
751
+ id: string;
752
+ parentId: string;
753
+ name: string;
754
+ output: {
755
+ scannedPrompt: string;
756
+ endFlow: boolean;
757
+ hasScanners: boolean;
758
+ scannersData: {
759
+ Toxicity: {
760
+ scannerInput: string;
761
+ scannerOutput: {
762
+ Output: string;
763
+ RiskScore: number;
764
+ Validity: boolean;
765
+ Duration: string;
766
+ };
767
+ };
768
+ };
769
+ results: never[];
770
+ scanType: string;
771
+ };
772
+ timestamp: string;
773
+ type: string;
774
+ status: string;
775
+ input?: undefined;
776
+ metadata?: undefined;
777
+ };
778
+ sessionId: string;
779
+ runId: string;
780
+ timestamp: string;
781
+ eventType: string;
1263
782
  } | {
1264
783
  type: string;
1265
784
  data: {
@@ -1271,8 +790,8 @@ export declare const executionEventsSample: ({
1271
790
  name: string;
1272
791
  args: {
1273
792
  reason: string;
1274
- message: string;
1275
793
  thought: string;
794
+ message: string;
1276
795
  };
1277
796
  tool_call_id: string;
1278
797
  }[];