Spaces:
Running
on
Zero
Running
on
Zero
Update app.py
Browse files
app.py
CHANGED
@@ -76,9 +76,15 @@ examples = [
|
|
76 |
|
77 |
# Gradio Interface
|
78 |
|
79 |
-
|
80 |
-
|
81 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
82 |
with gr.Group():
|
83 |
with gr.Row():
|
84 |
prompt = gr.Textbox(label='Enter Your Prompt(multilingual)', scale=6)
|
|
|
76 |
|
77 |
# Gradio Interface
|
78 |
|
79 |
+
css = """
|
80 |
+
footer {
|
81 |
+
visibility: hidden;
|
82 |
+
}
|
83 |
+
"""
|
84 |
+
|
85 |
+
|
86 |
+
with gr.Blocks(theme="Nymbo/Nymbo_Theme", css=css) as demo:
|
87 |
+
|
88 |
with gr.Group():
|
89 |
with gr.Row():
|
90 |
prompt = gr.Textbox(label='Enter Your Prompt(multilingual)', scale=6)
|