CreoPep / app.py
oucgc1996's picture
Update app.py
5e3b5a8 verified
raw
history blame contribute delete
211 Bytes
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()