File size: 445 Bytes
57a2b6f
 
 
 
 
 
 
 
 
7c10849
57a2b6f
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
"""
Backward-compatible module: `uvicorn api.server:app` redirects to the split app.
Tests and tooling may import MAX_* from here.
"""
from api.config import (
    MAX_CONCURRENT_JOBS,
    MAX_CONCURRENT_LIVE_SESSIONS,
    MAX_QUEUED_JOBS,
    MAX_VIDEO_DURATION_SECONDS,
)
from api.main import app

__all__ = [
    "app",
    "MAX_CONCURRENT_JOBS",
    "MAX_QUEUED_JOBS",
    "MAX_CONCURRENT_LIVE_SESSIONS",
    "MAX_VIDEO_DURATION_SECONDS",
]