| 12 | // ─── Extension types ────────────────────────────────────────────────────────── |
| 13 | |
| 14 | export interface ExtensionNode { |
| 15 | id: string |
| 16 | name: string |
| 17 | input: 'image' | 'text' | 'mesh' |
| 18 | inputs?: ('image' | 'text' | 'mesh')[] // multi-input nodes; overrides input when set |
| 19 | output: 'image' | 'text' | 'mesh' |
| 20 | paramsSchema: ParamSchema[] |
| 21 | paramDefaults?: Record<string, number | string> |
| 22 | hfRepo?: string |
| 23 | downloadCheck?: string |
| 24 | hfSkipPrefixes?: string[] |
| 25 | hfIncludePrefixes?: string[] |
| 26 | } |
| 27 | |
| 28 | export interface ModelExtension { |
| 29 | type: 'model' |
nothing calls this directly
no outgoing calls
no test coverage detected