Skip to content

Commit d33655b

Browse files
authored
Remove stream_id from passing into piepline() (#446)
1 parent 19fb5d8 commit d33655b

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

runner/app/routes/live_video_to_video.py

+1-3
Original file line numberDiff line numberDiff line change
@@ -146,9 +146,7 @@ async def live_video_to_video(
146146
try:
147147
if requestID is None:
148148
requestID = params.gateway_request_id
149-
if streamID is None:
150-
streamID = params.stream_id
151-
pipeline(**params.model_dump(), request_id=requestID, stream_id=streamID)
149+
pipeline(**params.model_dump(), request_id=requestID)
152150
except Exception as e:
153151
if isinstance(e, torch.cuda.OutOfMemoryError):
154152
torch.cuda.empty_cache()

0 commit comments

Comments
 (0)