simonduerr commited on
Commit
60fae37
·
verified ·
1 Parent(s): b3588a0

Create app.py

Browse files
Files changed (1) hide show
  1. app.py +11 -0
app.py ADDED
@@ -0,0 +1,11 @@
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import gradio as gr
2
+ import gradio_molecule3d as Molecule3d
3
+ import gradio_cofoldinginput as CofoldingInput
4
+
5
+
6
+ with gr.Blocks() as blocks:
7
+ gr.Markdown("# Boltz-1")
8
+ inp = CofoldingInput(label="Input")
9
+ out = gr.Molecule3D(label="Output")
10
+
11
+ blocks.launch()