feat: Implement AI workload settings and enhance AI processing summaries
This commit is contained in:
parent
4230300518
commit
88c193549f
8 changed files with 326 additions and 28 deletions
|
|
@ -71,6 +71,28 @@ public class AiSettingsViewModel : ViewModelBase
|
|||
}
|
||||
}
|
||||
|
||||
private int _numberAiWorkloadLevel = 3;
|
||||
public int NumberAiWorkloadLevel
|
||||
{
|
||||
get => _numberAiWorkloadLevel;
|
||||
set
|
||||
{
|
||||
_numberAiWorkloadLevel = value;
|
||||
NotifyPropertyChanged();
|
||||
}
|
||||
}
|
||||
|
||||
private string _numberAiStatsSummary = string.Empty;
|
||||
public string NumberAiStatsSummary
|
||||
{
|
||||
get => _numberAiStatsSummary;
|
||||
set
|
||||
{
|
||||
_numberAiStatsSummary = value;
|
||||
NotifyPropertyChanged();
|
||||
}
|
||||
}
|
||||
|
||||
private string _faceExecutablePath = string.Empty;
|
||||
public string FaceExecutablePath
|
||||
{
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue