@axiom-lattice/protocols 2.1.8 → 2.1.9-hotfix.0

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,20 +1,21 @@
1
-
2
- > @axiom-lattice/protocols@2.1.8 build /home/runner/work/agentic/agentic/packages/protocols
3
- > tsup src/index.ts --format cjs,esm --dts --sourcemap
4
-
5
- CLI Building entry: src/index.ts
6
- CLI Using tsconfig: tsconfig.json
7
- CLI tsup v8.5.0
8
- CLI Target: es2020
9
- CJS Build start
10
- ESM Build start
11
- ESM dist/index.mjs 2.87 KB
12
- ESM dist/index.mjs.map 19.75 KB
13
- ESM ⚡️ Build success in 45ms
14
- CJS dist/index.js 4.28 KB
15
- CJS dist/index.js.map 20.52 KB
16
- CJS ⚡️ Build success in 47ms
17
- DTS Build start
18
- DTS ⚡️ Build success in 2410ms
19
- DTS dist/index.d.ts 28.62 KB
20
- DTS dist/index.d.mts 28.62 KB
1
+
2
+ 
3
+ > @axiom-lattice/protocols@2.1.9 build /Users/simon/code/agentic/packages/protocols
4
+ > tsup src/index.ts --format cjs,esm --dts --sourcemap
5
+
6
+ CLI Building entry: src/index.ts
7
+ CLI Using tsconfig: tsconfig.json
8
+ CLI tsup v8.5.0
9
+ CLI Target: es2020
10
+ CJS Build start
11
+ ESM Build start
12
+ CJS dist/index.js 4.28 KB
13
+ CJS dist/index.js.map 20.52 KB
14
+ CJS ⚡️ Build success in 58ms
15
+ ESM dist/index.mjs 2.87 KB
16
+ ESM dist/index.mjs.map 19.75 KB
17
+ ESM ⚡️ Build success in 58ms
18
+ DTS Build start
19
+ DTS ⚡️ Build success in 597ms
20
+ DTS dist/index.d.ts 28.69 KB
21
+ DTS dist/index.d.mts 28.69 KB
@@ -0,0 +1,4 @@
1
+
2
+ > @axiom-lattice/protocols@2.1.20 lint /Users/simon/code/agentic/packages/protocols
3
+ > eslint src/**/*.ts
4
+
package/CHANGELOG.md CHANGED
@@ -1,5 +1,11 @@
1
1
  # @axiom-lattice/protocols
2
2
 
3
+ ## 2.1.9-hotfix.0
4
+
5
+ ### Patch Changes
6
+
7
+ - hotfix modelKargs
8
+
3
9
  ## 2.1.8
4
10
 
5
11
  ### Patch Changes
package/dist/index.d.mts CHANGED
@@ -101,6 +101,8 @@ interface LLMConfig {
101
101
  apiKeyEnvName?: string;
102
102
  apiKey?: string;
103
103
  baseURL?: string;
104
+ modelKwargs?: Record<string, any>;
105
+ extra?: Record<string, any>;
104
106
  }
105
107
  /**
106
108
  * 模型Lattice协议接口
package/dist/index.d.ts CHANGED
@@ -101,6 +101,8 @@ interface LLMConfig {
101
101
  apiKeyEnvName?: string;
102
102
  apiKey?: string;
103
103
  baseURL?: string;
104
+ modelKwargs?: Record<string, any>;
105
+ extra?: Record<string, any>;
104
106
  }
105
107
  /**
106
108
  * 模型Lattice协议接口
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@axiom-lattice/protocols",
3
- "version": "2.1.8",
3
+ "version": "2.1.9-hotfix.0",
4
4
  "description": "Unified protocol type definitions for Axiom Lattice framework",
5
5
  "main": "dist/index.js",
6
6
  "module": "dist/index.mjs",
@@ -24,6 +24,8 @@ export interface LLMConfig {
24
24
  apiKeyEnvName?: string;
25
25
  apiKey?: string;
26
26
  baseURL?: string;
27
+ modelKwargs?: Record<string, any>;
28
+ extra?: Record<string, any>;
27
29
  }
28
30
 
29
31
  /**