@ai-sdk/gateway 3.0.27 → 3.0.28
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 +6 -0
- package/README.md +8 -0
- package/dist/index.js +1 -1
- package/dist/index.mjs +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
package/README.md
CHANGED
|
@@ -10,6 +10,14 @@ The Gateway provider is available in the `@ai-sdk/gateway` module. You can insta
|
|
|
10
10
|
npm i @ai-sdk/gateway
|
|
11
11
|
```
|
|
12
12
|
|
|
13
|
+
## Skill for Coding Agents
|
|
14
|
+
|
|
15
|
+
If you use coding agents such as Claude Code or Cursor, we highly recommend adding the AI SDK skill to your repository:
|
|
16
|
+
|
|
17
|
+
```shell
|
|
18
|
+
npx skills add vercel/ai
|
|
19
|
+
```
|
|
20
|
+
|
|
13
21
|
## Provider Instance
|
|
14
22
|
|
|
15
23
|
You can import the default provider instance `gateway` from `@ai-sdk/gateway`:
|
package/dist/index.js
CHANGED
|
@@ -1041,7 +1041,7 @@ async function getVercelRequestId() {
|
|
|
1041
1041
|
var import_provider_utils11 = require("@ai-sdk/provider-utils");
|
|
1042
1042
|
|
|
1043
1043
|
// src/version.ts
|
|
1044
|
-
var VERSION = true ? "3.0.
|
|
1044
|
+
var VERSION = true ? "3.0.28" : "0.0.0-test";
|
|
1045
1045
|
|
|
1046
1046
|
// src/gateway-provider.ts
|
|
1047
1047
|
var AI_GATEWAY_PROTOCOL_VERSION = "0.0.1";
|
package/dist/index.mjs
CHANGED
|
@@ -1054,7 +1054,7 @@ async function getVercelRequestId() {
|
|
|
1054
1054
|
import { withUserAgentSuffix } from "@ai-sdk/provider-utils";
|
|
1055
1055
|
|
|
1056
1056
|
// src/version.ts
|
|
1057
|
-
var VERSION = true ? "3.0.
|
|
1057
|
+
var VERSION = true ? "3.0.28" : "0.0.0-test";
|
|
1058
1058
|
|
|
1059
1059
|
// src/gateway-provider.ts
|
|
1060
1060
|
var AI_GATEWAY_PROTOCOL_VERSION = "0.0.1";
|