simonduerr's picture
Update app.py
3e3b943 verified
raw
history blame contribute delete
578 Bytes
import gradio as gr
from gradio_molecule2d import molecule2d
example = molecule2d().example_value()
#demo = gr.Interface(
# lambda x:x,
# molecule2d(), # interactive version of your component
# molecule2d(), # static version of your component
# # examples=[[example]], # uncomment this line to view the "example version" of your component
#)
with gr.Blocks() as demo:
inp = molecule2d(label="SMILES Input")
out = molecule2d(label="Output")
btn = gr.Button("Run")
btn.click(lambda x:x, inp, out)
if __name__ == "__main__":
demo.launch()