@aexhq/sdk 0.22.1 → 0.23.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.
@@ -27,6 +27,9 @@ export declare const MODEL_PROVIDER_IDS: {
27
27
  readonly "claude-3-5-sonnet-latest": {
28
28
  readonly anthropic: "claude-3-5-sonnet-latest";
29
29
  };
30
+ readonly "claude-sonnet-4-6": {
31
+ readonly anthropic: "claude-sonnet-4-6";
32
+ };
30
33
  readonly "deepseek-v4-flash": {
31
34
  readonly deepseek: "deepseek-v4-flash";
32
35
  };
@@ -93,6 +96,8 @@ export declare const Models: {
93
96
  readonly CLAUDE_3_5_HAIKU_LATEST: "claude-3-5-haiku-latest";
94
97
  /** Claude 3.5 Sonnet (latest) — Anthropic. */
95
98
  readonly CLAUDE_3_5_SONNET_LATEST: "claude-3-5-sonnet-latest";
99
+ /** Claude Sonnet 4.6 — Anthropic (1M context, reasoning-capable). */
100
+ readonly CLAUDE_SONNET_4_6: "claude-sonnet-4-6";
96
101
  /** DeepSeek V4 Flash — DeepSeek (non-thinking, fast). */
97
102
  readonly DEEPSEEK_V4_FLASH: "deepseek-v4-flash";
98
103
  /** DeepSeek V4 Pro — DeepSeek (reasoning-heavy). */
@@ -148,6 +153,8 @@ export declare const RunModels: {
148
153
  readonly CLAUDE_3_5_HAIKU_LATEST: "claude-3-5-haiku-latest";
149
154
  /** Claude 3.5 Sonnet (latest) — Anthropic. */
150
155
  readonly CLAUDE_3_5_SONNET_LATEST: "claude-3-5-sonnet-latest";
156
+ /** Claude Sonnet 4.6 — Anthropic (1M context, reasoning-capable). */
157
+ readonly CLAUDE_SONNET_4_6: "claude-sonnet-4-6";
151
158
  /** DeepSeek V4 Flash — DeepSeek (non-thinking, fast). */
152
159
  readonly DEEPSEEK_V4_FLASH: "deepseek-v4-flash";
153
160
  /** DeepSeek V4 Pro — DeepSeek (reasoning-heavy). */
@@ -20,6 +20,7 @@ export const MODEL_PROVIDER_IDS = {
20
20
  "claude-haiku-4-5": { anthropic: "claude-haiku-4-5" },
21
21
  "claude-3-5-haiku-latest": { anthropic: "claude-3-5-haiku-latest" },
22
22
  "claude-3-5-sonnet-latest": { anthropic: "claude-3-5-sonnet-latest" },
23
+ "claude-sonnet-4-6": { anthropic: "claude-sonnet-4-6" },
23
24
  "deepseek-v4-flash": { deepseek: "deepseek-v4-flash" },
24
25
  "deepseek-v4-pro": { deepseek: "deepseek-v4-pro" },
25
26
  "deepseek-chat": { deepseek: "deepseek-chat" },
@@ -63,6 +64,8 @@ export const Models = {
63
64
  CLAUDE_3_5_HAIKU_LATEST: "claude-3-5-haiku-latest",
64
65
  /** Claude 3.5 Sonnet (latest) — Anthropic. */
65
66
  CLAUDE_3_5_SONNET_LATEST: "claude-3-5-sonnet-latest",
67
+ /** Claude Sonnet 4.6 — Anthropic (1M context, reasoning-capable). */
68
+ CLAUDE_SONNET_4_6: "claude-sonnet-4-6",
66
69
  /** DeepSeek V4 Flash — DeepSeek (non-thinking, fast). */
67
70
  DEEPSEEK_V4_FLASH: "deepseek-v4-flash",
68
71
  /** DeepSeek V4 Pro — DeepSeek (reasoning-heavy). */
package/dist/cli.mjs CHANGED
@@ -162,6 +162,7 @@ var MODEL_PROVIDER_IDS = {
162
162
  "claude-haiku-4-5": { anthropic: "claude-haiku-4-5" },
163
163
  "claude-3-5-haiku-latest": { anthropic: "claude-3-5-haiku-latest" },
164
164
  "claude-3-5-sonnet-latest": { anthropic: "claude-3-5-sonnet-latest" },
165
+ "claude-sonnet-4-6": { anthropic: "claude-sonnet-4-6" },
165
166
  "deepseek-v4-flash": { deepseek: "deepseek-v4-flash" },
166
167
  "deepseek-v4-pro": { deepseek: "deepseek-v4-pro" },
167
168
  "deepseek-chat": { deepseek: "deepseek-chat" },
@@ -1 +1 @@
1
- 84dede6ed017defb49617f6f799912364125363867fa9ca8054150ebc0446286 cli.mjs
1
+ 37cb8db75fb0852134f1feae2b14bcea847d968f9fe13862c508f916366d1f85 cli.mjs
package/dist/version.d.ts CHANGED
@@ -6,4 +6,4 @@
6
6
  *
7
7
  * Used by the (future) User-Agent header on outbound SDK requests.
8
8
  */
9
- export declare const SDK_VERSION = "0.22.1";
9
+ export declare const SDK_VERSION = "0.23.0";
package/dist/version.js CHANGED
@@ -6,5 +6,5 @@
6
6
  *
7
7
  * Used by the (future) User-Agent header on outbound SDK requests.
8
8
  */
9
- export const SDK_VERSION = "0.22.1";
9
+ export const SDK_VERSION = "0.23.0";
10
10
  //# sourceMappingURL=version.js.map
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@aexhq/sdk",
3
- "version": "0.22.1",
3
+ "version": "0.23.0",
4
4
  "description": "TypeScript SDK for running autonomous agent sessions across providers (Anthropic, OpenAI, DeepSeek, Gemini, Mistral) behind one interface.",
5
5
  "license": "Apache-2.0",
6
6
  "repository": {
@@ -26,7 +26,7 @@
26
26
  "examples"
27
27
  ],
28
28
  "devDependencies": {
29
- "@aexhq/contracts": "0.22.1"
29
+ "@aexhq/contracts": "0.23.0"
30
30
  },
31
31
  "engines": {
32
32
  "node": ">=20"