Spaces:
Sleeping
Sleeping
| #!/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() | |