Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -111,7 +111,7 @@ h1 {
|
|
111 |
"""
|
112 |
|
113 |
with gr.Blocks(theme=gr.themes.Default(primary_hue="green"), css=css) as app:
|
114 |
-
gr.HTML("<center><h1>
|
115 |
|
116 |
with gr.Column(elem_id="app-container"):
|
117 |
with gr.Row():
|
@@ -119,7 +119,7 @@ with gr.Blocks(theme=gr.themes.Default(primary_hue="green"), css=css) as app:
|
|
119 |
with gr.Row():
|
120 |
text_prompt = gr.Textbox(
|
121 |
label="Prompt",
|
122 |
-
placeholder="
|
123 |
lines=2,
|
124 |
elem_id="prompt-text-input"
|
125 |
)
|
@@ -131,8 +131,8 @@ with gr.Blocks(theme=gr.themes.Default(primary_hue="green"), css=css) as app:
|
|
131 |
lines=3
|
132 |
)
|
133 |
with gr.Row():
|
134 |
-
width = gr.Slider(1024, label="Width", minimum=512, maximum=
|
135 |
-
height = gr.Slider(1024, label="Height", minimum=512, maximum=
|
136 |
with gr.Row():
|
137 |
steps = gr.Slider(35, label="Steps", minimum=10, maximum=100, step=1)
|
138 |
cfg = gr.Slider(7.0, label="CFG Scale", minimum=1.0, maximum=20.0, step=0.5)
|
|
|
111 |
"""
|
112 |
|
113 |
with gr.Blocks(theme=gr.themes.Default(primary_hue="green"), css=css) as app:
|
114 |
+
gr.HTML("<center><h1>BSP Dev Work</h1></center>")
|
115 |
|
116 |
with gr.Column(elem_id="app-container"):
|
117 |
with gr.Row():
|
|
|
119 |
with gr.Row():
|
120 |
text_prompt = gr.Textbox(
|
121 |
label="Prompt",
|
122 |
+
placeholder="Prompt",
|
123 |
lines=2,
|
124 |
elem_id="prompt-text-input"
|
125 |
)
|
|
|
131 |
lines=3
|
132 |
)
|
133 |
with gr.Row():
|
134 |
+
width = gr.Slider(1024, label="Width", minimum=512, maximum=2048, step=64)
|
135 |
+
height = gr.Slider(1024, label="Height", minimum=512, maximum=2048, step=64)
|
136 |
with gr.Row():
|
137 |
steps = gr.Slider(35, label="Steps", minimum=10, maximum=100, step=1)
|
138 |
cfg = gr.Slider(7.0, label="CFG Scale", minimum=1.0, maximum=20.0, step=0.5)
|