Spaces:
Running
Running
Update app.py
Browse files
app.py
CHANGED
@@ -13,8 +13,8 @@ example = molecule2d().example_value()
|
|
13 |
#)
|
14 |
|
15 |
with gr.Blocks() as demo:
|
16 |
-
inp = molecule2d()
|
17 |
-
out = molecule2d()
|
18 |
btn = gr.Button("Run")
|
19 |
btn.click(lambda x:x, inp, out)
|
20 |
|
|
|
13 |
#)
|
14 |
|
15 |
with gr.Blocks() as demo:
|
16 |
+
inp = molecule2d(label="SMILES Input")
|
17 |
+
out = molecule2d(label="Output")
|
18 |
btn = gr.Button("Run")
|
19 |
btn.click(lambda x:x, inp, out)
|
20 |
|