mirror of
https://github.com/gradio-app/gradio.git
synced 2024-11-27 01:40:20 +08:00
ed074f9cff
* refactor dynamic-static detection * refactor dynamic-static detection
20 lines
387 B
Python
20 lines
387 B
Python
import gradio as gr
|
|
|
|
str = """Hello friends
|
|
hello friends
|
|
|
|
Hello friends
|
|
|
|
"""
|
|
|
|
|
|
with gr.Blocks() as demo:
|
|
txt = gr.Textbox(label="Input", lines=5)
|
|
txt_2 = gr.Textbox(label="Output")
|
|
txt_3 = gr.Textbox(str, label="Output", interactive=False)
|
|
btn = gr.Button("Submit")
|
|
btn.click(lambda a: a, inputs=[txt], outputs=[txt_2])
|
|
|
|
if __name__ == "__main__":
|
|
demo.launch()
|