/** * Start a model */ export declare const startModel: (modelId: string, name: string, options: { pod?: string; vllmArgs?: string[]; memory?: string; context?: string; gpus?: number; }) => Promise; /** * Stop a model */ export declare const stopModel: (name: string, options: { pod?: string; }) => Promise; /** * Stop all models on a pod */ export declare const stopAllModels: (options: { pod?: string; }) => Promise; /** * List all models */ export declare const listModels: (options: { pod?: string; }) => Promise; /** * View model logs */ export declare const viewLogs: (name: string, options: { pod?: string; }) => Promise; /** * Show known models and their hardware requirements */ export declare const showKnownModels: () => Promise; //# sourceMappingURL=models.d.ts.map