getSdVae() returns a schema of { title: string; alias: string; path: string; metadata: Record<string, unknown>; } (StableDiffusionLora) but if you print this to the console the schema is { modal_name: string; filename: string; }

here is the type that need to be added:
export type StableDiffusionVae = {
modal_name: string;
filename: string;
};
getSdVae() returns a schema of

{ title: string; alias: string; path: string; metadata: Record<string, unknown>;} (StableDiffusionLora) but if you print this to the console the schema is{ modal_name: string; filename: string; }here is the type that need to be added: