MCPcopy
hub / github.com/lightningpixel/modly / ExtensionNode

Interface ExtensionNode

src/shared/types/electron.d.ts:14–26  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

12// ─── Extension types ──────────────────────────────────────────────────────────
13
14export 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
28export interface ModelExtension {
29 type: 'model'

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected