@picsart/ai-sdk 5.28.5 → 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 +19 -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
@@ -4855,6 +4855,7 @@ var { MODELS: MODELS16 } = defineModels("reve", [
4855
4855
  workflow: "reve/text-to-image",
4856
4856
  editWorkflow: "reve/edit",
4857
4857
  buildPayload: buildRevePayload,
4858
+ release: "preview",
4858
4859
  estimatedTime: 20,
4859
4860
  mode: "image",
4860
4861
  inputType: "t2i",
@@ -8265,6 +8266,22 @@ var { MODELS: MODELS32 } = defineModels("google", [
8265
8266
  ...params.prompt({ placeholder: "Generate voiceover, music and sound effects" }),
8266
8267
  ...params.imageInput(10, "Mood Images")
8267
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
+ }
8268
8285
  }
8269
8286
  ]);
8270
8287
 
@@ -11423,6 +11440,7 @@ var LumaUni1 = "luma-uni-1";
11423
11440
  var LumaUni1Max = "luma-uni-1-max";
11424
11441
  var Lyria3Clip = "lyria-3-clip";
11425
11442
  var Lyria3Pro = "lyria-3-pro";
11443
+ var Lyria35 = "lyria-3.5";
11426
11444
  var Minimax02Hd = "minimax-02-hd";
11427
11445
  var MinimaxH3 = "minimax-h3";
11428
11446
  var MinimaxH3Max = "minimax-h3-max";
@@ -11646,6 +11664,7 @@ var Models = {
11646
11664
  LumaUni1Max,
11647
11665
  Lyria3Clip,
11648
11666
  Lyria3Pro,
11667
+ Lyria35,
11649
11668
  Minimax02Hd,
11650
11669
  MinimaxH3,
11651
11670
  MinimaxH3Max,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@picsart/ai-sdk",
3
- "version": "5.28.5",
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",