File size: 187 Bytes
c8eb842
 
c6595fc
 
 
c8eb842
c6595fc
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
import gradio as gr

MARKDOWN = """# TRL jobs
Start typing below to see the output.
"""

with gr.Blocks() as demo:
    gr.Markdown(MARKDOWN)

if __name__ == "__main__":
    demo.launch()