Buckets:
| from typing import NamedTuple | |
| from comfy_api.internal.singleton import ProxiedSingleton | |
| from packaging import version as packaging_version | |
| class ComfyAPIBase(ProxiedSingleton): | |
| def __init__(self): | |
| pass | |
| class ComfyAPIWithVersion(NamedTuple): | |
| version: str | |
| api_class: type[ComfyAPIBase] | |
| def parse_version(version_str: str) -> packaging_version.Version: | |
| """ | |
| Parses a version string into a packaging_version.Version object. | |
| Raises ValueError if the version string is invalid. | |
| """ | |
| if version_str == "latest": | |
| return packaging_version.parse("9999999.9999999.9999999") | |
| return packaging_version.parse(version_str) | |
| registered_versions: list[ComfyAPIWithVersion] = [] | |
| def register_versions(versions: list[ComfyAPIWithVersion]): | |
| versions.sort(key=lambda x: parse_version(x.version)) | |
| global registered_versions | |
| registered_versions = versions | |
| def get_all_versions() -> list[ComfyAPIWithVersion]: | |
| """ | |
| Returns a list of all registered ComfyAPI versions. | |
| """ | |
| return registered_versions | |
Xet Storage Details
- Size:
- 1.06 kB
- Xet hash:
- 3b2f0da658bf009cdcc0dc915d4aee4aff4d557e9bea59c636754e0be8f368a0
·
Xet efficiently stores files, intelligently splitting them into unique chunks and accelerating uploads and downloads. More info.