Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -68,8 +68,11 @@ class Model3d_generater:
|
|
68 |
def interface(self):
|
69 |
with gr.Blocks(css=""".gradio-container {background: rgb(157,228,255);
|
70 |
background: radial-gradient(circle, rgba(157,228,255,1) 0%, rgba(18,115,106,1) 100%);}""") as demo:
|
|
|
|
|
|
|
71 |
with gr.Row():
|
72 |
-
prompt=gr.Textbox("Prompt")
|
73 |
|
74 |
with gr.Row():
|
75 |
output=gr.Model3D()
|
|
|
68 |
def interface(self):
|
69 |
with gr.Blocks(css=""".gradio-container {background: rgb(157,228,255);
|
70 |
background: radial-gradient(circle, rgba(157,228,255,1) 0%, rgba(18,115,106,1) 100%);}""") as demo:
|
71 |
+
gr.HTML("""
|
72 |
+
<center><h1 style="color:#fff">3d Model Generater</h1></center>""")
|
73 |
+
|
74 |
with gr.Row():
|
75 |
+
prompt=gr.Textbox(label="Prompt")
|
76 |
|
77 |
with gr.Row():
|
78 |
output=gr.Model3D()
|