@eigenpal/sdk 0.14.3 → 0.15.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.
- package/package.json +1 -1
- package/src/generated/types.gen.ts +8 -0
- package/src/telemetry.ts +1 -1
package/package.json
CHANGED
|
@@ -836,6 +836,14 @@ export type ExperimentDetail = {
|
|
|
836
836
|
* Dataset example name for the run.
|
|
837
837
|
*/
|
|
838
838
|
exampleName: string | null;
|
|
839
|
+
/**
|
|
840
|
+
* Persisted weighted evaluator score.
|
|
841
|
+
*/
|
|
842
|
+
evalScore: number | null;
|
|
843
|
+
/**
|
|
844
|
+
* Persisted aggregate evaluator verdict.
|
|
845
|
+
*/
|
|
846
|
+
evalPassed: boolean | null;
|
|
839
847
|
createdAt: string;
|
|
840
848
|
completedAt: string | null;
|
|
841
849
|
}>;
|
package/src/telemetry.ts
CHANGED
|
@@ -19,7 +19,7 @@
|
|
|
19
19
|
export const SDK_LANGUAGE = 'typescript';
|
|
20
20
|
// Rewritten at publish time by scripts/release/platform/render-sdk-versions.sh.
|
|
21
21
|
// Keep this string literal exactly stable — sed matches on it.
|
|
22
|
-
export const SDK_VERSION = '0.
|
|
22
|
+
export const SDK_VERSION = '0.15.1';
|
|
23
23
|
|
|
24
24
|
function detectRuntime(): string {
|
|
25
25
|
const g = globalThis as unknown as {
|