Skip to content

Commit 003ddc2

Browse files
authored
Merge pull request #168 from lumalabs/release-please--branches--main--changes--next
release: 1.16.0
2 parents c3a0886 + 73139d5 commit 003ddc2

File tree

8 files changed

+17
-9
lines changed

8 files changed

+17
-9
lines changed

.release-please-manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
{
2-
".": "1.15.1"
2+
".": "1.16.0"
33
}

.stats.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
configured_endpoints: 13
2-
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/luma-ai-karanganesan%2Fluma_ai-3eb911b4125c57ada1096eaeb4cadab8ac71ac4f6e5cf178209ebd1a3d7f826a.yml
3-
openapi_spec_hash: 69a6757bf5c41f96ae0694e0b9c86491
2+
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/luma-ai-karanganesan%2Fluma_ai-965c8e97a488f5378849ba7564b44a272c141329700a6af65b24a4ea408880de.yml
3+
openapi_spec_hash: 7ba050249c3c434b4a4632c41c8de405
44
config_hash: 8017bd140eecc6eedb1d788d7b0edb3b

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,13 @@
11
# Changelog
22

3+
## 1.16.0 (2025-07-11)
4+
5+
Full Changelog: [v1.15.1...v1.16.0](https://github.com/lumalabs/lumaai-python/compare/v1.15.1...v1.16.0)
6+
7+
### Features
8+
9+
* **api:** api update ([575ffcf](https://github.com/lumalabs/lumaai-python/commit/575ffcfc00f6f5069192d782c25bf3a01c2d893d))
10+
311
## 1.15.1 (2025-07-11)
412

513
Full Changelog: [v1.15.0...v1.15.1](https://github.com/lumalabs/lumaai-python/compare/v1.15.0...v1.15.1)

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "lumaai"
3-
version = "1.15.1"
3+
version = "1.16.0"
44
description = "The official Python library for the lumaai API"
55
dynamic = ["readme"]
66
license = "Apache-2.0"

src/lumaai/_version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
# File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
22

33
__title__ = "lumaai"
4-
__version__ = "1.15.1" # x-release-please-version
4+
__version__ = "1.16.0" # x-release-please-version

src/lumaai/resources/generations/video.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -135,7 +135,7 @@ def modify(
135135
"reimagine_2",
136136
"reimagine_3",
137137
],
138-
model: Literal["ray-2"],
138+
model: Literal["ray-2", "ray-flash-2"],
139139
callback_url: str | NotGiven = NOT_GIVEN,
140140
first_frame: video_modify_params.FirstFrame | NotGiven = NOT_GIVEN,
141141
prompt: str | NotGiven = NOT_GIVEN,
@@ -399,7 +399,7 @@ async def modify(
399399
"reimagine_2",
400400
"reimagine_3",
401401
],
402-
model: Literal["ray-2"],
402+
model: Literal["ray-2", "ray-flash-2"],
403403
callback_url: str | NotGiven = NOT_GIVEN,
404404
first_frame: video_modify_params.FirstFrame | NotGiven = NOT_GIVEN,
405405
prompt: str | NotGiven = NOT_GIVEN,

src/lumaai/types/generation.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -371,7 +371,7 @@ class RequestModifyVideoRequest(BaseModel):
371371
]
372372
"""The mode of the modify video"""
373373

374-
model: Literal["ray-2"]
374+
model: Literal["ray-2", "ray-flash-2"]
375375
"""The model used for the modify video"""
376376

377377
callback_url: Optional[str] = None

src/lumaai/types/generations/video_modify_params.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ class VideoModifyParams(TypedDict, total=False):
2828
]
2929
"""The mode of the modify video"""
3030

31-
model: Required[Literal["ray-2"]]
31+
model: Required[Literal["ray-2", "ray-flash-2"]]
3232
"""The model used for the modify video"""
3333

3434
callback_url: str

0 commit comments

Comments
 (0)