@ax-llm/ax 11.0.22 → 11.0.23

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/index.d.cts CHANGED
@@ -345,6 +345,7 @@ declare class AxBaseAI<TModel, TEmbedModel, TChatRequest, TEmbedRequest, TChatRe
345
345
  }
346
346
 
347
347
  declare enum AxAIAnthropicModel {
348
+ Claude37Sonnet = "claude-3-7-sonnet-latest",
348
349
  Claude35Sonnet = "claude-3-5-sonnet-latest",
349
350
  Claude35Haiku = "claude-3-5-haiku-latest",
350
351
  Claude3Opus = "claude-3-opus-latest",
@@ -354,6 +355,7 @@ declare enum AxAIAnthropicModel {
354
355
  ClaudeInstant12 = "claude-instant-1.2"
355
356
  }
356
357
  declare enum AxAIAnthropicVertexModel {
358
+ Claude37Sonnet = "claude-3-7-sonnet",
357
359
  Claude35Haiku = "claude-3-5-haiku",
358
360
  Claude35Sonnet = "claude-3-5-sonnet",
359
361
  Claude35SonnetV2 = "claude-3-5-sonnet-v2",
package/index.d.ts CHANGED
@@ -345,6 +345,7 @@ declare class AxBaseAI<TModel, TEmbedModel, TChatRequest, TEmbedRequest, TChatRe
345
345
  }
346
346
 
347
347
  declare enum AxAIAnthropicModel {
348
+ Claude37Sonnet = "claude-3-7-sonnet-latest",
348
349
  Claude35Sonnet = "claude-3-5-sonnet-latest",
349
350
  Claude35Haiku = "claude-3-5-haiku-latest",
350
351
  Claude3Opus = "claude-3-opus-latest",
@@ -354,6 +355,7 @@ declare enum AxAIAnthropicModel {
354
355
  ClaudeInstant12 = "claude-instant-1.2"
355
356
  }
356
357
  declare enum AxAIAnthropicVertexModel {
358
+ Claude37Sonnet = "claude-3-7-sonnet",
357
359
  Claude35Haiku = "claude-3-5-haiku",
358
360
  Claude35Sonnet = "claude-3-5-sonnet",
359
361
  Claude35SonnetV2 = "claude-3-5-sonnet-v2",
package/index.js CHANGED
@@ -1154,6 +1154,7 @@ var GoogleVertexAuth = class {
1154
1154
 
1155
1155
  // ai/anthropic/types.ts
1156
1156
  var AxAIAnthropicModel = /* @__PURE__ */ ((AxAIAnthropicModel2) => {
1157
+ AxAIAnthropicModel2["Claude37Sonnet"] = "claude-3-7-sonnet-latest";
1157
1158
  AxAIAnthropicModel2["Claude35Sonnet"] = "claude-3-5-sonnet-latest";
1158
1159
  AxAIAnthropicModel2["Claude35Haiku"] = "claude-3-5-haiku-latest";
1159
1160
  AxAIAnthropicModel2["Claude3Opus"] = "claude-3-opus-latest";
@@ -1164,6 +1165,7 @@ var AxAIAnthropicModel = /* @__PURE__ */ ((AxAIAnthropicModel2) => {
1164
1165
  return AxAIAnthropicModel2;
1165
1166
  })(AxAIAnthropicModel || {});
1166
1167
  var AxAIAnthropicVertexModel = /* @__PURE__ */ ((AxAIAnthropicVertexModel3) => {
1168
+ AxAIAnthropicVertexModel3["Claude37Sonnet"] = "claude-3-7-sonnet";
1167
1169
  AxAIAnthropicVertexModel3["Claude35Haiku"] = "claude-3-5-haiku";
1168
1170
  AxAIAnthropicVertexModel3["Claude35Sonnet"] = "claude-3-5-sonnet";
1169
1171
  AxAIAnthropicVertexModel3["Claude35SonnetV2"] = "claude-3-5-sonnet-v2";