@axiom-lattice/protocols 3.0.3 → 3.0.4
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/.turbo/turbo-build.log +6 -6
- package/CHANGELOG.md +6 -0
- package/dist/index.d.mts +2 -1
- package/dist/index.d.ts +2 -1
- package/package.json +1 -1
- package/src/EvalStoreProtocol.ts +2 -1
package/.turbo/turbo-build.log
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
|
|
2
|
-
> @axiom-lattice/protocols@3.0.
|
|
2
|
+
> @axiom-lattice/protocols@3.0.4 build /home/runner/work/agentic/agentic/packages/protocols
|
|
3
3
|
> tsup src/index.ts --format cjs,esm --dts --sourcemap
|
|
4
4
|
|
|
5
5
|
[34mCLI[39m Building entry: src/index.ts
|
|
@@ -10,11 +10,11 @@
|
|
|
10
10
|
[34mESM[39m Build start
|
|
11
11
|
[32mCJS[39m [1mdist/index.js [22m[32m6.69 KB[39m
|
|
12
12
|
[32mCJS[39m [1mdist/index.js.map [22m[32m47.36 KB[39m
|
|
13
|
-
[32mCJS[39m ⚡️ Build success in
|
|
13
|
+
[32mCJS[39m ⚡️ Build success in 315ms
|
|
14
14
|
[32mESM[39m [1mdist/index.mjs [22m[32m4.78 KB[39m
|
|
15
15
|
[32mESM[39m [1mdist/index.mjs.map [22m[32m44.88 KB[39m
|
|
16
|
-
[32mESM[39m ⚡️ Build success in
|
|
16
|
+
[32mESM[39m ⚡️ Build success in 316ms
|
|
17
17
|
[34mDTS[39m Build start
|
|
18
|
-
[32mDTS[39m ⚡️ Build success in
|
|
19
|
-
[32mDTS[39m [1mdist/index.d.ts [22m[32m142.
|
|
20
|
-
[32mDTS[39m [1mdist/index.d.mts [22m[32m142.
|
|
18
|
+
[32mDTS[39m ⚡️ Build success in 13450ms
|
|
19
|
+
[32mDTS[39m [1mdist/index.d.ts [22m[32m142.64 KB[39m
|
|
20
|
+
[32mDTS[39m [1mdist/index.d.mts [22m[32m142.64 KB[39m
|
package/CHANGELOG.md
CHANGED
package/dist/index.d.mts
CHANGED
|
@@ -3444,7 +3444,8 @@ interface CreateEvalProjectRequest {
|
|
|
3444
3444
|
name: string;
|
|
3445
3445
|
description?: string;
|
|
3446
3446
|
version?: string;
|
|
3447
|
-
|
|
3447
|
+
/** Judge model config; omit to let the runner resolve its default model. */
|
|
3448
|
+
judgeModelConfig?: Record<string, unknown>;
|
|
3448
3449
|
targetServerConfig: Record<string, unknown>;
|
|
3449
3450
|
concurrency?: number;
|
|
3450
3451
|
reportConfig?: Record<string, unknown>;
|
package/dist/index.d.ts
CHANGED
|
@@ -3444,7 +3444,8 @@ interface CreateEvalProjectRequest {
|
|
|
3444
3444
|
name: string;
|
|
3445
3445
|
description?: string;
|
|
3446
3446
|
version?: string;
|
|
3447
|
-
|
|
3447
|
+
/** Judge model config; omit to let the runner resolve its default model. */
|
|
3448
|
+
judgeModelConfig?: Record<string, unknown>;
|
|
3448
3449
|
targetServerConfig: Record<string, unknown>;
|
|
3449
3450
|
concurrency?: number;
|
|
3450
3451
|
reportConfig?: Record<string, unknown>;
|
package/package.json
CHANGED
package/src/EvalStoreProtocol.ts
CHANGED
|
@@ -16,7 +16,8 @@ export interface CreateEvalProjectRequest {
|
|
|
16
16
|
name: string;
|
|
17
17
|
description?: string;
|
|
18
18
|
version?: string;
|
|
19
|
-
|
|
19
|
+
/** Judge model config; omit to let the runner resolve its default model. */
|
|
20
|
+
judgeModelConfig?: Record<string, unknown>;
|
|
20
21
|
targetServerConfig: Record<string, unknown>;
|
|
21
22
|
concurrency?: number;
|
|
22
23
|
reportConfig?: Record<string, unknown>;
|