| import gradio as gr | |
| CONTENT = """ | |
| # BotaBio | |
| Open research artifacts, datasets, and evaluation workflows for biological protocol representation and computational biology. | |
| [BPL-EVAL Dataset](https://huggingface.co/datasets/BotaBio/BPL-EVAL) | |
| ## Featured Resources | |
| - **BPL-EVAL**: paper-facing evaluation package with protocol inputs, BPL outputs, generated variants, comparison outputs, figures, and reproducibility scripts. | |
| """ | |
| with gr.Blocks(title="BotaBio") as demo: | |
| gr.Markdown(CONTENT) | |
| if __name__ == "__main__": | |
| demo.launch() | |