Load workflows from GLTF files (#3169)

Co-authored-by: github-actions <github-actions@github.com>
This commit is contained in:
Christian Byrne
2025-03-20 17:55:51 -07:00
committed by GitHub
parent 5b730517a3
commit 4dad89369a
8 changed files with 381 additions and 1 deletions

View File

@@ -482,6 +482,7 @@ export class ComfyPage {
if (fileName.endsWith('.webp')) return 'image/webp'
if (fileName.endsWith('.webm')) return 'video/webm'
if (fileName.endsWith('.json')) return 'application/json'
if (fileName.endsWith('.glb')) return 'model/gltf-binary'
return 'application/octet-stream'
}