qwen3_test / app.py
hsuwill000's picture
Update app.py
63924d6 verified
raw
history blame
416 Bytes
import gradio as gr
import time
def generate_markdown():
response = ""
for word in ["Hello", "World", "Gradio", "Markdown", "!"]:
response += word + " "
time.sleep(0.5)
yield response
with gr.Blocks() as demo:
markdown_output = gr.Markdown(label="ε›žζ‡‰")
button = gr.Button("η”Ÿζˆ")
button.click(generate_markdown, outputs=markdown_output)
demo.queue()
demo.launch()