File size: 265 Bytes
60fae37
85ad568
 
60fae37
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
import gradio as gr
from gradio_molecule3d import Molecule3D
from gradio_cofoldinginput import CofoldingInput


with gr.Blocks() as blocks:
    gr.Markdown("# Boltz-1")
    inp = CofoldingInput(label="Input")
    out = gr.Molecule3D(label="Output")

blocks.launch()