@ai-sdk/alibaba 0.0.4 → 0.0.6

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/CHANGELOG.md CHANGED
@@ -1,5 +1,21 @@
1
1
  # @ai-sdk/alibaba
2
2
 
3
+ ## 0.0.6
4
+
5
+ ### Patch Changes
6
+
7
+ - 5543cd1: Add AI Gateway hint to provider READMEs
8
+ - Updated dependencies [5543cd1]
9
+ - @ai-sdk/openai-compatible@1.0.36
10
+
11
+ ## 0.0.5
12
+
13
+ ### Patch Changes
14
+
15
+ - Updated dependencies [a27a978]
16
+ - @ai-sdk/provider-utils@3.0.23
17
+ - @ai-sdk/openai-compatible@1.0.35
18
+
3
19
  ## 0.0.4
4
20
 
5
21
  ### Patch Changes
package/README.md CHANGED
@@ -2,6 +2,8 @@
2
2
 
3
3
  The **[Alibaba provider](https://ai-sdk.dev/providers/ai-sdk-providers/alibaba)** for the [AI SDK](https://ai-sdk.dev/docs) contains language model support for [Alibaba Cloud Model Studio](https://modelstudio.console.alibabacloud.com/), including the Qwen model series with advanced reasoning capabilities.
4
4
 
5
+ > **Deploying to Vercel?** With Vercel's AI Gateway you can access Alibaba (and hundreds of models from other providers) — no additional packages, API keys, or extra cost. [Get started with AI Gateway](https://vercel.com/ai-gateway).
6
+
5
7
  ## Setup
6
8
 
7
9
  The Alibaba provider is available in the `@ai-sdk/alibaba` module. You can install it with
package/dist/index.js CHANGED
@@ -742,7 +742,7 @@ var alibabaChatChunkSchema = import_v42.z.object({
742
742
  });
743
743
 
744
744
  // src/version.ts
745
- var VERSION = "0.0.4";
745
+ var VERSION = "0.0.6";
746
746
 
747
747
  // src/alibaba-provider.ts
748
748
  var alibabaErrorDataSchema = import_v43.z.object({
package/dist/index.mjs CHANGED
@@ -738,7 +738,7 @@ var alibabaChatChunkSchema = z2.object({
738
738
  });
739
739
 
740
740
  // src/version.ts
741
- var VERSION = "0.0.4";
741
+ var VERSION = "0.0.6";
742
742
 
743
743
  // src/alibaba-provider.ts
744
744
  var alibabaErrorDataSchema = z3.object({
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ai-sdk/alibaba",
3
- "version": "0.0.4",
3
+ "version": "0.0.6",
4
4
  "license": "Apache-2.0",
5
5
  "sideEffects": false,
6
6
  "main": "./dist/index.js",
@@ -19,9 +19,9 @@
19
19
  }
20
20
  },
21
21
  "dependencies": {
22
- "@ai-sdk/openai-compatible": "1.0.34",
22
+ "@ai-sdk/openai-compatible": "1.0.36",
23
23
  "@ai-sdk/provider": "2.0.1",
24
- "@ai-sdk/provider-utils": "3.0.22"
24
+ "@ai-sdk/provider-utils": "3.0.23"
25
25
  },
26
26
  "devDependencies": {
27
27
  "@types/node": "20.17.24",
@@ -58,9 +58,7 @@
58
58
  "build": "pnpm clean && tsup --tsconfig tsconfig.build.json",
59
59
  "build:watch": "pnpm clean && tsup --watch",
60
60
  "clean": "del-cli dist *.tsbuildinfo",
61
- "lint": "eslint \"./**/*.ts*\"",
62
61
  "type-check": "tsc --build",
63
- "prettier-check": "prettier --check \"./**/*.ts*\"",
64
62
  "test": "pnpm test:node && pnpm test:edge",
65
63
  "test:update": "pnpm test:node -u",
66
64
  "test:watch": "vitest --config vitest.node.config.js",