mirror of
https://github.com/comfyanonymous/ComfyUI.git
synced 2026-07-06 06:30:52 +08:00
Simplify docstrings.
This commit is contained in:
parent
af9ca03926
commit
6be778ce45
@ -1,15 +1,13 @@
|
|||||||
"""SQLAlchemy models for the download manager.
|
"""SQLAlchemy models for the download manager.
|
||||||
|
|
||||||
Three tables (PRD section 7):
|
Three tables:
|
||||||
|
|
||||||
- ``downloads`` one row per requested file (job + queue state).
|
- ``downloads`` one row per requested file (job + queue state).
|
||||||
- ``download_segments`` per-segment byte progress, for segmented resume.
|
- ``download_segments`` per-segment byte progress, for segmented resume.
|
||||||
- ``host_credentials`` one API key per host, reused across downloads.
|
- ``host_credentials`` one API key per host, reused across downloads.
|
||||||
|
|
||||||
The local file catalog / dedup index is NOT here — that is owned by the
|
On completion a finished file is registered into the assets catalog;
|
||||||
assets system (``assets`` / ``asset_references``). On completion a finished
|
``downloads`` is kept only as job history.
|
||||||
file is registered into the assets catalog; ``downloads`` is kept only as
|
|
||||||
job history.
|
|
||||||
"""
|
"""
|
||||||
|
|
||||||
from __future__ import annotations
|
from __future__ import annotations
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user