openfree commited on
Commit
ce30255
Β·
verified Β·
1 Parent(s): 82f4d99

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +52 -46
app.py CHANGED
@@ -627,7 +627,6 @@ def generate_section_video(prompt, preset, section_number=1, base_seed=171198, p
627
  raise gr.Error(f"μ„Ήμ…˜ {section_number} 생성 쀑 였λ₯˜: {str(e)}")
628
 
629
 
630
- # κ°œλ³„ μ„Ήμ…˜ ν”„λ‘¬ν”„νŠΈ 생성 ν•¨μˆ˜ μΆ”κ°€
631
  def generate_single_section_prompt(scenario, section_number):
632
  """κ°œλ³„ μ„Ήμ…˜μ— λŒ€ν•œ ν”„λ‘¬ν”„νŠΈ 생성"""
633
  section_descriptions = {
@@ -642,23 +641,35 @@ def generate_single_section_prompt(scenario, section_number):
642
  {"role": "system", "content": system_prompt_scenario},
643
  {"role": "user", "content": f"""
644
  λ‹€μŒ 슀크립트의 {section_number}번째 μ„Ήμ…˜({section_descriptions[section_number]})에 λŒ€ν•œ
645
- λ°°κ²½ μ˜μƒ ν”„λ‘¬ν”„νŠΈλ§Œμ„ μƒμ„±ν•΄μ£Όμ„Έμš”:
646
 
 
647
  {scenario}
648
 
649
- 직접적인 μ œν’ˆ λ¬˜μ‚¬λŠ” ν”Όν•˜κ³ , 슀크립트의 μ£Όμ œμ™€ 감성을 ν‘œν˜„ν•˜λŠ” 핡심 ν‚€μ›Œλ“œλ₯Ό λ°˜μ˜ν•œ λ°°κ²½ μ˜μƒμ— μ§‘μ€‘ν•΄μ£Όμ„Έμš”."""}
 
 
 
 
 
 
 
 
 
650
  ]
651
 
652
  try:
653
  response = client.chat.completions.create(
654
  model="gpt-4-1106-preview",
655
  messages=messages,
656
- max_tokens=500,
 
657
  )
658
- return response.choices[0].message.content.strip()
 
659
  except Exception as e:
660
- print(f"Error during prompt generation: {e}")
661
- return "Error occurred during prompt generation"
662
 
663
 
664
  # λΉ„λ””μ˜€ κ²°ν•© ν•¨μˆ˜ μΆ”κ°€
@@ -996,6 +1007,7 @@ with gr.Blocks(theme=gr.themes.Soft()) as iface:
996
 
997
 
998
  # Event handlers
 
999
  txt2vid_preset.change(
1000
  fn=preset_changed,
1001
  inputs=[txt2vid_preset],
@@ -1031,6 +1043,7 @@ with gr.Blocks(theme=gr.themes.Soft()) as iface:
1031
  queue=True,
1032
  )
1033
 
 
1034
  img2vid_preset.change(
1035
  fn=preset_changed,
1036
  inputs=[img2vid_preset],
@@ -1067,7 +1080,15 @@ with gr.Blocks(theme=gr.themes.Soft()) as iface:
1067
  queue=True,
1068
  )
1069
 
1070
- # Scenario tab event handlers
 
 
 
 
 
 
 
 
1071
  analyze_btn.click(
1072
  fn=analyze_scenario,
1073
  inputs=[scenario_input],
@@ -1077,45 +1098,38 @@ with gr.Blocks(theme=gr.themes.Soft()) as iface:
1077
  ]
1078
  )
1079
 
1080
- # μ„Ήμ…˜ 생성 이벀트 ν•Έλ“€λŸ¬
1081
- section1_generate.click(
1082
- fn=generate_section_video,
1083
- inputs=[section1_prompt, scenario_preset],
1084
- outputs=section1_video,
1085
- api_name=f"generate_section1"
1086
  )
1087
 
1088
- section2_generate.click(
1089
- fn=lambda p, pr: generate_section_video(p, pr, 2),
1090
- inputs=[section2_prompt, scenario_preset],
1091
- outputs=section2_video,
1092
- api_name=f"generate_section2"
1093
  )
1094
 
1095
- section3_generate.click(
1096
- fn=lambda p, pr: generate_section_video(p, pr, 3),
1097
- inputs=[section3_prompt, scenario_preset],
1098
- outputs=section3_video,
1099
- api_name=f"generate_section3"
1100
  )
1101
 
1102
- section4_generate.click(
1103
- fn=lambda p, pr: generate_section_video(p, pr, 4),
1104
- inputs=[section4_prompt, scenario_preset],
1105
- outputs=section4_video,
1106
- api_name=f"generate_section4"
1107
  )
1108
 
1109
- section5_generate.click(
1110
- fn=lambda p, pr: generate_section_video(p, pr, 5),
1111
- inputs=[section5_prompt, scenario_preset],
1112
- outputs=section5_video,
1113
- api_name=f"generate_section5"
1114
  )
1115
 
1116
-
1117
-
1118
- # μ„Ήμ…˜ 생성 이벀트 ν•Έλ“€λŸ¬
1119
  section1_generate.click(
1120
  fn=lambda p, pr: generate_section_video(p, pr, 1),
1121
  inputs=[section1_prompt, scenario_preset],
@@ -1146,8 +1160,7 @@ with gr.Blocks(theme=gr.themes.Soft()) as iface:
1146
  outputs=section5_video
1147
  )
1148
 
1149
-
1150
- # 이벀트 ν•Έλ“€λŸ¬ μΆ”κ°€
1151
  merge_videos_btn.click(
1152
  fn=merge_section_videos,
1153
  inputs=[
@@ -1159,13 +1172,6 @@ with gr.Blocks(theme=gr.themes.Soft()) as iface:
1159
  ],
1160
  outputs=merged_video_output
1161
  )
1162
-
1163
- # 슀크립트 생성 λ²„νŠΌ 이벀트 ν•Έλ“€λŸ¬
1164
- generate_script_btn.click(
1165
- fn=generate_script,
1166
- inputs=[script_topic],
1167
- outputs=[scenario_input]
1168
- )
1169
 
1170
  if __name__ == "__main__":
1171
  iface.queue(max_size=64, default_concurrency_limit=1, api_open=False).launch(
 
627
  raise gr.Error(f"μ„Ήμ…˜ {section_number} 생성 쀑 였λ₯˜: {str(e)}")
628
 
629
 
 
630
  def generate_single_section_prompt(scenario, section_number):
631
  """κ°œλ³„ μ„Ήμ…˜μ— λŒ€ν•œ ν”„λ‘¬ν”„νŠΈ 생성"""
632
  section_descriptions = {
 
641
  {"role": "system", "content": system_prompt_scenario},
642
  {"role": "user", "content": f"""
643
  λ‹€μŒ 슀크립트의 {section_number}번째 μ„Ήμ…˜({section_descriptions[section_number]})에 λŒ€ν•œ
644
+ λ°°κ²½ μ˜μƒ ν”„λ‘¬ν”„νŠΈλ₯Ό μƒμ„±ν•΄μ£Όμ„Έμš”.
645
 
646
+ 슀크립트:
647
  {scenario}
648
 
649
+ μ£Όμ˜μ‚¬ν•­:
650
+ 1. ν•΄λ‹Ή μ„Ήμ…˜μ˜ νŠΉμ„±({section_descriptions[section_number]})에 λ§žλŠ” λΆ„μœ„κΈ°μ™€ 톀을 λ°˜μ˜ν•˜μ„Έμš”.
651
+ 2. 직접적인 μ œν’ˆ/μ„œλΉ„μŠ€ λ¬˜μ‚¬λŠ” ν”Όν•˜κ³ , 감성적이고 μ€μœ μ μΈ λ°°κ²½ μ˜μƒμ— μ§‘μ€‘ν•˜μ„Έμš”.
652
+ 3. λ‹€μŒ ꡬ쑰λ₯Ό λ°˜λ“œμ‹œ ν¬ν•¨ν•˜μ„Έμš”:
653
+ - μ£Όμš” λ™μž‘μ„ λͺ…ν™•ν•œ ν•œ λ¬Έμž₯으둜 μ‹œμž‘
654
+ - ꡬ체적인 λ™μž‘κ³Ό 제슀처λ₯Ό μ‹œκ°„ μˆœμ„œλŒ€λ‘œ μ„€λͺ…
655
+ - λ°°κ²½κ³Ό ν™˜κ²½ μ„ΈλΆ€ 사항을 ꡬ체적으둜 포함
656
+ - 카메라 각도와 μ›€μ§μž„μ„ λͺ…μ‹œ
657
+ - μ‘°λͺ…κ³Ό 색상을 μžμ„Ένžˆ μ„€λͺ…
658
+ - λ³€ν™”λ‚˜ κ°‘μž‘μŠ€λŸ¬μš΄ 사건을 μžμ—°μŠ€λŸ½κ²Œ 포함"""}
659
  ]
660
 
661
  try:
662
  response = client.chat.completions.create(
663
  model="gpt-4-1106-preview",
664
  messages=messages,
665
+ max_tokens=1000, # 토큰 수 증가
666
+ temperature=0.7
667
  )
668
+ generated_prompt = response.choices[0].message.content.strip()
669
+ return f"{section_number}. {generated_prompt}"
670
  except Exception as e:
671
+ print(f"Error during prompt generation for section {section_number}: {e}")
672
+ return f"Error occurred during prompt generation for section {section_number}"
673
 
674
 
675
  # λΉ„λ””μ˜€ κ²°ν•© ν•¨μˆ˜ μΆ”κ°€
 
1007
 
1008
 
1009
  # Event handlers
1010
+ # Text to Video Tab handlers
1011
  txt2vid_preset.change(
1012
  fn=preset_changed,
1013
  inputs=[txt2vid_preset],
 
1043
  queue=True,
1044
  )
1045
 
1046
+ # Image to Video Tab handlers
1047
  img2vid_preset.change(
1048
  fn=preset_changed,
1049
  inputs=[img2vid_preset],
 
1080
  queue=True,
1081
  )
1082
 
1083
+ # Scenario Tab handlers
1084
+ # 슀크립트 생성 λ²„νŠΌ ν•Έλ“€λŸ¬
1085
+ generate_script_btn.click(
1086
+ fn=generate_script,
1087
+ inputs=[script_topic],
1088
+ outputs=[scenario_input]
1089
+ )
1090
+
1091
+ # μ‹œλ‚˜λ¦¬μ˜€ 뢄석 λ²„νŠΌ ν•Έλ“€λŸ¬
1092
  analyze_btn.click(
1093
  fn=analyze_scenario,
1094
  inputs=[scenario_input],
 
1098
  ]
1099
  )
1100
 
1101
+ # μ„Ήμ…˜λ³„ ν”„λ‘¬ν”„νŠΈ μž¬μƒμ„± ν•Έλ“€λŸ¬
1102
+ section1_regenerate.click(
1103
+ fn=lambda x: generate_single_section_prompt(x, 1),
1104
+ inputs=[scenario_input],
1105
+ outputs=section1_prompt
 
1106
  )
1107
 
1108
+ section2_regenerate.click(
1109
+ fn=lambda x: generate_single_section_prompt(x, 2),
1110
+ inputs=[scenario_input],
1111
+ outputs=section2_prompt
 
1112
  )
1113
 
1114
+ section3_regenerate.click(
1115
+ fn=lambda x: generate_single_section_prompt(x, 3),
1116
+ inputs=[scenario_input],
1117
+ outputs=section3_prompt
 
1118
  )
1119
 
1120
+ section4_regenerate.click(
1121
+ fn=lambda x: generate_single_section_prompt(x, 4),
1122
+ inputs=[scenario_input],
1123
+ outputs=section4_prompt
 
1124
  )
1125
 
1126
+ section5_regenerate.click(
1127
+ fn=lambda x: generate_single_section_prompt(x, 5),
1128
+ inputs=[scenario_input],
1129
+ outputs=section5_prompt
 
1130
  )
1131
 
1132
+ # μ„Ήμ…˜λ³„ λΉ„λ””μ˜€ 생성 ν•Έλ“€λŸ¬
 
 
1133
  section1_generate.click(
1134
  fn=lambda p, pr: generate_section_video(p, pr, 1),
1135
  inputs=[section1_prompt, scenario_preset],
 
1160
  outputs=section5_video
1161
  )
1162
 
1163
+ # 톡합 μ˜μƒ 생성 ν•Έλ“€λŸ¬
 
1164
  merge_videos_btn.click(
1165
  fn=merge_section_videos,
1166
  inputs=[
 
1172
  ],
1173
  outputs=merged_video_output
1174
  )
 
 
 
 
 
 
 
1175
 
1176
  if __name__ == "__main__":
1177
  iface.queue(max_size=64, default_concurrency_limit=1, api_open=False).launch(