feat: Enhance AI extraction summaries and worker allocation for GPU support
This commit is contained in:
parent
48d6af13da
commit
f57dc1edba
3 changed files with 90 additions and 51 deletions
|
|
@ -22,7 +22,8 @@ public sealed record AiExtractionProgressUpdate(
|
|||
double PercentComplete,
|
||||
double AverageImagesPerSecond,
|
||||
int WorkloadLevel,
|
||||
int WorkerCount);
|
||||
int WorkerCount,
|
||||
bool UseGpu);
|
||||
|
||||
public sealed record AiExtractionRunSummary(
|
||||
int TotalFiles,
|
||||
|
|
@ -30,7 +31,8 @@ public sealed record AiExtractionRunSummary(
|
|||
int FailedFiles,
|
||||
double AverageImagesPerSecond,
|
||||
int WorkloadLevel,
|
||||
int WorkerCount);
|
||||
int WorkerCount,
|
||||
bool UseGpu);
|
||||
|
||||
public interface IAiExtractionService
|
||||
{
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue