hysts's picture
hysts HF Staff
Update
bad7dd1
raw
history blame contribute delete
411 Bytes
#!/usr/bin/env python
import gradio as gr
markdown = """
The quick brown fox jumps over the lazy dog. The quick brown fox jumps over
the lazy dog.
The quick brown fox jumps over the lazy dog. The quick brown fox jumps over the lazy dog.
The quick brown fox jumps over the lazy dog. The quick brown fox jumps over\
the lazy dog.
"""
with gr.Blocks() as demo:
gr.Markdown(markdown)
demo.queue().launch()