@ai-sdk/luma 1.0.24 → 1.0.26
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 +15 -0
- package/README.md +2 -0
- package/dist/index.js +1 -1
- package/dist/index.mjs +1 -1
- package/package.json +6 -5
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,20 @@
|
|
|
1
1
|
# @ai-sdk/luma
|
|
2
2
|
|
|
3
|
+
## 1.0.26
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- 0a00b9b: trigger release for all packages after provenance setup
|
|
8
|
+
- Updated dependencies [0a00b9b]
|
|
9
|
+
- @ai-sdk/provider@2.0.2
|
|
10
|
+
- @ai-sdk/provider-utils@3.0.24
|
|
11
|
+
|
|
12
|
+
## 1.0.25
|
|
13
|
+
|
|
14
|
+
### Patch Changes
|
|
15
|
+
|
|
16
|
+
- 5543cd1: Add AI Gateway hint to provider READMEs
|
|
17
|
+
|
|
3
18
|
## 1.0.24
|
|
4
19
|
|
|
5
20
|
### Patch Changes
|
package/README.md
CHANGED
|
@@ -14,6 +14,8 @@ Luma Photon and Photon Flash are groundbreaking image generation models that del
|
|
|
14
14
|
|
|
15
15
|
For more detailed information about the Luma models and their capabilities, please visit [Luma AI](https://lumalabs.ai/).
|
|
16
16
|
|
|
17
|
+
> **Deploying to Vercel?** With Vercel's AI Gateway you can access Luma (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).
|
|
18
|
+
|
|
17
19
|
## Setup
|
|
18
20
|
|
|
19
21
|
The Luma provider is available in the `@ai-sdk/luma` module. You can install it with:
|
package/dist/index.js
CHANGED
|
@@ -196,7 +196,7 @@ var lumaErrorSchema = import_v4.z.object({
|
|
|
196
196
|
});
|
|
197
197
|
|
|
198
198
|
// src/version.ts
|
|
199
|
-
var VERSION = true ? "1.0.
|
|
199
|
+
var VERSION = true ? "1.0.26" : "0.0.0-test";
|
|
200
200
|
|
|
201
201
|
// src/luma-provider.ts
|
|
202
202
|
var defaultBaseURL = "https://api.lumalabs.ai";
|
package/dist/index.mjs
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ai-sdk/luma",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.26",
|
|
4
4
|
"license": "Apache-2.0",
|
|
5
5
|
"sideEffects": false,
|
|
6
6
|
"main": "./dist/index.js",
|
|
@@ -19,15 +19,15 @@
|
|
|
19
19
|
}
|
|
20
20
|
},
|
|
21
21
|
"dependencies": {
|
|
22
|
-
"@ai-sdk/provider
|
|
23
|
-
"@ai-sdk/provider": "
|
|
22
|
+
"@ai-sdk/provider": "2.0.2",
|
|
23
|
+
"@ai-sdk/provider-utils": "3.0.24"
|
|
24
24
|
},
|
|
25
25
|
"devDependencies": {
|
|
26
26
|
"@types/node": "20.17.24",
|
|
27
27
|
"tsup": "^8",
|
|
28
28
|
"typescript": "5.8.3",
|
|
29
29
|
"zod": "3.25.76",
|
|
30
|
-
"@ai-sdk/test-server": "0.0.
|
|
30
|
+
"@ai-sdk/test-server": "0.0.3",
|
|
31
31
|
"@vercel/ai-tsconfig": "0.0.0"
|
|
32
32
|
},
|
|
33
33
|
"peerDependencies": {
|
|
@@ -42,7 +42,8 @@
|
|
|
42
42
|
"homepage": "https://ai-sdk.dev/docs",
|
|
43
43
|
"repository": {
|
|
44
44
|
"type": "git",
|
|
45
|
-
"url": "
|
|
45
|
+
"url": "https://github.com/vercel/ai",
|
|
46
|
+
"directory": "packages/luma"
|
|
46
47
|
},
|
|
47
48
|
"bugs": {
|
|
48
49
|
"url": "https://github.com/vercel/ai/issues"
|