@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.
@@ -1,5 +1,5 @@
1
1
 
2
- > @axiom-lattice/protocols@3.0.3 build /home/runner/work/agentic/agentic/packages/protocols
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
  CLI Building entry: src/index.ts
@@ -10,11 +10,11 @@
10
10
  ESM Build start
11
11
  CJS dist/index.js 6.69 KB
12
12
  CJS dist/index.js.map 47.36 KB
13
- CJS ⚡️ Build success in 301ms
13
+ CJS ⚡️ Build success in 315ms
14
14
  ESM dist/index.mjs 4.78 KB
15
15
  ESM dist/index.mjs.map 44.88 KB
16
- ESM ⚡️ Build success in 309ms
16
+ ESM ⚡️ Build success in 316ms
17
17
  DTS Build start
18
- DTS ⚡️ Build success in 14233ms
19
- DTS dist/index.d.ts 142.56 KB
20
- DTS dist/index.d.mts 142.56 KB
18
+ DTS ⚡️ Build success in 13450ms
19
+ DTS dist/index.d.ts 142.64 KB
20
+ DTS dist/index.d.mts 142.64 KB
package/CHANGELOG.md CHANGED
@@ -1,5 +1,11 @@
1
1
  # @axiom-lattice/protocols
2
2
 
3
+ ## 3.0.4
4
+
5
+ ### Patch Changes
6
+
7
+ - 1c51099: fix default model key
8
+
3
9
  ## 3.0.3
4
10
 
5
11
  ### Patch Changes
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
- judgeModelConfig: Record<string, unknown>;
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
- judgeModelConfig: Record<string, unknown>;
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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@axiom-lattice/protocols",
3
- "version": "3.0.3",
3
+ "version": "3.0.4",
4
4
  "description": "Unified protocol type definitions for Axiom Lattice framework",
5
5
  "main": "dist/index.js",
6
6
  "module": "dist/index.mjs",
@@ -16,7 +16,8 @@ export interface CreateEvalProjectRequest {
16
16
  name: string;
17
17
  description?: string;
18
18
  version?: string;
19
- judgeModelConfig: Record<string, unknown>;
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>;