AI Pettorali

This commit is contained in:
MaddoScientisto 2026-05-09 17:27:05 +02:00
commit cb41c42bb5
11 changed files with 379 additions and 55 deletions

View file

@ -38,6 +38,17 @@ public class AiSettingsViewModel : ViewModelBase
}
}
private bool _useNumberAiGpu;
public bool UseNumberAiGpu
{
get => _useNumberAiGpu;
set
{
_useNumberAiGpu = value;
NotifyPropertyChanged();
}
}
private string _faceExecutablePath = string.Empty;
public string FaceExecutablePath
{