Skip to content
Open
Show file tree
Hide file tree
Changes from 11 commits
Commits
Show all changes
36 commits
Select commit Hold shift + click to select a range
6bd8f24
Added Video Generation support
ParamThakkar123 Nov 29, 2025
f33c5a6
Merge branch 'main' of https://github.com/transformerlab/transformerl…
ParamThakkar123 Nov 29, 2025
9020496
Merge branch 'main' into add/video-gen
deep1401 Dec 2, 2025
f748884
Merge branch 'main' of https://github.com/transformerlab/transformerl…
ParamThakkar123 Dec 3, 2025
90f77f0
Merge branch 'add/video-gen' of https://github.com/transformerlab/tra…
ParamThakkar123 Dec 3, 2025
c85ed54
Merge branch 'main' of https://github.com/transformerlab/transformerl…
ParamThakkar123 Dec 5, 2025
9dfc70a
Separate plugin for video diffusion
ParamThakkar123 Dec 5, 2025
9b73396
Merge branch 'main' of https://github.com/transformerlab/transformerl…
ParamThakkar123 Dec 5, 2025
1f444e8
Separate plugin for video diffusion
ParamThakkar123 Dec 5, 2025
2a15194
Separate plugin for video diffusion
ParamThakkar123 Dec 5, 2025
d45b7b3
Merge branch 'main' into add/video-gen
deep1401 Dec 5, 2025
5988526
Rebase
ParamThakkar123 Dec 13, 2025
2859589
Merge branch 'add/video-gen' of https://github.com/transformerlab/tra…
ParamThakkar123 Dec 13, 2025
353878d
Added Support for generating images using Wan
ParamThakkar123 Dec 17, 2025
fbba69c
Updates
ParamThakkar123 Dec 17, 2025
97e43db
Merge branch 'main' of https://github.com/transformerlab/transformerl…
ParamThakkar123 Dec 17, 2025
e5a8922
Updates
ParamThakkar123 Dec 17, 2025
7490496
Rebase
ParamThakkar123 Dec 18, 2025
eea03bd
Rebase
ParamThakkar123 Dec 18, 2025
18e8d54
Rebase
ParamThakkar123 Dec 18, 2025
863987b
Rebase
ParamThakkar123 Dec 18, 2025
09a9a83
Merge branch 'main' into add/video-gen
ParamThakkar123 Jan 6, 2026
88a374a
Merge branch 'main' into add/video-gen
dadmobile Jan 9, 2026
c090505
Merge branch 'main' into add/video-gen
dadmobile Jan 20, 2026
0e88c74
Merge branch 'main' into add/video-gen
deep1401 Feb 2, 2026
da4a138
Merge branch 'main' into add/video-gen
deep1401 Feb 2, 2026
9de2d06
Merge branch 'main' into add/video-gen
deep1401 Feb 3, 2026
b948e58
bug fix -- missed await
deep1401 Feb 3, 2026
48ee850
Rebase
ParamThakkar123 Feb 3, 2026
67dc383
Rebase
ParamThakkar123 Feb 3, 2026
b6f3c9d
Function rename
ParamThakkar123 Feb 3, 2026
d776732
Merge branch 'main' of https://github.com/transformerlab/transformerl…
ParamThakkar123 Feb 3, 2026
d1be8d7
Merge branch 'main' into add/video-gen
dadmobile Feb 8, 2026
157f7f9
Updates
ParamThakkar123 Feb 8, 2026
6c639dd
Merge branch 'add/video-gen' of https://github.com/transformerlab/tra…
ParamThakkar123 Feb 8, 2026
8198407
Merge branch 'main' of https://github.com/transformerlab/transformerl…
ParamThakkar123 Feb 8, 2026
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 3 additions & 9 deletions api/transformerlab/plugins/image_diffusion/index.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,15 +7,9 @@
"version": "0.0.5",
"git": "",
"url": "",
"files": [
"main.py",
"diffusion_worker.py",
"setup.sh"
],
"supported_hardware_architectures": [
"cuda",
"amd"
],
"files": ["main.py", "diffusion_worker.py", "setup.sh"],
"model_architectures": ["DiffusionPipeline", "WanPipeline"],
"supported_hardware_architectures": ["cuda", "amd"],
"_dataset": false,
"setup-script": "setup.sh",
"parameters": {},
Expand Down
3 changes: 3 additions & 0 deletions api/transformerlab/plugins/image_diffusion/setup.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
#!/bin/bash
uv pip install git+https://github.com/huggingface/diffusers transformers accelerate safetensors
uv pip install peft
33 changes: 33 additions & 0 deletions api/transformerlab/plugins/video_diffusion_plugin/index.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
{
"name": "Video Diffusion",
"uniqueId": "video_diffusion",
"description": "Generate videos in the Diffusion tab using this plugin",
"plugin-format": "python",
"type": "diffusion",
"version": "0.0.6",
"git": "",
"url": "",
"files": ["main.py", "video_diffusion_worker.py", "setup.sh"],
"model_architectures": [
"DiffusionPipeline",
"WanPipeline",
"StableVideoDiffusionPipeline",
"WanImageToVideoPipeline"
],
"supported_hardware_architectures": ["cuda", "amd"],
"_dataset": false,
"setup-script": "setup.sh",
"parameters": {
"tflabcustomui_is_text2video": {
"type": "boolean",
"title": "Text-to-Video Generation",
"description": "If checked, generates a video from a text prompt. Otherwise, an input image is required for image-to-video.",
"default": false
}
},
"parameters_ui": {
"tflabcustomui_is_text2video": {
"ui:widget": "checkbox"
}
}
}
Loading
Loading