Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -79,9 +79,21 @@ def run_inference(model_name, prompt_text):
|
|
79 |
|
80 |
def main():
|
81 |
with gr.Blocks() as demo:
|
82 |
-
gr.
|
83 |
-
|
84 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
85 |
with gr.Row():
|
86 |
with gr.Column(scale=1):
|
87 |
model_dropdown = gr.Dropdown(
|
|
|
79 |
|
80 |
def main():
|
81 |
with gr.Blocks() as demo:
|
82 |
+
gr.HTML(
|
83 |
+
"""
|
84 |
+
<h1 style='text-align: center'>
|
85 |
+
Video Diffusion WebUI
|
86 |
+
</h1>
|
87 |
+
"""
|
88 |
+
)
|
89 |
+
gr.HTML(
|
90 |
+
"""
|
91 |
+
<h3 style='text-align: center'>
|
92 |
+
Follow me for more!
|
93 |
+
<a href='https://twitter.com/kadirnar_ai' target='_blank'>Twitter</a> | <a href='https://github.com/kadirnar' target='_blank'>Github</a> | <a href='https://www.linkedin.com/in/kadir-nar/' target='_blank'>Linkedin</a>
|
94 |
+
</h3>
|
95 |
+
"""
|
96 |
+
)
|
97 |
with gr.Row():
|
98 |
with gr.Column(scale=1):
|
99 |
model_dropdown = gr.Dropdown(
|