Spaces:
Running on Zero
Running on Zero
Create my app
Browse files
my app
ADDED
|
@@ -0,0 +1,11 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
import gradio as gr
|
| 2 |
+
|
| 3 |
+
# Hum Hugging Face ka direct interface use karenge jo 100% chalta hai
|
| 4 |
+
with gr.Blocks() as demo:
|
| 5 |
+
gr.Markdown("# 🎬 Meri AI Video App")
|
| 6 |
+
gr.Markdown("Neechay maujood box mein apna idea likhein aur video banayen.")
|
| 7 |
+
|
| 8 |
+
# Ye interface direct Hugging Face ke official video model se connect hoga
|
| 9 |
+
gr.load("models/Wan-Video/Wan2.1-T2V-14B-8P", provider="hf-inference")
|
| 10 |
+
|
| 11 |
+
demo.launch()
|