File tree 2 files changed +24
-2
lines changed
2 files changed +24
-2
lines changed Original file line number Diff line number Diff line change 1
1
configured_endpoints : 4
2
- openapi_spec_url : https://storage.googleapis.com/stainless-sdk-openapi-specs/runwayml%2Frunwayml-50d72f887af30d0d676f216865284f2bc36899cc197f81774445e00bc0228c02 .yml
3
- openapi_spec_hash : c692214e7e704169e0e82d5b367e8f8c
2
+ openapi_spec_url : https://storage.googleapis.com/stainless-sdk-openapi-specs/runwayml%2Frunwayml-34491bc11ee43039ff5f1828a4caf68847a7346ab283bbefe88d1690951dd4d6 .yml
3
+ openapi_spec_hash : 4fc80b2e354cf70ebc85e0ef4e7e6f51
4
4
config_hash : 77ce816c37172a537f337abfaf2d65a9
Original file line number Diff line number Diff line change @@ -36,13 +36,35 @@ export interface ImageToVideoCreateParams {
36
36
*/
37
37
promptImage : string | Array < ImageToVideoCreateParams . PromptImage > ;
38
38
39
+ /**
40
+ * The resolution of the output video.
41
+ *
42
+ * `gen4_turbo` supports the following values:
43
+ *
44
+ * - `1280:720`
45
+ * - `720:1280`
46
+ * - `1104:832`
47
+ * - `832:1104`
48
+ * - `960:960`
49
+ * - `1584:672`
50
+ *
51
+ * `gen3a_turbo` supports the following values:
52
+ *
53
+ * - `1280:768`
54
+ * - `768:1280`
55
+ */
39
56
ratio : '1280:720' | '720:1280' | '1104:832' | '832:1104' | '960:960' | '1584:672' | '1280:768' | '768:1280' ;
40
57
41
58
/**
42
59
* The number of seconds of duration for the output video.
43
60
*/
44
61
duration ?: 5 | 10 ;
45
62
63
+ /**
64
+ * A non-empty string up to 1000 UTF-16 code points in length (that is,
65
+ * `promptText.length === 1000` in JavaScript). This should describe in detail what
66
+ * should appear in the output.
67
+ */
46
68
promptText ?: string ;
47
69
48
70
/**
You can’t perform that action at this time.
0 commit comments