Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -349,9 +349,13 @@ with gr.Blocks(theme=theme, css=css) as demo:
|
|
349 |
placeholder="uncommon word like p3rs0n or trtcrd, or sentence like 'in the style of CNSTLL'",
|
350 |
interactive=True,
|
351 |
)
|
352 |
-
|
353 |
-
|
354 |
-
|
|
|
|
|
|
|
|
|
355 |
with gr.Group(visible=True) as image_upload:
|
356 |
with gr.Row():
|
357 |
images = gr.File(
|
|
|
349 |
placeholder="uncommon word like p3rs0n or trtcrd, or sentence like 'in the style of CNSTLL'",
|
350 |
interactive=True,
|
351 |
)
|
352 |
+
|
353 |
+
which_model = gr.Radio(
|
354 |
+
["[dev] (high quality model)"],
|
355 |
+
label="Base model",
|
356 |
+
value="[dev] (high quality model)"
|
357 |
+
)
|
358 |
+
|
359 |
with gr.Group(visible=True) as image_upload:
|
360 |
with gr.Row():
|
361 |
images = gr.File(
|