mirror of
https://github.com/invoke-ai/InvokeAI.git
synced 2026-02-13 22:14:59 -05:00
32 lines
496 B
TypeScript
32 lines
496 B
TypeScript
/* istanbul ignore file */
|
|
/* tslint:disable */
|
|
/* eslint-disable */
|
|
|
|
export type CkptModelInfo = {
|
|
/**
|
|
* A description of the model
|
|
*/
|
|
description?: string;
|
|
format?: 'ckpt';
|
|
/**
|
|
* The path to the model config
|
|
*/
|
|
config: string;
|
|
/**
|
|
* The path to the model weights
|
|
*/
|
|
weights: string;
|
|
/**
|
|
* The path to the model VAE
|
|
*/
|
|
vae: string;
|
|
/**
|
|
* The width of the model
|
|
*/
|
|
width?: number;
|
|
/**
|
|
* The height of the model
|
|
*/
|
|
height?: number;
|
|
};
|