Skip to content

Commit

Permalink
Merge pull request #204 from TNG/chore/release-adjustments
Browse files Browse the repository at this point in the history
Implement some more adjustments for upcoming release
  • Loading branch information
Nuullll authored Mar 1, 2025
2 parents 708869f + 04e282c commit e345eea
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 3 deletions.
4 changes: 4 additions & 0 deletions WebUI/build/build-config.json
Original file line number Diff line number Diff line change
Expand Up @@ -83,6 +83,10 @@
{
"from": "external/service/static/assets/",
"to": "service/static/assets/"
},
{
"from": "../3rdpartynoticeslicenses.txt",
"to": "3rdpartynoticeslicenses.txt"
}
],
"productName": "AI Playground",
Expand Down
4 changes: 2 additions & 2 deletions WebUI/external/workflows/Video.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "Video",
"tags": ["Video", "high-vram"],
"name": "Txt To Video",
"tags": ["LTX Video", "high-vram"],
"backend": "comfyui",
"comfyUIRequirements": {
"customNodes": [
Expand Down
1 change: 1 addition & 0 deletions WebUI/src/assets/js/store/models.ts
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,7 @@ const predefinedModels: Omit<Model, 'downloaded'>[] = [
{ 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(
Expand Down
2 changes: 1 addition & 1 deletion WebUI/src/components/ui/slider/ResolutionPicker.vue
Original file line number Diff line number Diff line change
Expand Up @@ -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 },
Expand Down

0 comments on commit e345eea

Please sign in to comment.