You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -337,7 +340,8 @@ export class ChatMLFetcherImpl extends AbstractChatMLFetcher {
337
340
timeToFirstTokenEmitted,
338
341
timeToCancelled,
339
342
isVisionRequest,
340
-
isBYOK
343
+
isBYOK,
344
+
isAuto
341
345
}: {
342
346
totalTokenMax: number;
343
347
promptTokenCount: number;
@@ -347,6 +351,7 @@ export class ChatMLFetcherImpl extends AbstractChatMLFetcher {
347
351
timeToCancelled: number;
348
352
isVisionRequest: number;
349
353
isBYOK: number;
354
+
isAuto: number;
350
355
}
351
356
){
352
357
/* __GDPR__
@@ -366,6 +371,7 @@ export class ChatMLFetcherImpl extends AbstractChatMLFetcher {
366
371
"timeToCancelled": { "classification": "SystemMetaData", "purpose": "PerformanceAndHealth", "comment": "Time to first token", "isMeasurement": true },
367
372
"isVisionRequest": { "classification": "SystemMetaData", "purpose": "PerformanceAndHealth", "comment": "Whether the request was for a vision model", "isMeasurement": true },
368
373
"isBYOK": { "classification": "SystemMetaData", "purpose": "FeatureInsight", "comment": "Whether the request was for a BYOK model", "isMeasurement": true },
374
+
"isAuto": { "classification": "SystemMetaData", "purpose": "FeatureInsight", "comment": "Whether the request was for an Auto model", "isMeasurement": true },
369
375
"retryAfterErrorCategory": { "classification": "SystemMetaData", "purpose": "FeatureInsight", "comment": "If the response failed and this is a retry attempt, this contains the error category." },
370
376
"retryAfterFilterCategory": { "classification": "SystemMetaData", "purpose": "FeatureInsight", "comment": "If the response was filtered and this is a retry attempt, this contains the original filtered content category." }
371
377
}
@@ -384,7 +390,8 @@ export class ChatMLFetcherImpl extends AbstractChatMLFetcher {
384
390
timeToFirstTokenEmitted,
385
391
timeToCancelled,
386
392
isVisionRequest,
387
-
isBYOK
393
+
isBYOK,
394
+
isAuto
388
395
});
389
396
}
390
397
@@ -419,6 +426,7 @@ export class ChatMLFetcherImpl extends AbstractChatMLFetcher {
419
426
"timeToFirstTokenEmitted": { "classification": "SystemMetaData", "purpose": "PerformanceAndHealth", "comment": "Time to first token emitted (visible text)", "isMeasurement": true },
420
427
"isVisionRequest": { "classification": "SystemMetaData", "purpose": "PerformanceAndHealth", "comment": "Whether the request was for a vision model", "isMeasurement": true },
421
428
"isBYOK": { "classification": "SystemMetaData", "purpose": "FeatureInsight", "comment": "Whether the request was for a BYOK model", "isMeasurement": true },
429
+
"isAuto": { "classification": "SystemMetaData", "purpose": "FeatureInsight", "comment": "Whether the request was for an Auto model", "isMeasurement": true },
422
430
"retryAfterErrorCategory": { "classification": "SystemMetaData", "purpose": "FeatureInsight", "comment": "If the response failed and this is a retry attempt, this contains the error category." },
423
431
"retryAfterFilterCategory": { "classification": "SystemMetaData", "purpose": "FeatureInsight", "comment": "If the response was filtered and this is a retry attempt, this contains the original filtered content category." }
424
432
}
@@ -441,7 +449,8 @@ export class ChatMLFetcherImpl extends AbstractChatMLFetcher {
@@ -471,6 +480,7 @@ export class ChatMLFetcherImpl extends AbstractChatMLFetcher {
471
480
"source": { "classification": "SystemMetaData", "purpose": "PerformanceAndHealth", "comment": "Source of the initial request" },
472
481
"initiatorType": { "classification": "SystemMetaData", "purpose": "FeatureInsight", "comment": "Whether the request was initiated by a user or an agent" },
473
482
"model": { "classification": "SystemMetaData", "purpose": "PerformanceAndHealth", "comment": "Model selection for the response" },
483
+
"modelInvoked": { "classification": "SystemMetaData", "purpose": "PerformanceAndHealth", "comment": "Actual model invoked for the response" },
474
484
"apiType": { "classification": "SystemMetaData", "purpose": "PerformanceAndHealth", "comment": "API type for the response- chat completions or responses" },
475
485
"requestId": { "classification": "SystemMetaData", "purpose": "PerformanceAndHealth", "comment": "Id of the current turn request" },
476
486
"associatedRequestId": { "classification": "SystemMetaData", "purpose": "FeatureInsight", "comment": "Another request ID that this request is associated with (eg, the originating request of a summarization request)." },
@@ -491,6 +501,7 @@ export class ChatMLFetcherImpl extends AbstractChatMLFetcher {
491
501
"timeToComplete": { "classification": "SystemMetaData", "purpose": "PerformanceAndHealth", "comment": "Time to complete the request", "isMeasurement": true },
492
502
"isVisionRequest": { "classification": "SystemMetaData", "purpose": "PerformanceAndHealth", "comment": "Whether the request was for a vision model", "isMeasurement": true },
493
503
"isBYOK": { "classification": "SystemMetaData", "purpose": "FeatureInsight", "comment": "Whether the request was for a BYOK model", "isMeasurement": true },
504
+
"isAuto": { "classification": "SystemMetaData", "purpose": "FeatureInsight", "comment": "Whether the request was for an Auto model", "isMeasurement": true },
494
505
"retryAfterErrorCategory": { "classification": "SystemMetaData", "purpose": "FeatureInsight", "comment": "If the response failed and this is a retry attempt, this contains the error category." },
495
506
"retryAfterFilterCategory": { "classification": "SystemMetaData", "purpose": "FeatureInsight", "comment": "If the response was filtered and this is a retry attempt, this contains the original filtered content category." }
496
507
}
@@ -501,6 +512,7 @@ export class ChatMLFetcherImpl extends AbstractChatMLFetcher {
0 commit comments