registry
¶
Central registry for FastVideo pipelines and model configuration discovery.
This module mirrors the organization of sglang's registry while keeping FastVideo's legacy behavior and mappings intact.
Classes¶
fastvideo.registry.ConfigInfo
dataclass
¶
ConfigInfo(sampling_param_cls: type[SamplingParam] | None, pipeline_config_cls: type[PipelineConfig])
Encapsulates sampling + pipeline config classes for a model family.
Functions¶
fastvideo.registry.register_configs
¶
register_configs(sampling_param_cls: type[SamplingParam] | None, pipeline_config_cls: type[PipelineConfig], hf_model_paths: list[str] | None = None, model_detectors: list[Callable[[str], bool]] | None = None) -> None
Register config classes for a model family.