Manasa1 commited on
Commit
1b406ee
·
verified ·
1 Parent(s): 22c8d3b

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -89,7 +89,7 @@ def generate_kids_animation_with_music(theme, output_video_file="kids_animation.
89
  # Gradio interface to bring everything together
90
  def generate_comedy_and_animation(prompt):
91
  # Comedy Script Generation
92
- script = generate_comedy_script(prompt)
93
  audio_file = text_to_speech(script)
94
  video_file = generate_animation(script)
95
 
 
89
  # Gradio interface to bring everything together
90
  def generate_comedy_and_animation(prompt):
91
  # Comedy Script Generation
92
+ script = script_generator(prompt)
93
  audio_file = text_to_speech(script)
94
  video_file = generate_animation(script)
95