ltx-conditioned prototype

Signed-off-by: Vladimir Mandic <mandic00@live.com>
This commit is contained in:
Vladimir Mandic
2025-07-09 18:11:51 -04:00
parent feca1c653f
commit 3f5ab15f64
11 changed files with 438 additions and 12 deletions
+10
View File
@@ -273,6 +273,15 @@ function submit_framepack(...args) {
return args;
}
function submit_ltx(...args) {
const id = randomId();
log('submitFramepack', id);
requestProgress(id, null, null);
window.submit_state = '';
args[0] = id;
return args;
}
function submit_video_wrapper(...args) {
const modernEl = gradioApp().querySelector('.video_output.fade-in');
let id = modernEl ? modernEl.id : args[0];
@@ -280,6 +289,7 @@ function submit_video_wrapper(...args) {
log('submitVideoWrapper', id);
const btn = gradioApp().getElementById(`${id}_generate_btn`);
if (btn) btn.click();
else console.log('submit_video_wrapper: no button found', id);
}
function submit_postprocessing(...args) {