60fae37
1
2
3
4
5
6
7
8
9
10
11
import gradio as gr import gradio_molecule3d as Molecule3d import gradio_cofoldinginput as CofoldingInput with gr.Blocks() as blocks: gr.Markdown("# Boltz-1") inp = CofoldingInput(label="Input") out = gr.Molecule3D(label="Output") blocks.launch()