Refactoring
Some checks failed
Build Linux App / build (push) Failing after 1m33s

This commit is contained in:
2026-02-23 10:02:23 -05:00
parent 21f1387fa8
commit 0c9eb8878d
57 changed files with 8179 additions and 1114 deletions

View File

@@ -0,0 +1,14 @@
import 'package:freezed_annotation/freezed_annotation.dart';
part 'ai_model_settings_state.freezed.dart';
@freezed
class AiModelSettingsState with _$AiModelSettingsState {
const factory AiModelSettingsState({
@Default(false) bool isDownloading,
@Default(0.0) double progress,
@Default('') String currentTask,
@Default(false) bool areModelsValidated,
String? errorMessage,
}) = _AiModelSettingsState;
}