@picsart/ai-sdk 5.28.6 → 5.28.7

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 (3) hide show
  1. package/index.d.ts +5 -0
  2. package/index.js +18 -0
  3. package/package.json +1 -1
package/index.d.ts CHANGED
@@ -818,6 +818,10 @@ type ModelInputById = {
818
818
  prompt: string;
819
819
  imageUrls?: string[];
820
820
  };
821
+ "lyria-3.5": {
822
+ prompt: string;
823
+ imageUrls?: string[];
824
+ };
821
825
  "minimax-02-hd": {
822
826
  language?: string;
823
827
  accent?: string;
@@ -2729,6 +2733,7 @@ declare const Models: {
2729
2733
  readonly LumaUni1Max: "luma-uni-1-max";
2730
2734
  readonly Lyria3Clip: "lyria-3-clip";
2731
2735
  readonly Lyria3Pro: "lyria-3-pro";
2736
+ readonly Lyria35: "lyria-3.5";
2732
2737
  readonly Minimax02Hd: "minimax-02-hd";
2733
2738
  readonly MinimaxH3: "minimax-h3";
2734
2739
  readonly MinimaxH3Max: "minimax-h3-max";
package/index.js CHANGED
@@ -8266,6 +8266,22 @@ var { MODELS: MODELS32 } = defineModels("google", [
8266
8266
  ...params.prompt({ placeholder: "Generate voiceover, music and sound effects" }),
8267
8267
  ...params.imageInput(10, "Mood Images")
8268
8268
  }
8269
+ },
8270
+ {
8271
+ id: "lyria-3.5",
8272
+ addedAt: "2026-09-08",
8273
+ name: "Lyria 3.5",
8274
+ workflow: "lyria/v2/music",
8275
+ buildPayload: buildLyria3Payload("lyria-3.5"),
8276
+ estimatedTime: 90,
8277
+ mode: "audio",
8278
+ inputType: "music",
8279
+ description: "Full-length song generation with vocals from text and image prompts, powered by Google Lyria 3.5.",
8280
+ features: [feat("Image Input", "input"), feat("Vocal & Instrumental", "characteristic"), feat("Full-length songs", "duration")],
8281
+ paramConfig: {
8282
+ ...params.prompt({ placeholder: "Generate voiceover, music and sound effects" }),
8283
+ ...params.imageInput(10, "Mood Images")
8284
+ }
8269
8285
  }
8270
8286
  ]);
8271
8287
 
@@ -11424,6 +11440,7 @@ var LumaUni1 = "luma-uni-1";
11424
11440
  var LumaUni1Max = "luma-uni-1-max";
11425
11441
  var Lyria3Clip = "lyria-3-clip";
11426
11442
  var Lyria3Pro = "lyria-3-pro";
11443
+ var Lyria35 = "lyria-3.5";
11427
11444
  var Minimax02Hd = "minimax-02-hd";
11428
11445
  var MinimaxH3 = "minimax-h3";
11429
11446
  var MinimaxH3Max = "minimax-h3-max";
@@ -11647,6 +11664,7 @@ var Models = {
11647
11664
  LumaUni1Max,
11648
11665
  Lyria3Clip,
11649
11666
  Lyria3Pro,
11667
+ Lyria35,
11650
11668
  Minimax02Hd,
11651
11669
  MinimaxH3,
11652
11670
  MinimaxH3Max,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@picsart/ai-sdk",
3
- "version": "5.28.6",
3
+ "version": "5.28.7",
4
4
  "type": "module",
5
5
  "description": "Type-safe SDK for 100+ AI models — image, video, audio, and text generation with Picsart",
6
6
  "license": "MIT",