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