@core-ai/anthropic-vertex 0.24.0 → 0.25.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.
package/dist/index.d.ts CHANGED
@@ -8,7 +8,6 @@ type AnthropicVertexProviderOptions = {
8
8
  credentials?: AnthropicVertexServiceAccountCredentials;
9
9
  client?: AnthropicChatClient;
10
10
  defaultMaxTokens?: number;
11
- useStrictToolSchemas?: boolean;
12
11
  };
13
12
  type AnthropicVertexProvider = {
14
13
  chatModel(modelId: string): ChatModel;
package/dist/index.js CHANGED
@@ -14,8 +14,7 @@ function createAnthropicVertex(options = {}) {
14
14
  defaultMaxTokens: options.defaultMaxTokens
15
15
  },
16
16
  {
17
- providerId: PROVIDER_ID,
18
- useStrictToolSchemas: options.useStrictToolSchemas
17
+ providerId: PROVIDER_ID
19
18
  }
20
19
  );
21
20
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@core-ai/anthropic-vertex",
3
- "version": "0.24.0",
3
+ "version": "0.25.0",
4
4
  "description": "Vertex AI Anthropic (Claude) provider package for @core-ai/core-ai",
5
5
  "license": "MIT",
6
6
  "author": "Omnifact (https://omnifact.ai)",
@@ -49,8 +49,8 @@
49
49
  },
50
50
  "dependencies": {
51
51
  "@anthropic-ai/vertex-sdk": "^0.19.0",
52
- "@core-ai/anthropic": "^0.24.0",
53
- "@core-ai/core-ai": "^0.24.0",
52
+ "@core-ai/anthropic": "^0.25.0",
53
+ "@core-ai/core-ai": "^0.25.0",
54
54
  "google-auth-library": "^10.2.0"
55
55
  },
56
56
  "peerDependencies": {