| 8 | export type SDModelBase = 'SDXL' | 'SD1.5' | 'SD2' | 'SD2.1' | 'SD2.2' | 'SD2.3' | 'SD2.4' | 'SD2.5' | 'SD2.6'; |
| 9 | |
| 10 | export interface FolderPaths { |
| 11 | checkpoints: [string[], ModelExt[]]; |
| 12 | configs: [string[], string[]]; |
| 13 | loras: [string[], ModelExt[]]; |
| 14 | vae: [string[], ModelExt[]]; |
| 15 | clip: [string[], ModelExt[]]; |
| 16 | unet: [string[], ModelExt[]]; |
| 17 | clip_vision: [string[], ModelExt[]]; |
| 18 | style_models: [string[], ModelExt[]]; |
| 19 | embeddings: [string[], ModelExt[]]; |
| 20 | diffusers: [string[], string[]]; |
| 21 | vae_approx: [string[], ModelExt[]]; |
| 22 | controlnet: [string[], ModelExt[]]; |
| 23 | gligen: [string[], ModelExt[]]; |
| 24 | upscale_models: [string[], ModelExt[]]; |
| 25 | // custom_nodes: [string[], any[]]; // Adjust 'any' based on the actual value type |
| 26 | hypernetworks: [string[], ModelExt[]]; |
| 27 | classifiers: [string[], { '': any }]; // Adjust 'any' based on the actual value type |
| 28 | 'T2I-Adapter': [string[], ModelExt[]]; |
| 29 | 'T2I-Style': [string[], ModelExt[]]; |
| 30 | } |
| 31 | |
| 32 | export {type MarketModel} from '@comflowy/common/types/model.types'; |
| 33 |
nothing calls this directly
no outgoing calls
no test coverage detected