From 19b990be67ad7ee7e9750813c0a00b2320076415 Mon Sep 17 00:00:00 2001 From: Markus Schuettler Date: Fri, 28 Feb 2025 12:31:05 +0100 Subject: [PATCH 1/3] chore: add tinyllama Signed-off-by: Markus Schuettler --- WebUI/src/assets/js/store/models.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/WebUI/src/assets/js/store/models.ts b/WebUI/src/assets/js/store/models.ts index 4fe56bab..06ece417 100644 --- a/WebUI/src/assets/js/store/models.ts +++ b/WebUI/src/assets/js/store/models.ts @@ -47,6 +47,7 @@ const predefinedModels: Omit[] = [ { name: 'OpenVINO/Phi-3.5-mini-instruct-int4-ov', type: 'openVINO', default: true }, { name: 'OpenVINO/Phi-3-mini-4k-instruct-int4-ov', type: 'openVINO', default: false }, { name: 'OpenVINO/Mistral-7B-Instruct-v0.2-int4-ov', type: 'openVINO', default: false }, + { name: 'OpenVINO/TinyLlama-1.1B-Chat-v1.0-int4-ov', type: 'openVINO', default: false }, ] export const useModels = defineStore( From 8fd42c4325266154716161ed7784d4b2f76f8ad8 Mon Sep 17 00:00:00 2001 From: Markus Schuettler Date: Fri, 28 Feb 2025 12:34:04 +0100 Subject: [PATCH 2/3] chore: adjust name and tag of video workflow Signed-off-by: Markus Schuettler --- WebUI/external/workflows/Video.json | 4 ++-- WebUI/src/components/ui/slider/ResolutionPicker.vue | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/WebUI/external/workflows/Video.json b/WebUI/external/workflows/Video.json index 1e57cd9d..fa09e921 100644 --- a/WebUI/external/workflows/Video.json +++ b/WebUI/external/workflows/Video.json @@ -1,6 +1,6 @@ { - "name": "Video", - "tags": ["Video", "high-vram"], + "name": "Txt To Video", + "tags": ["LTX Video", "high-vram"], "backend": "comfyui", "comfyUIRequirements": { "customNodes": [ diff --git a/WebUI/src/components/ui/slider/ResolutionPicker.vue b/WebUI/src/components/ui/slider/ResolutionPicker.vue index f0617f15..6b5e8ed3 100644 --- a/WebUI/src/components/ui/slider/ResolutionPicker.vue +++ b/WebUI/src/components/ui/slider/ResolutionPicker.vue @@ -28,7 +28,7 @@ const megaPixelsOptions = computed(() => { { label: '0.25', totalPixels: 512 * 512 }, { label: '0.5', totalPixels: 704 * 704 }, ] - } else if (imageGeneration.activeWorkflow.tags.includes('Video')) { + } else if (imageGeneration.activeWorkflow.tags.includes('LTX Video')) { return [ { label: '0.1', totalPixels: 320 * 320 }, { label: '0.25', totalPixels: 512 * 512 }, From 04e282c103a687d9d30324bf769daead34168339 Mon Sep 17 00:00:00 2001 From: Markus Schuettler Date: Fri, 28 Feb 2025 17:52:35 +0100 Subject: [PATCH 3/3] fix: add third party notices to bundle Signed-off-by: Markus Schuettler --- WebUI/build/build-config.json | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/WebUI/build/build-config.json b/WebUI/build/build-config.json index 9fbbb997..67efbfff 100644 --- a/WebUI/build/build-config.json +++ b/WebUI/build/build-config.json @@ -83,6 +83,10 @@ { "from": "external/service/static/assets/", "to": "service/static/assets/" + }, + { + "from": "../3rdpartynoticeslicenses.txt", + "to": "3rdpartynoticeslicenses.txt" } ], "productName": "AI Playground",