File size: 211 Bytes
c116b75
c84140c
5e3b5a8
 
 
 
 
245dc0a
c116b75
1
2
3
4
5
6
7
8
9
import gradio as gr

with open("CTXGen.md", "r") as f:
    description = f.read()

with gr.Blocks(title="🏹CTXGen", css=".markdown { text-align: center; }") as demo:
    gr.Markdown(description)

demo.launch()