Spaces:
Running
Running
Update app.py
Browse files
app.py
CHANGED
@@ -561,7 +561,42 @@ def generate_section_video(prompt, preset, section_number=1, base_seed=171198, p
|
|
561 |
seed=section_seed, # μΉμ
λ³ κ³ μ SEED μ¬μ©
|
562 |
progress=progress
|
563 |
)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
564 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
565 |
# Gradio Interface Definition
|
566 |
with gr.Blocks(theme=gr.themes.Soft()) as iface:
|
567 |
with gr.Tabs():
|
@@ -667,7 +702,8 @@ with gr.Blocks(theme=gr.themes.Soft()) as iface:
|
|
667 |
with gr.Column():
|
668 |
img2vid_output = gr.Video(label="μμ±λ λΉλμ€")
|
669 |
|
670 |
-
|
|
|
671 |
with gr.TabItem("μλ리μ€λ‘ λΉλμ€ λ§λ€κΈ°(μνΌ)"):
|
672 |
with gr.Row():
|
673 |
with gr.Column(scale=1):
|
@@ -691,7 +727,9 @@ with gr.Blocks(theme=gr.themes.Soft()) as iface:
|
|
691 |
label="1. λ°°κ²½ λ° νμμ±",
|
692 |
lines=4
|
693 |
)
|
694 |
-
|
|
|
|
|
695 |
section1_video = gr.Video(label="μΉμ
1 μμ")
|
696 |
|
697 |
# μΉμ
2
|
@@ -700,7 +738,9 @@ with gr.Blocks(theme=gr.themes.Soft()) as iface:
|
|
700 |
label="2. λ¬Έμ μ κΈ° λ° ν₯λ―Έ μ λ°",
|
701 |
lines=4
|
702 |
)
|
703 |
-
|
|
|
|
|
704 |
section2_video = gr.Video(label="μΉμ
2 μμ")
|
705 |
|
706 |
with gr.Row():
|
@@ -710,7 +750,9 @@ with gr.Blocks(theme=gr.themes.Soft()) as iface:
|
|
710 |
label="3. ν΄κ²°μ±
μ μ",
|
711 |
lines=4
|
712 |
)
|
713 |
-
|
|
|
|
|
714 |
section3_video = gr.Video(label="μΉμ
3 μμ")
|
715 |
|
716 |
# μΉμ
4
|
@@ -719,7 +761,9 @@ with gr.Blocks(theme=gr.themes.Soft()) as iface:
|
|
719 |
label="4. λ³Έλ‘ ",
|
720 |
lines=4
|
721 |
)
|
722 |
-
|
|
|
|
|
723 |
section4_video = gr.Video(label="μΉμ
4 μμ")
|
724 |
|
725 |
with gr.Row():
|
@@ -729,117 +773,72 @@ with gr.Blocks(theme=gr.themes.Soft()) as iface:
|
|
729 |
label="5. κ²°λ‘ λ° κ°μ‘°",
|
730 |
lines=4
|
731 |
)
|
732 |
-
|
|
|
|
|
733 |
section5_video = gr.Video(label="μΉμ
5 μμ")
|
734 |
|
735 |
-
# Event handlers
|
736 |
-
|
737 |
-
fn=preset_changed,
|
738 |
-
inputs=[txt2vid_preset],
|
739 |
-
outputs=[
|
740 |
-
txt2vid_current_height,
|
741 |
-
txt2vid_current_width,
|
742 |
-
txt2vid_current_num_frames,
|
743 |
-
*txt2vid_advanced[3:]
|
744 |
-
]
|
745 |
-
)
|
746 |
-
|
747 |
-
txt2vid_enhance_toggle.change(
|
748 |
-
fn=update_prompt_t2v,
|
749 |
-
inputs=[txt2vid_prompt, txt2vid_enhance_toggle],
|
750 |
-
outputs=txt2vid_prompt
|
751 |
-
)
|
752 |
|
753 |
-
|
754 |
-
|
755 |
-
|
756 |
-
|
757 |
-
|
758 |
-
txt2vid_negative_prompt,
|
759 |
-
txt2vid_frame_rate,
|
760 |
-
*txt2vid_advanced[:3],
|
761 |
-
txt2vid_current_height,
|
762 |
-
txt2vid_current_width,
|
763 |
-
txt2vid_current_num_frames,
|
764 |
-
],
|
765 |
-
outputs=txt2vid_output,
|
766 |
-
concurrency_limit=1,
|
767 |
-
concurrency_id="generate_video",
|
768 |
-
queue=True,
|
769 |
)
|
770 |
-
|
771 |
-
|
772 |
-
fn=
|
773 |
-
inputs=[
|
774 |
-
outputs=
|
775 |
-
img2vid_current_height,
|
776 |
-
img2vid_current_width,
|
777 |
-
img2vid_current_num_frames,
|
778 |
-
*img2vid_advanced[3:]
|
779 |
-
]
|
780 |
)
|
781 |
-
|
782 |
-
|
783 |
-
fn=
|
784 |
-
inputs=[
|
785 |
-
outputs=
|
786 |
)
|
787 |
-
|
788 |
-
|
789 |
-
fn=
|
790 |
-
inputs=[
|
791 |
-
|
792 |
-
img2vid_prompt,
|
793 |
-
img2vid_enhance_toggle,
|
794 |
-
img2vid_negative_prompt,
|
795 |
-
img2vid_frame_rate,
|
796 |
-
*img2vid_advanced[:3],
|
797 |
-
img2vid_current_height,
|
798 |
-
img2vid_current_width,
|
799 |
-
img2vid_current_num_frames,
|
800 |
-
],
|
801 |
-
outputs=img2vid_output,
|
802 |
-
concurrency_limit=1,
|
803 |
-
concurrency_id="generate_video",
|
804 |
-
queue=True,
|
805 |
)
|
806 |
-
|
807 |
-
|
808 |
-
|
809 |
-
fn=analyze_scenario,
|
810 |
inputs=[scenario_input],
|
811 |
-
outputs=
|
812 |
-
section1_prompt, section2_prompt, section3_prompt,
|
813 |
-
section4_prompt, section5_prompt
|
814 |
-
]
|
815 |
)
|
816 |
|
|
|
817 |
section1_generate.click(
|
818 |
-
fn=generate_section_video,
|
819 |
inputs=[section1_prompt, scenario_preset],
|
820 |
outputs=section1_video
|
821 |
)
|
822 |
|
823 |
section2_generate.click(
|
824 |
-
fn=generate_section_video,
|
825 |
inputs=[section2_prompt, scenario_preset],
|
826 |
outputs=section2_video
|
827 |
)
|
828 |
|
829 |
section3_generate.click(
|
830 |
-
fn=generate_section_video,
|
831 |
inputs=[section3_prompt, scenario_preset],
|
832 |
outputs=section3_video
|
833 |
)
|
834 |
|
835 |
section4_generate.click(
|
836 |
-
fn=generate_section_video,
|
837 |
inputs=[section4_prompt, scenario_preset],
|
838 |
outputs=section4_video
|
839 |
)
|
840 |
|
841 |
section5_generate.click(
|
842 |
-
fn=generate_section_video,
|
843 |
inputs=[section5_prompt, scenario_preset],
|
844 |
outputs=section5_video
|
845 |
)
|
|
|
561 |
seed=section_seed, # μΉμ
λ³ κ³ μ SEED μ¬μ©
|
562 |
progress=progress
|
563 |
)
|
564 |
+
|
565 |
+
|
566 |
+
# κ°λ³ μΉμ
ν둬ννΈ μμ± ν¨μ μΆκ°
|
567 |
+
def generate_single_section_prompt(scenario, section_number):
|
568 |
+
"""κ°λ³ μΉμ
μ λν ν둬ννΈ μμ±"""
|
569 |
+
section_descriptions = {
|
570 |
+
1: "λ°°κ²½ λ° νμμ±: μ£Όμ μ μ λ°μ μΈ λΆμκΈ°λ₯Ό νννλ λ°°κ²½ μ¬",
|
571 |
+
2: "λ¬Έμ μ κΈ°: κΈ΄μ₯κ°μ΄λ κ°λ±μ μμνλ λΆμκΈ° μλ λ°°κ²½",
|
572 |
+
3: "ν΄κ²°μ±
μ μ: ν¬λ§μ μ΄κ³ λ°μ ν€μ λ°°κ²½ μ ν",
|
573 |
+
4: "λ³Έλ‘ : μμ κ° μκ³ μ λ’°λλ₯Ό λμ΄λ λ°°κ²½",
|
574 |
+
5: "κ²°λ‘ : μν©νΈ μλ λ§λ¬΄λ¦¬λ₯Ό μν μλμ μΈ λ°°κ²½"
|
575 |
+
}
|
576 |
|
577 |
+
messages = [
|
578 |
+
{"role": "system", "content": system_prompt_scenario},
|
579 |
+
{"role": "user", "content": f"""
|
580 |
+
λ€μ μ€ν¬λ¦½νΈμ {section_number}λ²μ§Έ μΉμ
({section_descriptions[section_number]})μ λν
|
581 |
+
λ°°κ²½ μμ ν둬ννΈλ§μ μμ±ν΄μ£ΌμΈμ:
|
582 |
+
|
583 |
+
{scenario}
|
584 |
+
|
585 |
+
μ§μ μ μΈ μ ν λ¬μ¬λ νΌνκ³ , μ€ν¬λ¦½νΈμ κ°μ±μ νννλ λ°°κ²½ μμμ μ§μ€ν΄μ£ΌμΈμ."""}
|
586 |
+
]
|
587 |
+
|
588 |
+
try:
|
589 |
+
response = client.chat.completions.create(
|
590 |
+
model="gpt-4-1106-preview",
|
591 |
+
messages=messages,
|
592 |
+
max_tokens=500,
|
593 |
+
)
|
594 |
+
return response.choices[0].message.content.strip()
|
595 |
+
except Exception as e:
|
596 |
+
print(f"Error during prompt generation: {e}")
|
597 |
+
return "Error occurred during prompt generation"
|
598 |
+
|
599 |
+
|
600 |
# Gradio Interface Definition
|
601 |
with gr.Blocks(theme=gr.themes.Soft()) as iface:
|
602 |
with gr.Tabs():
|
|
|
702 |
with gr.Column():
|
703 |
img2vid_output = gr.Video(label="μμ±λ λΉλμ€")
|
704 |
|
705 |
+
|
706 |
+
# Scenario to Video Tab (Modified)
|
707 |
with gr.TabItem("μλ리μ€λ‘ λΉλμ€ λ§λ€κΈ°(μνΌ)"):
|
708 |
with gr.Row():
|
709 |
with gr.Column(scale=1):
|
|
|
727 |
label="1. λ°°κ²½ λ° νμμ±",
|
728 |
lines=4
|
729 |
)
|
730 |
+
with gr.Row():
|
731 |
+
section1_regenerate = gr.Button("π ν둬ννΈ μλ‘ μμ±")
|
732 |
+
section1_generate = gr.Button("μμ±")
|
733 |
section1_video = gr.Video(label="μΉμ
1 μμ")
|
734 |
|
735 |
# μΉμ
2
|
|
|
738 |
label="2. λ¬Έμ μ κΈ° λ° ν₯λ―Έ μ λ°",
|
739 |
lines=4
|
740 |
)
|
741 |
+
with gr.Row():
|
742 |
+
section2_regenerate = gr.Button("π ν둬ννΈ μλ‘ μμ±")
|
743 |
+
section2_generate = gr.Button("μμ±")
|
744 |
section2_video = gr.Video(label="μΉμ
2 μμ")
|
745 |
|
746 |
with gr.Row():
|
|
|
750 |
label="3. ν΄κ²°μ±
μ μ",
|
751 |
lines=4
|
752 |
)
|
753 |
+
with gr.Row():
|
754 |
+
section3_regenerate = gr.Button("π ν둬ννΈ μλ‘ μμ±")
|
755 |
+
section3_generate = gr.Button("μμ±")
|
756 |
section3_video = gr.Video(label="μΉμ
3 μμ")
|
757 |
|
758 |
# μΉμ
4
|
|
|
761 |
label="4. λ³Έλ‘ ",
|
762 |
lines=4
|
763 |
)
|
764 |
+
with gr.Row():
|
765 |
+
section4_regenerate = gr.Button("π ν둬ννΈ μλ‘ μμ±")
|
766 |
+
section4_generate = gr.Button("μμ±")
|
767 |
section4_video = gr.Video(label="μΉμ
4 μμ")
|
768 |
|
769 |
with gr.Row():
|
|
|
773 |
label="5. κ²°λ‘ λ° κ°μ‘°",
|
774 |
lines=4
|
775 |
)
|
776 |
+
with gr.Row():
|
777 |
+
section5_regenerate = gr.Button("π ν둬ννΈ μλ‘ μμ±")
|
778 |
+
section5_generate = gr.Button("μμ±")
|
779 |
section5_video = gr.Video(label="μΉμ
5 μμ")
|
780 |
|
781 |
+
# Event handlers (κΈ°μ‘΄ νΈλ€λ¬λ€)
|
782 |
+
[μ΄μ μ΄λ²€νΈ νΈλ€λ¬λ€κ³Ό λμΌ...]
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
783 |
|
784 |
+
# μλ‘μ΄ μ΄λ²€νΈ νΈλ€λ¬ μΆκ°
|
785 |
+
section1_regenerate.click(
|
786 |
+
fn=lambda x: generate_single_section_prompt(x, 1),
|
787 |
+
inputs=[scenario_input],
|
788 |
+
outputs=section1_prompt
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
789 |
)
|
790 |
+
|
791 |
+
section2_regenerate.click(
|
792 |
+
fn=lambda x: generate_single_section_prompt(x, 2),
|
793 |
+
inputs=[scenario_input],
|
794 |
+
outputs=section2_prompt
|
|
|
|
|
|
|
|
|
|
|
795 |
)
|
796 |
+
|
797 |
+
section3_regenerate.click(
|
798 |
+
fn=lambda x: generate_single_section_prompt(x, 3),
|
799 |
+
inputs=[scenario_input],
|
800 |
+
outputs=section3_prompt
|
801 |
)
|
802 |
+
|
803 |
+
section4_regenerate.click(
|
804 |
+
fn=lambda x: generate_single_section_prompt(x, 4),
|
805 |
+
inputs=[scenario_input],
|
806 |
+
outputs=section4_prompt
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
807 |
)
|
808 |
+
|
809 |
+
section5_regenerate.click(
|
810 |
+
fn=lambda x: generate_single_section_prompt(x, 5),
|
|
|
811 |
inputs=[scenario_input],
|
812 |
+
outputs=section5_prompt
|
|
|
|
|
|
|
813 |
)
|
814 |
|
815 |
+
# κΈ°μ‘΄ μΉμ
μμ± μ΄λ²€νΈ νΈλ€λ¬λ€
|
816 |
section1_generate.click(
|
817 |
+
fn=lambda p, pr: generate_section_video(p, pr, 1),
|
818 |
inputs=[section1_prompt, scenario_preset],
|
819 |
outputs=section1_video
|
820 |
)
|
821 |
|
822 |
section2_generate.click(
|
823 |
+
fn=lambda p, pr: generate_section_video(p, pr, 2),
|
824 |
inputs=[section2_prompt, scenario_preset],
|
825 |
outputs=section2_video
|
826 |
)
|
827 |
|
828 |
section3_generate.click(
|
829 |
+
fn=lambda p, pr: generate_section_video(p, pr, 3),
|
830 |
inputs=[section3_prompt, scenario_preset],
|
831 |
outputs=section3_video
|
832 |
)
|
833 |
|
834 |
section4_generate.click(
|
835 |
+
fn=lambda p, pr: generate_section_video(p, pr, 4),
|
836 |
inputs=[section4_prompt, scenario_preset],
|
837 |
outputs=section4_video
|
838 |
)
|
839 |
|
840 |
section5_generate.click(
|
841 |
+
fn=lambda p, pr: generate_section_video(p, pr, 5),
|
842 |
inputs=[section5_prompt, scenario_preset],
|
843 |
outputs=section5_video
|
844 |
)
|