Commit
·
281ccac
1
Parent(s):
54d363d
Limited batch size to 4
Browse files- handler.py +1 -1
handler.py
CHANGED
@@ -226,7 +226,7 @@ class EndpointHandler:
|
|
226 |
"Data must contain 'videos_urls' key with a list of videos urls."
|
227 |
)
|
228 |
|
229 |
-
batch_size =
|
230 |
if "batch_size" in data:
|
231 |
batch_size = int(data["batch_size"])
|
232 |
# Download and process the videos
|
|
|
226 |
"Data must contain 'videos_urls' key with a list of videos urls."
|
227 |
)
|
228 |
|
229 |
+
batch_size = 4
|
230 |
if "batch_size" in data:
|
231 |
batch_size = int(data["batch_size"])
|
232 |
# Download and process the videos
|