removedInput schema / additionalProperties
Removed value: -false
addedInput schema / properties / aspect_ratio / anyOf
Added value: +[
+ {
+ "const": "16:9",
+ "type": "string"
+ },
+ {
+ "const": "9:16",
+ "type": "string"
+ }
+]
removedInput schema / properties / aspect_ratio / enum
Removed value: -[
- "16:9",
- "9:16"
-]
removedInput schema / properties / aspect_ratio / type
Removed value: -"string"
addedInput schema / properties / audio_ids / description
Added value: +"Audio preset IDs returned by create-audio."
addedInput schema / properties / character_ids / description
Added value: +"Character IDs returned by create-character; dual-image characters consume two of the shared seven reference units."
addedInput schema / properties / duration_seconds / description
Added value: +"Output duration in seconds."
addedInput schema / properties / first_frame_image_url
Added value: +{
+ "description": "Public first-frame image URL; mutually exclusive with reference images, audio IDs, video clips, and character IDs.",
+ "pattern": "^https?:\\/\\/",
+ "type": "string"
+}
addedInput schema / properties / last_frame_image_url
Added value: +{
+ "description": "Public last-frame image URL; requires first_frame_image_url.",
+ "pattern": "^https?:\\/\\/",
+ "type": "string"
+}
changedInput schema / properties / model / enum
Previous value: -[
- "gemini-omni-flash-preview",
- "gemini-omni-text-to-video"
-]New value: +[
+ "gemini-omni-flash-1-1",
+ "gemini-omni-flash-preview",
+ "gemini-omni-text-to-video"
+]
addedInput schema / properties / output_resolution / anyOf
Added value: +[
+ {
+ "const": "360p",
+ "type": "string"
+ },
+ {
+ "const": "720p",
+ "type": "string"
+ },
+ {
+ "const": "1080p",
+ "type": "string"
+ },
+ {
+ "const": "4k",
+ "type": "string"
+ }
+]
removedInput schema / properties / output_resolution / enum
Removed value: -[
- "720p",
- "1080p",
- "4k"
-]
removedInput schema / properties / output_resolution / type
Removed value: -"string"
addedInput schema / properties / poll_interval_ms / maximum
Added value: +9007199254740991
addedInput schema / properties / reference_image_urls / description
Added value: +"Public reference image URLs; images, video clips, and characters share a seven-unit reference limit."
addedInput schema / properties / seed / description
Added value: +"Deterministic generation seed."
addedInput schema / properties / seed / maximum
Added value: +2147483647
addedInput schema / properties / seed / minimum
Added value: +0
addedInput schema / properties / timeout_ms / maximum
Added value: +9007199254740991
addedInput schema / properties / video_list / description
Added value: +"Source video clips; each clip consumes two reference units."
addedInput schema / properties / video_list / items / properties
Added value: +{
+ "ends": {
+ "description": "Clip end time in seconds; must be greater than start and no more than 10 seconds after start.",
+ "minimum": 0,
+ "type": "number"
+ },
+ "start": {
+ "description": "Clip start time in seconds.",
+ "minimum": 0,
+ "type": "number"
+ },
+ "url": {
+ "description": "Public source video URL.",
+ "type": "string"
+ }
+}
addedInput schema / properties / video_list / items / required
Added value: +[
+ "url",
+ "ends",
+ "start"
+]
addedInput schema / properties / video_list / items / type
Added value: +"object"