mirror of
https://github.com/invoke-ai/InvokeAI.git
synced 2026-02-14 00:04:59 -05:00
18 lines
360 B
TypeScript
18 lines
360 B
TypeScript
/* istanbul ignore file */
|
|
/* tslint:disable */
|
|
/* eslint-disable */
|
|
|
|
import type { CkptModelInfo } from './CkptModelInfo';
|
|
import type { DiffusersModelInfo } from './DiffusersModelInfo';
|
|
|
|
export type CreateModelRequest = {
|
|
/**
|
|
* The name of the model
|
|
*/
|
|
name: string;
|
|
/**
|
|
* The model info
|
|
*/
|
|
info: (CkptModelInfo | DiffusersModelInfo);
|
|
};
|