k-l-lambda's picture
feat: add Python ML services (CPU mode) with model download
2b7aae2
export namespace Cache {
/**
* @default false
*/
let enabled: boolean;
/**
* @default {}
*/
let files: any;
function add(key: string, file: any): void;
function get(key: string): any;
function remove(key: string): void;
function clear(): void;
}