masbejo99's picture
Update app.py
4059e05
raw
history blame
277 Bytes
import gradio as gr
def generate_video(prompt):
return "spring.mp4"
interface = gr.Interface(generate_video, gr.inputs.Textbox(placeholder="portrait of Gypsy woman, big eyes, highly detailed, masterpiece, realistic, light"), gr.outputs.Video())
interface.launch()