import { ModelSettingParams } from '@/domain/models/model.interface'; export declare class ModelSettingParamsDto implements ModelSettingParams { ctx_len?: number; ngl?: number; embedding?: boolean; n_parallel?: number; cpu_threads?: number; prompt_template?: string; system_prompt?: string; ai_prompt?: string; user_prompt?: string; llama_model_path?: string; mmproj?: string; cont_batching?: boolean; vision_model?: boolean; text_model?: boolean; }