Spaces:
Sleeping
Sleeping
fix: subir VEO_WAIT de 300 a 600s para dar tiempo a mas escenas
Browse files- veo_service.py +2 -2
veo_service.py
CHANGED
|
@@ -6,8 +6,8 @@ _REGION = os.environ.get("GOOGLE_REGION", "us-central1").strip()
|
|
| 6 |
_MODELO = os.environ.get("VEO_MODELO", "veo-2.0-generate-001").strip()
|
| 7 |
try: _MAX_CLIPS = int(os.environ.get("VEO_MAX_CLIPS", "15"))
|
| 8 |
except Exception: _MAX_CLIPS = 15
|
| 9 |
-
try: _WAIT = int(os.environ.get("VEO_WAIT", "
|
| 10 |
-
except Exception: _WAIT =
|
| 11 |
|
| 12 |
def _token_acceso():
|
| 13 |
raw = os.environ.get("GOOGLE_CREDS_JSON", "").strip()
|
|
|
|
| 6 |
_MODELO = os.environ.get("VEO_MODELO", "veo-2.0-generate-001").strip()
|
| 7 |
try: _MAX_CLIPS = int(os.environ.get("VEO_MAX_CLIPS", "15"))
|
| 8 |
except Exception: _MAX_CLIPS = 15
|
| 9 |
+
try: _WAIT = int(os.environ.get("VEO_WAIT", "600"))
|
| 10 |
+
except Exception: _WAIT = 600
|
| 11 |
|
| 12 |
def _token_acceso():
|
| 13 |
raw = os.environ.get("GOOGLE_CREDS_JSON", "").strip()
|