mirror of
https://github.com/immich-app/immich
synced 2025-10-17 18:19:27 +00:00
feat: availability checks (#22185)
This commit is contained in:
parent
52363cf0fb
commit
3f2e0780d5
25 changed files with 361 additions and 138 deletions
|
|
@ -1383,6 +1383,11 @@ export type SystemConfigLoggingDto = {
|
|||
enabled: boolean;
|
||||
level: LogLevel;
|
||||
};
|
||||
export type MachineLearningAvailabilityChecksDto = {
|
||||
enabled: boolean;
|
||||
interval: number;
|
||||
timeout: number;
|
||||
};
|
||||
export type ClipConfig = {
|
||||
enabled: boolean;
|
||||
modelName: string;
|
||||
|
|
@ -1399,12 +1404,11 @@ export type FacialRecognitionConfig = {
|
|||
modelName: string;
|
||||
};
|
||||
export type SystemConfigMachineLearningDto = {
|
||||
availabilityChecks: MachineLearningAvailabilityChecksDto;
|
||||
clip: ClipConfig;
|
||||
duplicateDetection: DuplicateDetectionConfig;
|
||||
enabled: boolean;
|
||||
facialRecognition: FacialRecognitionConfig;
|
||||
/** This property was deprecated in v1.122.0 */
|
||||
url?: string;
|
||||
urls: string[];
|
||||
};
|
||||
export type SystemConfigMapDto = {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue