opik 2.0.52 → 2.0.53
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/index.d.cts +2 -0
- package/dist/index.d.ts +2 -0
- package/package.json +1 -1
package/dist/index.d.cts
CHANGED
|
@@ -5312,7 +5312,9 @@ interface KpiCardResponse {
|
|
|
5312
5312
|
|
|
5313
5313
|
interface KpiMetric {
|
|
5314
5314
|
type?: KpiMetricType;
|
|
5315
|
+
/** Metric value for the current period. Unit depends on `type`: `count` is an integer count; `errors` is a percentage in [0, 100]; `avg_duration` is milliseconds; `total_cost` is in USD. */
|
|
5315
5316
|
currentValue?: number;
|
|
5317
|
+
/** Metric value for the immediately preceding period of equal length. Same unit as `current_value`. */
|
|
5316
5318
|
previousValue?: number;
|
|
5317
5319
|
}
|
|
5318
5320
|
|
package/dist/index.d.ts
CHANGED
|
@@ -5312,7 +5312,9 @@ interface KpiCardResponse {
|
|
|
5312
5312
|
|
|
5313
5313
|
interface KpiMetric {
|
|
5314
5314
|
type?: KpiMetricType;
|
|
5315
|
+
/** Metric value for the current period. Unit depends on `type`: `count` is an integer count; `errors` is a percentage in [0, 100]; `avg_duration` is milliseconds; `total_cost` is in USD. */
|
|
5315
5316
|
currentValue?: number;
|
|
5317
|
+
/** Metric value for the immediately preceding period of equal length. Same unit as `current_value`. */
|
|
5316
5318
|
previousValue?: number;
|
|
5317
5319
|
}
|
|
5318
5320
|
|