File size: 547 Bytes
88fe3c2
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
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()