runapi-seedance 0.2.10 → 0.2.11
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.
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 04d3d516dae63417177652870477df7b0cb1c7209f1b2696f795282a376c108a
|
|
4
|
+
data.tar.gz: 769366d179ba0b6c125cffa5e91cdb666ec9c7693a1b1356c08a2464d8a5253d
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 764211de1cefb2d7c45aae47468961a13db9fd947ba36f304bd24007360097156ee2b236e1a18a18152b0d5b8a2b38969cc5a0e39c98537c775f53ada959ed33
|
|
7
|
+
data.tar.gz: 8da51b48a1fd181fd142f1f38b7f314a45cfaf6b0b9c1a9f0e625bfbb2c20f5c3bfe68df79df9586b3f2523bf674cdb0f94a13833ba29dc502722a51a3bb2315
|
|
@@ -19,6 +19,11 @@ module RunApi
|
|
|
19
19
|
"output_resolution" => {
|
|
20
20
|
"enum" => ["480p", "720p", "1080p"]
|
|
21
21
|
},
|
|
22
|
+
"seed" => {
|
|
23
|
+
"min" => -1,
|
|
24
|
+
"max" => 2147483647,
|
|
25
|
+
"type" => "integer"
|
|
26
|
+
},
|
|
22
27
|
"source_image_urls" => {
|
|
23
28
|
"max_items" => 2
|
|
24
29
|
}
|
|
@@ -132,6 +137,11 @@ module RunApi
|
|
|
132
137
|
},
|
|
133
138
|
"output_resolution" => {
|
|
134
139
|
"enum" => ["720p", "1080p"]
|
|
140
|
+
},
|
|
141
|
+
"seed" => {
|
|
142
|
+
"min" => -1,
|
|
143
|
+
"max" => 2147483647,
|
|
144
|
+
"type" => "integer"
|
|
135
145
|
}
|
|
136
146
|
}
|
|
137
147
|
}
|
|
@@ -84,7 +84,7 @@ module RunApi
|
|
|
84
84
|
unsupported = %i[source_image_urls reference_image_urls reference_video_urls reference_audio_urls web_search generate_audio]
|
|
85
85
|
reject_unsupported!(params, unsupported, model)
|
|
86
86
|
|
|
87
|
-
reject_unsupported!(params, %i[lock_camera
|
|
87
|
+
reject_unsupported!(params, %i[lock_camera], model) if model == "seedance-v1-pro-fast"
|
|
88
88
|
|
|
89
89
|
seed = param(params, :seed)
|
|
90
90
|
if seed
|