Skip to content

Commit 4cdc7d1

Browse files
committed
regen
1 parent 6a56fc0 commit 4cdc7d1

File tree

3 files changed

+9
-7
lines changed

3 files changed

+9
-7
lines changed

runner/app/routes/live_video_to_video.py

+1-2
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ class LiveVideoToVideoParams(BaseModel):
7676
str,
7777
Field(
7878
default="",
79-
description=" The ID of the Gateway request (for logging purposes)."
79+
description="The ID of the Gateway request (for logging purposes)."
8080
),
8181
]
8282
stream_id: Annotated[
@@ -148,7 +148,6 @@ async def live_video_to_video(
148148
requestID = params.gateway_request_id
149149
if streamID is None:
150150
streamID = params.stream_id
151-
logger.error(f"AAA live_video_to_video: {requestID} {streamID}")
152151
pipeline(**params.model_dump(), request_id=requestID, stream_id=streamID)
153152
except Exception as e:
154153
if isinstance(e, torch.cuda.OutOfMemoryError):

runner/gateway.openapi.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1030,7 +1030,7 @@ components:
10301030
gateway_request_id:
10311031
type: string
10321032
title: Gateway Request Id
1033-
description: ' The ID of the Gateway request (for logging purposes).'
1033+
description: The ID of the Gateway request (for logging purposes).
10341034
default: ''
10351035
stream_id:
10361036
type: string

runner/openapi.yaml

+7-4
Original file line numberDiff line numberDiff line change
@@ -1175,12 +1175,14 @@ components:
11751175
default: {}
11761176
gateway_request_id:
11771177
type: string
1178-
title: Gateway Request ID
1178+
title: Gateway Request Id
11791179
description: The ID of the Gateway request (for logging purposes).
1180+
default: ''
11801181
stream_id:
11811182
type: string
1182-
title: Stream ID
1183+
title: Stream Id
11831184
description: The Stream ID (for logging purposes).
1185+
default: ''
11841186
type: object
11851187
required:
11861188
- subscribe_url
@@ -1208,8 +1210,9 @@ components:
12081210
default: ''
12091211
request_id:
12101212
type: string
1211-
title: Request ID
1212-
description: The ID generated for this request.
1213+
title: Request Id
1214+
description: The ID generated for this request
1215+
default: ''
12131216
type: object
12141217
required:
12151218
- subscribe_url

0 commit comments

Comments
 (0)