e4dcfc49aa
Tests / Import Check (Python 3.13) (push) Has been cancelled
Tests / Import Check (Python 3.14) (push) Has been cancelled
Tests / Python Tests (Python 3.11) (push) Has been cancelled
Tests / Python Tests (Python 3.12) (push) Has been cancelled
Tests / Python Tests (Python 3.14) (push) Has been cancelled
Tests / Test Summary (push) Has been cancelled
Tests / Lint and Format (push) Has been cancelled
Tests / Web Node Tests (push) Has been cancelled
Tests / Import Check (Python 3.11) (push) Has been cancelled
Tests / Import Check (Python 3.12) (push) Has been cancelled
Tests / Python Tests (Python 3.13) (push) Has been cancelled
40 lines
1.3 KiB
Python
40 lines
1.3 KiB
Python
"""Resolved runtime configuration for video-generation providers.
|
|
|
|
Unlike image generation, text-to-video has no synchronous OpenAI standard: the
|
|
common shape is an async task (submit → poll → download). This dataclass carries
|
|
the generation knobs plus the polling budget used by the async-task adapter.
|
|
"""
|
|
|
|
from __future__ import annotations
|
|
|
|
from dataclasses import dataclass, field
|
|
|
|
from deeptutor.services.generation_http import AUTH_BEARER
|
|
|
|
|
|
@dataclass(slots=True)
|
|
class VideogenConfig:
|
|
"""Resolved text-to-video configuration for one generation call."""
|
|
|
|
model: str
|
|
provider_name: str = "volcengine"
|
|
adapter: str = "async_task"
|
|
auth_style: str = AUTH_BEARER
|
|
api_key: str = ""
|
|
base_url: str = ""
|
|
api_version: str | None = None
|
|
extra_headers: dict[str, str] = field(default_factory=dict)
|
|
# Provider/model-specific generation knobs. Empty → omit.
|
|
aspect_ratio: str = "" # e.g. "16:9"
|
|
duration: str = "" # seconds, free-form (e.g. "5")
|
|
resolution: str = "" # e.g. "720p" | "1080p"
|
|
# Polling budget. ``request_timeout`` bounds each submit/poll HTTP call;
|
|
# ``poll_timeout`` bounds the whole render; ``poll_interval`` is the gap
|
|
# between status checks.
|
|
request_timeout: int = 60
|
|
poll_interval: float = 5.0
|
|
poll_timeout: int = 600
|
|
|
|
|
|
__all__ = ["VideogenConfig"]
|