Class ModelDownloadProgress
- Namespace
- AiDotNet.Interfaces
- Assembly
- AiDotNet.dll
Progress information for model downloads.
public class ModelDownloadProgress
- Inheritance
-
ModelDownloadProgress
- Inherited Members
Properties
BytesDownloaded
Gets or sets the number of bytes downloaded for the current file.
public long BytesDownloaded { get; set; }
Property Value
CurrentFile
Gets or sets the current file being downloaded.
public string CurrentFile { get; set; }
Property Value
FileProgress
Gets or sets the current file progress (0.0 to 1.0).
public double FileProgress { get; }
Property Value
OverallProgress
Gets or sets the overall progress (0.0 to 1.0).
public double OverallProgress { get; set; }
Property Value
TotalBytes
Gets or sets the total bytes for the current file (-1 if unknown).
public long TotalBytes { get; set; }