Spaces:
Running
Running
Create app.py
Browse files
app.py
ADDED
@@ -0,0 +1,14 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
import gradio as gr
|
2 |
+
|
3 |
+
def generate_video(prompt):
|
4 |
+
return "Coming soon: AI-generated video for - " + prompt
|
5 |
+
|
6 |
+
iface = gr.Interface(
|
7 |
+
fn=generate_video,
|
8 |
+
inputs="text",
|
9 |
+
outputs="text",
|
10 |
+
title="AI Video Generator",
|
11 |
+
description="Enter a prompt to generate AI video (Coming Soon)."
|
12 |
+
)
|
13 |
+
|
14 |
+
iface.launch()
|