Spaces:
Sleeping
Sleeping
| class ImportProgress: | |
| status: str = "idle" # idle, running, completed, error | |
| total: int = 0 | |
| current: int = 0 | |
| message: str = "" | |
| import_progress = ImportProgress() | |
| class ImportProgress: | |
| status: str = "idle" # idle, running, completed, error | |
| total: int = 0 | |
| current: int = 0 | |
| message: str = "" | |
| import_progress = ImportProgress() | |