Table of Contents

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

long

CurrentFile

Gets or sets the current file being downloaded.

public string CurrentFile { get; set; }

Property Value

string

FileProgress

Gets or sets the current file progress (0.0 to 1.0).

public double FileProgress { get; }

Property Value

double

OverallProgress

Gets or sets the overall progress (0.0 to 1.0).

public double OverallProgress { get; set; }

Property Value

double

TotalBytes

Gets or sets the total bytes for the current file (-1 if unknown).

public long TotalBytes { get; set; }

Property Value

long