runwayml 3.3.0__py3-none-any.whl → 3.4.0__py3-none-any.whl
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.
- runwayml/_client.py +9 -1
- runwayml/_version.py +1 -1
- runwayml/resources/__init__.py +14 -0
- runwayml/resources/video_upscale.py +195 -0
- runwayml/types/__init__.py +2 -0
- runwayml/types/organization_retrieve_response.py +21 -0
- runwayml/types/video_upscale_create_params.py +22 -0
- runwayml/types/video_upscale_create_response.py +10 -0
- {runwayml-3.3.0.dist-info → runwayml-3.4.0.dist-info}/METADATA +1 -1
- {runwayml-3.3.0.dist-info → runwayml-3.4.0.dist-info}/RECORD +12 -9
- {runwayml-3.3.0.dist-info → runwayml-3.4.0.dist-info}/WHEEL +0 -0
- {runwayml-3.3.0.dist-info → runwayml-3.4.0.dist-info}/licenses/LICENSE +0 -0
runwayml/_client.py
CHANGED
@@ -21,7 +21,7 @@ from ._types import (
|
|
21
21
|
)
|
22
22
|
from ._utils import is_given, get_async_library
|
23
23
|
from ._version import __version__
|
24
|
-
from .resources import tasks, organization, text_to_image, image_to_video
|
24
|
+
from .resources import tasks, organization, text_to_image, video_upscale, image_to_video
|
25
25
|
from ._streaming import Stream as Stream, AsyncStream as AsyncStream
|
26
26
|
from ._exceptions import RunwayMLError, APIStatusError
|
27
27
|
from ._base_client import (
|
@@ -46,6 +46,7 @@ class RunwayML(SyncAPIClient):
|
|
46
46
|
tasks: tasks.TasksResource
|
47
47
|
image_to_video: image_to_video.ImageToVideoResource
|
48
48
|
text_to_image: text_to_image.TextToImageResource
|
49
|
+
video_upscale: video_upscale.VideoUpscaleResource
|
49
50
|
organization: organization.OrganizationResource
|
50
51
|
with_raw_response: RunwayMLWithRawResponse
|
51
52
|
with_streaming_response: RunwayMLWithStreamedResponse
|
@@ -113,6 +114,7 @@ class RunwayML(SyncAPIClient):
|
|
113
114
|
self.tasks = tasks.TasksResource(self)
|
114
115
|
self.image_to_video = image_to_video.ImageToVideoResource(self)
|
115
116
|
self.text_to_image = text_to_image.TextToImageResource(self)
|
117
|
+
self.video_upscale = video_upscale.VideoUpscaleResource(self)
|
116
118
|
self.organization = organization.OrganizationResource(self)
|
117
119
|
self.with_raw_response = RunwayMLWithRawResponse(self)
|
118
120
|
self.with_streaming_response = RunwayMLWithStreamedResponse(self)
|
@@ -229,6 +231,7 @@ class AsyncRunwayML(AsyncAPIClient):
|
|
229
231
|
tasks: tasks.AsyncTasksResource
|
230
232
|
image_to_video: image_to_video.AsyncImageToVideoResource
|
231
233
|
text_to_image: text_to_image.AsyncTextToImageResource
|
234
|
+
video_upscale: video_upscale.AsyncVideoUpscaleResource
|
232
235
|
organization: organization.AsyncOrganizationResource
|
233
236
|
with_raw_response: AsyncRunwayMLWithRawResponse
|
234
237
|
with_streaming_response: AsyncRunwayMLWithStreamedResponse
|
@@ -296,6 +299,7 @@ class AsyncRunwayML(AsyncAPIClient):
|
|
296
299
|
self.tasks = tasks.AsyncTasksResource(self)
|
297
300
|
self.image_to_video = image_to_video.AsyncImageToVideoResource(self)
|
298
301
|
self.text_to_image = text_to_image.AsyncTextToImageResource(self)
|
302
|
+
self.video_upscale = video_upscale.AsyncVideoUpscaleResource(self)
|
299
303
|
self.organization = organization.AsyncOrganizationResource(self)
|
300
304
|
self.with_raw_response = AsyncRunwayMLWithRawResponse(self)
|
301
305
|
self.with_streaming_response = AsyncRunwayMLWithStreamedResponse(self)
|
@@ -413,6 +417,7 @@ class RunwayMLWithRawResponse:
|
|
413
417
|
self.tasks = tasks.TasksResourceWithRawResponse(client.tasks)
|
414
418
|
self.image_to_video = image_to_video.ImageToVideoResourceWithRawResponse(client.image_to_video)
|
415
419
|
self.text_to_image = text_to_image.TextToImageResourceWithRawResponse(client.text_to_image)
|
420
|
+
self.video_upscale = video_upscale.VideoUpscaleResourceWithRawResponse(client.video_upscale)
|
416
421
|
self.organization = organization.OrganizationResourceWithRawResponse(client.organization)
|
417
422
|
|
418
423
|
|
@@ -421,6 +426,7 @@ class AsyncRunwayMLWithRawResponse:
|
|
421
426
|
self.tasks = tasks.AsyncTasksResourceWithRawResponse(client.tasks)
|
422
427
|
self.image_to_video = image_to_video.AsyncImageToVideoResourceWithRawResponse(client.image_to_video)
|
423
428
|
self.text_to_image = text_to_image.AsyncTextToImageResourceWithRawResponse(client.text_to_image)
|
429
|
+
self.video_upscale = video_upscale.AsyncVideoUpscaleResourceWithRawResponse(client.video_upscale)
|
424
430
|
self.organization = organization.AsyncOrganizationResourceWithRawResponse(client.organization)
|
425
431
|
|
426
432
|
|
@@ -429,6 +435,7 @@ class RunwayMLWithStreamedResponse:
|
|
429
435
|
self.tasks = tasks.TasksResourceWithStreamingResponse(client.tasks)
|
430
436
|
self.image_to_video = image_to_video.ImageToVideoResourceWithStreamingResponse(client.image_to_video)
|
431
437
|
self.text_to_image = text_to_image.TextToImageResourceWithStreamingResponse(client.text_to_image)
|
438
|
+
self.video_upscale = video_upscale.VideoUpscaleResourceWithStreamingResponse(client.video_upscale)
|
432
439
|
self.organization = organization.OrganizationResourceWithStreamingResponse(client.organization)
|
433
440
|
|
434
441
|
|
@@ -437,6 +444,7 @@ class AsyncRunwayMLWithStreamedResponse:
|
|
437
444
|
self.tasks = tasks.AsyncTasksResourceWithStreamingResponse(client.tasks)
|
438
445
|
self.image_to_video = image_to_video.AsyncImageToVideoResourceWithStreamingResponse(client.image_to_video)
|
439
446
|
self.text_to_image = text_to_image.AsyncTextToImageResourceWithStreamingResponse(client.text_to_image)
|
447
|
+
self.video_upscale = video_upscale.AsyncVideoUpscaleResourceWithStreamingResponse(client.video_upscale)
|
440
448
|
self.organization = organization.AsyncOrganizationResourceWithStreamingResponse(client.organization)
|
441
449
|
|
442
450
|
|
runwayml/_version.py
CHANGED
runwayml/resources/__init__.py
CHANGED
@@ -24,6 +24,14 @@ from .text_to_image import (
|
|
24
24
|
TextToImageResourceWithStreamingResponse,
|
25
25
|
AsyncTextToImageResourceWithStreamingResponse,
|
26
26
|
)
|
27
|
+
from .video_upscale import (
|
28
|
+
VideoUpscaleResource,
|
29
|
+
AsyncVideoUpscaleResource,
|
30
|
+
VideoUpscaleResourceWithRawResponse,
|
31
|
+
AsyncVideoUpscaleResourceWithRawResponse,
|
32
|
+
VideoUpscaleResourceWithStreamingResponse,
|
33
|
+
AsyncVideoUpscaleResourceWithStreamingResponse,
|
34
|
+
)
|
27
35
|
from .image_to_video import (
|
28
36
|
ImageToVideoResource,
|
29
37
|
AsyncImageToVideoResource,
|
@@ -52,6 +60,12 @@ __all__ = [
|
|
52
60
|
"AsyncTextToImageResourceWithRawResponse",
|
53
61
|
"TextToImageResourceWithStreamingResponse",
|
54
62
|
"AsyncTextToImageResourceWithStreamingResponse",
|
63
|
+
"VideoUpscaleResource",
|
64
|
+
"AsyncVideoUpscaleResource",
|
65
|
+
"VideoUpscaleResourceWithRawResponse",
|
66
|
+
"AsyncVideoUpscaleResourceWithRawResponse",
|
67
|
+
"VideoUpscaleResourceWithStreamingResponse",
|
68
|
+
"AsyncVideoUpscaleResourceWithStreamingResponse",
|
55
69
|
"OrganizationResource",
|
56
70
|
"AsyncOrganizationResource",
|
57
71
|
"OrganizationResourceWithRawResponse",
|
@@ -0,0 +1,195 @@
|
|
1
|
+
# File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
|
2
|
+
|
3
|
+
from __future__ import annotations
|
4
|
+
|
5
|
+
from typing_extensions import Literal
|
6
|
+
|
7
|
+
import httpx
|
8
|
+
|
9
|
+
from ..types import video_upscale_create_params
|
10
|
+
from .._types import NOT_GIVEN, Body, Query, Headers, NotGiven
|
11
|
+
from .._utils import maybe_transform, async_maybe_transform
|
12
|
+
from .._compat import cached_property
|
13
|
+
from .._resource import SyncAPIResource, AsyncAPIResource
|
14
|
+
from .._response import (
|
15
|
+
to_raw_response_wrapper,
|
16
|
+
to_streamed_response_wrapper,
|
17
|
+
async_to_raw_response_wrapper,
|
18
|
+
async_to_streamed_response_wrapper,
|
19
|
+
)
|
20
|
+
from .._base_client import make_request_options
|
21
|
+
from ..types.video_upscale_create_response import VideoUpscaleCreateResponse
|
22
|
+
|
23
|
+
__all__ = ["VideoUpscaleResource", "AsyncVideoUpscaleResource"]
|
24
|
+
|
25
|
+
|
26
|
+
class VideoUpscaleResource(SyncAPIResource):
|
27
|
+
@cached_property
|
28
|
+
def with_raw_response(self) -> VideoUpscaleResourceWithRawResponse:
|
29
|
+
"""
|
30
|
+
This property can be used as a prefix for any HTTP method call to return
|
31
|
+
the raw response object instead of the parsed content.
|
32
|
+
|
33
|
+
For more information, see https://www.github.com/runwayml/sdk-python#accessing-raw-response-data-eg-headers
|
34
|
+
"""
|
35
|
+
return VideoUpscaleResourceWithRawResponse(self)
|
36
|
+
|
37
|
+
@cached_property
|
38
|
+
def with_streaming_response(self) -> VideoUpscaleResourceWithStreamingResponse:
|
39
|
+
"""
|
40
|
+
An alternative to `.with_raw_response` that doesn't eagerly read the response body.
|
41
|
+
|
42
|
+
For more information, see https://www.github.com/runwayml/sdk-python#with_streaming_response
|
43
|
+
"""
|
44
|
+
return VideoUpscaleResourceWithStreamingResponse(self)
|
45
|
+
|
46
|
+
def create(
|
47
|
+
self,
|
48
|
+
*,
|
49
|
+
model: Literal["upscale_v1"],
|
50
|
+
video_uri: str,
|
51
|
+
# Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
|
52
|
+
# The extra values given here take precedence over values defined on the client or passed to this method.
|
53
|
+
extra_headers: Headers | None = None,
|
54
|
+
extra_query: Query | None = None,
|
55
|
+
extra_body: Body | None = None,
|
56
|
+
timeout: float | httpx.Timeout | None | NotGiven = NOT_GIVEN,
|
57
|
+
) -> VideoUpscaleCreateResponse:
|
58
|
+
"""This endpoint will start a new task to upscale a video.
|
59
|
+
|
60
|
+
Videos will be upscaled
|
61
|
+
by a factor of 4X, capped at a maximum of 4096px along each side.
|
62
|
+
|
63
|
+
Args:
|
64
|
+
model: The model variant to use.
|
65
|
+
|
66
|
+
video_uri: A HTTPS URL pointing to a video or a data URI containing a video. The video must
|
67
|
+
be less than 4096px on each side. The video duration may not exceed 40 seconds.
|
68
|
+
See [our docs](/assets/inputs#videos) on video inputs for more information.
|
69
|
+
|
70
|
+
extra_headers: Send extra headers
|
71
|
+
|
72
|
+
extra_query: Add additional query parameters to the request
|
73
|
+
|
74
|
+
extra_body: Add additional JSON properties to the request
|
75
|
+
|
76
|
+
timeout: Override the client-level default timeout for this request, in seconds
|
77
|
+
"""
|
78
|
+
return self._post(
|
79
|
+
"/v1/video_upscale",
|
80
|
+
body=maybe_transform(
|
81
|
+
{
|
82
|
+
"model": model,
|
83
|
+
"video_uri": video_uri,
|
84
|
+
},
|
85
|
+
video_upscale_create_params.VideoUpscaleCreateParams,
|
86
|
+
),
|
87
|
+
options=make_request_options(
|
88
|
+
extra_headers=extra_headers, extra_query=extra_query, extra_body=extra_body, timeout=timeout
|
89
|
+
),
|
90
|
+
cast_to=VideoUpscaleCreateResponse,
|
91
|
+
)
|
92
|
+
|
93
|
+
|
94
|
+
class AsyncVideoUpscaleResource(AsyncAPIResource):
|
95
|
+
@cached_property
|
96
|
+
def with_raw_response(self) -> AsyncVideoUpscaleResourceWithRawResponse:
|
97
|
+
"""
|
98
|
+
This property can be used as a prefix for any HTTP method call to return
|
99
|
+
the raw response object instead of the parsed content.
|
100
|
+
|
101
|
+
For more information, see https://www.github.com/runwayml/sdk-python#accessing-raw-response-data-eg-headers
|
102
|
+
"""
|
103
|
+
return AsyncVideoUpscaleResourceWithRawResponse(self)
|
104
|
+
|
105
|
+
@cached_property
|
106
|
+
def with_streaming_response(self) -> AsyncVideoUpscaleResourceWithStreamingResponse:
|
107
|
+
"""
|
108
|
+
An alternative to `.with_raw_response` that doesn't eagerly read the response body.
|
109
|
+
|
110
|
+
For more information, see https://www.github.com/runwayml/sdk-python#with_streaming_response
|
111
|
+
"""
|
112
|
+
return AsyncVideoUpscaleResourceWithStreamingResponse(self)
|
113
|
+
|
114
|
+
async def create(
|
115
|
+
self,
|
116
|
+
*,
|
117
|
+
model: Literal["upscale_v1"],
|
118
|
+
video_uri: str,
|
119
|
+
# Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
|
120
|
+
# The extra values given here take precedence over values defined on the client or passed to this method.
|
121
|
+
extra_headers: Headers | None = None,
|
122
|
+
extra_query: Query | None = None,
|
123
|
+
extra_body: Body | None = None,
|
124
|
+
timeout: float | httpx.Timeout | None | NotGiven = NOT_GIVEN,
|
125
|
+
) -> VideoUpscaleCreateResponse:
|
126
|
+
"""This endpoint will start a new task to upscale a video.
|
127
|
+
|
128
|
+
Videos will be upscaled
|
129
|
+
by a factor of 4X, capped at a maximum of 4096px along each side.
|
130
|
+
|
131
|
+
Args:
|
132
|
+
model: The model variant to use.
|
133
|
+
|
134
|
+
video_uri: A HTTPS URL pointing to a video or a data URI containing a video. The video must
|
135
|
+
be less than 4096px on each side. The video duration may not exceed 40 seconds.
|
136
|
+
See [our docs](/assets/inputs#videos) on video inputs for more information.
|
137
|
+
|
138
|
+
extra_headers: Send extra headers
|
139
|
+
|
140
|
+
extra_query: Add additional query parameters to the request
|
141
|
+
|
142
|
+
extra_body: Add additional JSON properties to the request
|
143
|
+
|
144
|
+
timeout: Override the client-level default timeout for this request, in seconds
|
145
|
+
"""
|
146
|
+
return await self._post(
|
147
|
+
"/v1/video_upscale",
|
148
|
+
body=await async_maybe_transform(
|
149
|
+
{
|
150
|
+
"model": model,
|
151
|
+
"video_uri": video_uri,
|
152
|
+
},
|
153
|
+
video_upscale_create_params.VideoUpscaleCreateParams,
|
154
|
+
),
|
155
|
+
options=make_request_options(
|
156
|
+
extra_headers=extra_headers, extra_query=extra_query, extra_body=extra_body, timeout=timeout
|
157
|
+
),
|
158
|
+
cast_to=VideoUpscaleCreateResponse,
|
159
|
+
)
|
160
|
+
|
161
|
+
|
162
|
+
class VideoUpscaleResourceWithRawResponse:
|
163
|
+
def __init__(self, video_upscale: VideoUpscaleResource) -> None:
|
164
|
+
self._video_upscale = video_upscale
|
165
|
+
|
166
|
+
self.create = to_raw_response_wrapper(
|
167
|
+
video_upscale.create,
|
168
|
+
)
|
169
|
+
|
170
|
+
|
171
|
+
class AsyncVideoUpscaleResourceWithRawResponse:
|
172
|
+
def __init__(self, video_upscale: AsyncVideoUpscaleResource) -> None:
|
173
|
+
self._video_upscale = video_upscale
|
174
|
+
|
175
|
+
self.create = async_to_raw_response_wrapper(
|
176
|
+
video_upscale.create,
|
177
|
+
)
|
178
|
+
|
179
|
+
|
180
|
+
class VideoUpscaleResourceWithStreamingResponse:
|
181
|
+
def __init__(self, video_upscale: VideoUpscaleResource) -> None:
|
182
|
+
self._video_upscale = video_upscale
|
183
|
+
|
184
|
+
self.create = to_streamed_response_wrapper(
|
185
|
+
video_upscale.create,
|
186
|
+
)
|
187
|
+
|
188
|
+
|
189
|
+
class AsyncVideoUpscaleResourceWithStreamingResponse:
|
190
|
+
def __init__(self, video_upscale: AsyncVideoUpscaleResource) -> None:
|
191
|
+
self._video_upscale = video_upscale
|
192
|
+
|
193
|
+
self.create = async_to_streamed_response_wrapper(
|
194
|
+
video_upscale.create,
|
195
|
+
)
|
runwayml/types/__init__.py
CHANGED
@@ -4,7 +4,9 @@ from __future__ import annotations
|
|
4
4
|
|
5
5
|
from .task_retrieve_response import TaskRetrieveResponse as TaskRetrieveResponse
|
6
6
|
from .text_to_image_create_params import TextToImageCreateParams as TextToImageCreateParams
|
7
|
+
from .video_upscale_create_params import VideoUpscaleCreateParams as VideoUpscaleCreateParams
|
7
8
|
from .image_to_video_create_params import ImageToVideoCreateParams as ImageToVideoCreateParams
|
8
9
|
from .text_to_image_create_response import TextToImageCreateResponse as TextToImageCreateResponse
|
10
|
+
from .video_upscale_create_response import VideoUpscaleCreateResponse as VideoUpscaleCreateResponse
|
9
11
|
from .image_to_video_create_response import ImageToVideoCreateResponse as ImageToVideoCreateResponse
|
10
12
|
from .organization_retrieve_response import OrganizationRetrieveResponse as OrganizationRetrieveResponse
|
@@ -13,11 +13,13 @@ __all__ = [
|
|
13
13
|
"TierModelsGen3aTurbo",
|
14
14
|
"TierModelsGen4Image",
|
15
15
|
"TierModelsGen4Turbo",
|
16
|
+
"TierModelsUpscaleV1",
|
16
17
|
"Usage",
|
17
18
|
"UsageModels",
|
18
19
|
"UsageModelsGen3aTurbo",
|
19
20
|
"UsageModelsGen4Image",
|
20
21
|
"UsageModelsGen4Turbo",
|
22
|
+
"UsageModelsUpscaleV1",
|
21
23
|
]
|
22
24
|
|
23
25
|
|
@@ -45,6 +47,14 @@ class TierModelsGen4Turbo(BaseModel):
|
|
45
47
|
"""The maximum number of generations that can be created each day for this model."""
|
46
48
|
|
47
49
|
|
50
|
+
class TierModelsUpscaleV1(BaseModel):
|
51
|
+
max_concurrent_generations: int = FieldInfo(alias="maxConcurrentGenerations")
|
52
|
+
"""The maximum number of generations that can be run concurrently for this model."""
|
53
|
+
|
54
|
+
max_daily_generations: int = FieldInfo(alias="maxDailyGenerations")
|
55
|
+
"""The maximum number of generations that can be created each day for this model."""
|
56
|
+
|
57
|
+
|
48
58
|
class TierModels(BaseModel):
|
49
59
|
gen3a_turbo: Optional[TierModelsGen3aTurbo] = None
|
50
60
|
"""Limits associated with the gen3a_turbo model."""
|
@@ -55,6 +65,9 @@ class TierModels(BaseModel):
|
|
55
65
|
gen4_turbo: Optional[TierModelsGen4Turbo] = None
|
56
66
|
"""Limits associated with the gen4_turbo model."""
|
57
67
|
|
68
|
+
upscale_v1: Optional[TierModelsUpscaleV1] = None
|
69
|
+
"""Limits associated with the upscale_v1 model."""
|
70
|
+
|
58
71
|
|
59
72
|
class Tier(BaseModel):
|
60
73
|
max_monthly_credit_spend: int = FieldInfo(alias="maxMonthlyCreditSpend")
|
@@ -79,6 +92,11 @@ class UsageModelsGen4Turbo(BaseModel):
|
|
79
92
|
"""The number of generations that have been run for this model in the past day."""
|
80
93
|
|
81
94
|
|
95
|
+
class UsageModelsUpscaleV1(BaseModel):
|
96
|
+
daily_generations: int = FieldInfo(alias="dailyGenerations")
|
97
|
+
"""The number of generations that have been run for this model in the past day."""
|
98
|
+
|
99
|
+
|
82
100
|
class UsageModels(BaseModel):
|
83
101
|
gen3a_turbo: Optional[UsageModelsGen3aTurbo] = None
|
84
102
|
"""Usage data for the gen3a_turbo model."""
|
@@ -89,6 +107,9 @@ class UsageModels(BaseModel):
|
|
89
107
|
gen4_turbo: Optional[UsageModelsGen4Turbo] = None
|
90
108
|
"""Usage data for the gen4_turbo model."""
|
91
109
|
|
110
|
+
upscale_v1: Optional[UsageModelsUpscaleV1] = None
|
111
|
+
"""Usage data for the upscale_v1 model."""
|
112
|
+
|
92
113
|
|
93
114
|
class Usage(BaseModel):
|
94
115
|
models: UsageModels
|
@@ -0,0 +1,22 @@
|
|
1
|
+
# File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
|
2
|
+
|
3
|
+
from __future__ import annotations
|
4
|
+
|
5
|
+
from typing_extensions import Literal, Required, Annotated, TypedDict
|
6
|
+
|
7
|
+
from .._utils import PropertyInfo
|
8
|
+
|
9
|
+
__all__ = ["VideoUpscaleCreateParams"]
|
10
|
+
|
11
|
+
|
12
|
+
class VideoUpscaleCreateParams(TypedDict, total=False):
|
13
|
+
model: Required[Literal["upscale_v1"]]
|
14
|
+
"""The model variant to use."""
|
15
|
+
|
16
|
+
video_uri: Required[Annotated[str, PropertyInfo(alias="videoUri")]]
|
17
|
+
"""A HTTPS URL pointing to a video or a data URI containing a video.
|
18
|
+
|
19
|
+
The video must be less than 4096px on each side. The video duration may not
|
20
|
+
exceed 40 seconds. See [our docs](/assets/inputs#videos) on video inputs for
|
21
|
+
more information.
|
22
|
+
"""
|
@@ -0,0 +1,10 @@
|
|
1
|
+
# File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
|
2
|
+
|
3
|
+
from .._models import BaseModel
|
4
|
+
|
5
|
+
__all__ = ["VideoUpscaleCreateResponse"]
|
6
|
+
|
7
|
+
|
8
|
+
class VideoUpscaleCreateResponse(BaseModel):
|
9
|
+
id: str
|
10
|
+
"""The ID of the newly created task."""
|
@@ -1,6 +1,6 @@
|
|
1
1
|
runwayml/__init__.py,sha256=w7Il_Fc71HY9Ebs62Q5VLcsCQGraefXwcOmtzeg4r5I,2587
|
2
2
|
runwayml/_base_client.py,sha256=C7nXQufaETXu-KXQeQtb6h6lEMCA-xWQUKWlIh9x0Ro,65094
|
3
|
-
runwayml/_client.py,sha256=
|
3
|
+
runwayml/_client.py,sha256=tEooz-jH6JGowMQwrTZE7CKcyqpILEHKfSFf7OevoIU,18513
|
4
4
|
runwayml/_compat.py,sha256=VWemUKbj6DDkQ-O4baSpHVLJafotzeXmCQGJugfVTIw,6580
|
5
5
|
runwayml/_constants.py,sha256=S14PFzyN9-I31wiV7SmIlL5Ga0MLHxdvegInGdXH7tM,462
|
6
6
|
runwayml/_exceptions.py,sha256=p2Q8kywHCVQzArLQL4Ht-HetTBhAvevU6yDvEq7PpIE,3224
|
@@ -11,7 +11,7 @@ runwayml/_resource.py,sha256=BF-j3xY5eRTKmuTxg8eDhLtLP4MLB1phDh_B6BKipKA,1112
|
|
11
11
|
runwayml/_response.py,sha256=WxjSEXX-j01ZhlSxYyMCVSEKxo20pgy40RA7iyski8M,28800
|
12
12
|
runwayml/_streaming.py,sha256=NSVuAgknVQWU1cgZEjQn01IdZKKynb5rOeYp5Lo-OEQ,10108
|
13
13
|
runwayml/_types.py,sha256=YL6SdhLq5SHlT644GjzDwOJ_Slyr8QDRCoacOp4trhI,6199
|
14
|
-
runwayml/_version.py,sha256=
|
14
|
+
runwayml/_version.py,sha256=ewweQm0FzO6J6GFWJ5sAqxHCBDqFKEIYiPzmmxSjCF8,160
|
15
15
|
runwayml/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
16
16
|
runwayml/_utils/__init__.py,sha256=PNZ_QJuzZEgyYXqkO1HVhGkj5IU9bglVUcw7H-Knjzw,2062
|
17
17
|
runwayml/_utils/_logs.py,sha256=ZfS5W59hdqEBVV86lNrk28PhvUxtHOzs9JqiLhSu0pI,780
|
@@ -24,19 +24,22 @@ runwayml/_utils/_transform.py,sha256=n7kskEWz6o__aoNvhFoGVyDoalNe6mJwp-g7BWkdj88
|
|
24
24
|
runwayml/_utils/_typing.py,sha256=D0DbbNu8GnYQTSICnTSHDGsYXj8TcAKyhejb0XcnjtY,4602
|
25
25
|
runwayml/_utils/_utils.py,sha256=ts4CiiuNpFiGB6YMdkQRh2SZvYvsl7mAF-JWHCcLDf4,12312
|
26
26
|
runwayml/lib/.keep,sha256=wuNrz-5SXo3jJaJOJgz4vFHM41YH_g20F5cRQo0vLes,224
|
27
|
-
runwayml/resources/__init__.py,sha256=
|
27
|
+
runwayml/resources/__init__.py,sha256=5XJIeBB9D2GqQU-9Ub5AuzRVgLYp1QdLr8Fjh6DCDxM,2643
|
28
28
|
runwayml/resources/image_to_video.py,sha256=dS2yTuOx10xSUAhAZ0FmuAEDXqo-WLyWe41aVovR5yo,10120
|
29
29
|
runwayml/resources/organization.py,sha256=XBg5nhkycPU3rllRvf9aaeHuZNtzGDKHlLPrPqDCAsw,5419
|
30
30
|
runwayml/resources/tasks.py,sha256=-VT3qetYcaqn4FskekxhN_fCTozMl1GqxGpGwxV8M60,9673
|
31
31
|
runwayml/resources/text_to_image.py,sha256=E-Fbu2fL96QFbp_j_hz7fw9iQTQwlqjpzH32K4HwoRg,9958
|
32
|
-
runwayml/
|
32
|
+
runwayml/resources/video_upscale.py,sha256=OWr-oCJ4ovhw6YLELsCwIvGLRnRKj9E3STB5ofMStbw,7451
|
33
|
+
runwayml/types/__init__.py,sha256=zXevA88F25dbdsjgpvdlKlvELiv9aamz1hS3xcLbe40,889
|
33
34
|
runwayml/types/image_to_video_create_params.py,sha256=TgoNwKkz_PK_sFBeATqMFkXpBhdx8DSZTLA6hLbMhFM,2352
|
34
35
|
runwayml/types/image_to_video_create_response.py,sha256=WvZHbZxxJz8KerRNogzb1RYBrxa1x0iCPDi9-LCpHyE,345
|
35
|
-
runwayml/types/organization_retrieve_response.py,sha256=
|
36
|
+
runwayml/types/organization_retrieve_response.py,sha256=_7vny0YNmNmREe8jp58ldJbXDdzNAGzDT8V0kK9pbsA,4385
|
36
37
|
runwayml/types/task_retrieve_response.py,sha256=v8y2bLxsW6srzScW-B3Akv72q_PI_NQmduGrGRQMHds,2139
|
37
38
|
runwayml/types/text_to_image_create_params.py,sha256=I8Dr4UG6VnciQ87zN6qp03FKwlQNnrwyn6cacHLqw20,2794
|
38
39
|
runwayml/types/text_to_image_create_response.py,sha256=koMzUg82dYFQPp77wln3UR1z8WO2sHCNMWGgoQ9Id8M,262
|
39
|
-
runwayml
|
40
|
-
runwayml
|
41
|
-
runwayml-3.
|
42
|
-
runwayml-3.
|
40
|
+
runwayml/types/video_upscale_create_params.py,sha256=Ta3BNQy9aeTUBU5Ui-CMJtF32HeNRqbNpqjAAOKXyks,743
|
41
|
+
runwayml/types/video_upscale_create_response.py,sha256=zf-79HbJa68dUHltBiZjVtnW_U6HUI-htmkTm5URBSU,264
|
42
|
+
runwayml-3.4.0.dist-info/METADATA,sha256=KQJ79S4lKQj3iKWmYi4-V__ryR9P89f9oqA5QwHBXDM,13986
|
43
|
+
runwayml-3.4.0.dist-info/WHEEL,sha256=C2FUgwZgiLbznR-k0b_5k3Ai_1aASOXDss3lzCUsUug,87
|
44
|
+
runwayml-3.4.0.dist-info/licenses/LICENSE,sha256=baeFj6izBWIm6A5_7N3-WAsy_VYpDF05Dd4zS1zsfZI,11338
|
45
|
+
runwayml-3.4.0.dist-info/RECORD,,
|
File without changes
|
File without changes
|