@ax-llm/ax-ai-sdk-provider 21.0.14 → 22.0.1

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.
Files changed (2) hide show
  1. package/README.md +1 -1
  2. package/package.json +2 -2
package/README.md CHANGED
@@ -23,7 +23,7 @@ This provider is fully compatible with **AI SDK v5** and implements the `Languag
23
23
  You can use it with the AI SDK, either with the AI provider or the Agent Provider
24
24
 
25
25
  ```typescript
26
- const ai = new AxAI({
26
+ const ai = ai({
27
27
  name: "openai",
28
28
  apiKey: process.env["OPENAI_APIKEY"] ?? "",
29
29
  });
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ax-llm/ax-ai-sdk-provider",
3
- "version": "21.0.14",
3
+ "version": "22.0.1",
4
4
  "type": "module",
5
5
  "description": "Ax AI SDK Provider for the Vercel AI SDK",
6
6
  "repository": {
@@ -14,7 +14,7 @@
14
14
  "keywords": [],
15
15
  "dependencies": {
16
16
  "@ai-sdk/provider-utils": "^3.0.10",
17
- "@ax-llm/ax": "21.0.14",
17
+ "@ax-llm/ax": "22.0.1",
18
18
  "ai": "^5.0.100",
19
19
  "zod": "^3.23.8"
20
20
  },