mirror of
https://github.com/immich-app/immich.git
synced 2025-12-18 17:23:16 +03:00
11 lines
314 B
TypeScript
11 lines
314 B
TypeScript
|
|
export const IMachineLearningRepository = 'IMachineLearningRepository';
|
||
|
|
|
||
|
|
export interface MachineLearningInput {
|
||
|
|
thumbnailPath: string;
|
||
|
|
}
|
||
|
|
|
||
|
|
export interface IMachineLearningRepository {
|
||
|
|
tagImage(input: MachineLearningInput): Promise<string[]>;
|
||
|
|
detectObjects(input: MachineLearningInput): Promise<string[]>;
|
||
|
|
}
|