removedInput schema / $defs
Removed value: -{
- "MusicPrompt": {
- "additionalProperties": true,
- "properties": {
- "negative_global_styles": {
- "items": {
- "type": "string"
- },
- "title": "Negative Global Styles",
- "type": "array"
- },
- "positive_global_styles": {
- "items": {
- "type": "string"
- },
- "title": "Positive Global Styles",
- "type": "array"
- },
- "sections": {
- "items": {
- "$ref": "#/$defs/SongSection"
- },
- "title": "Sections",
- "type": "array"
- }
- },
- "required": [
- "positive_global_styles",
- "negative_global_styles",
- "sections"
- ],
- "title": "MusicPrompt",
- "type": "object"
- },
- "SongSection": {
- "additionalProperties": true,
- "properties": {
- "duration_ms": {
- "title": "Duration Ms",
- "type": "integer"
- },
- "lines": {
- "items": {
- "type": "string"
- },
- "title": "Lines",
- "type": "array"
- },
- "negative_local_styles": {
- "items": {
- "type": "string"
- },
- "title": "Negative Local Styles",
- "type": "array"
- },
- "positive_local_styles": {
- "items": {
- "type": "string"
- },
- "title": "Positive Local Styles",
- "type": "array"
- },
- "section_name": {
- "title": "Section Name",
- "type": "string"
- }
- },
- "required": [
- "section_name",
- "positive_local_styles",
- "negative_local_styles",
- "duration_ms",
- "lines"
- ],
- "title": "SongSection",
- "type": "object"
- }
-}
addedInput schema / properties / model_id
Added value: +{
+ "default": "music_v2",
+ "enum": [
+ "music_v1",
+ "music_v2"
+ ],
+ "title": "Model Id",
+ "type": "string"
+}
changedInput schema / properties / source_composition_plan / anyOf
Previous value: -[
- {
- "$ref": "#/$defs/MusicPrompt"
- },
- {
- "type": "null"
- }
-]New value: +[
+ {
+ "additionalProperties": true,
+ "type": "object"
+ },
+ {
+ "type": "null"
+ }
+]
addedInput schema / properties / source_composition_plan / title
Added value: +"Source Composition Plan"
changedOutput schema / (root)
Previous value: -{
- "$defs": {
- "SongSection": {
- "additionalProperties": true,
- "properties": {
- "duration_ms": {
- "title": "Duration Ms",
- "type": "integer"
- },
- "lines": {
- "items": {
- "type": "string"
- },
- "title": "Lines",
- "type": "array"
- },
- "negative_local_styles": {
- "items": {
- "type": "string"
- },
- "title": "Negative Local Styles",
- "type": "array"
- },
- "positive_local_styles": {
- "items": {
- "type": "string"
- },
- "title": "Positive Local Styles",
- "type": "array"
- },
- "section_name": {
- "title": "Section Name",
- "type": "string"
- }
- },
- "required": [
- "section_name",
- "positive_local_styles",
- "negative_local_styles",
- "duration_ms",
- "lines"
- ],
- "title": "SongSection",
- "type": "object"
- }
- },
- "additionalProperties": true,
- "properties": {
- "negative_global_styles": {
- "items": {
- "type": "string"
- },
- "title": "Negative Global Styles",
- "type": "array"
- },
- "positive_global_styles": {
- "items": {
- "type": "string"
- },
- "title": "Positive Global Styles",
- "type": "array"
- },
- "sections": {
- "items": {
- "$ref": "#/$defs/SongSection"
- },
- "title": "Sections",
- "type": "array"
- }
- },
- "required": [
- "positive_global_styles",
- "negative_global_styles",
- "sections"
- ],
- "title": "MusicPrompt",
- "type": "object"
-}New value: +null