File size: 348 Bytes
5f2d21a
 
 
 
 
eb6af5d
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
import gradio as gr

def greet(name):
    return "Hello " + name + "!!"

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

    # 균형잡힌 뉴스 읽기 (Balanced News Reading)

    """)
    iface = gr.Interface(fn=greet, inputs="text", outputs="text")
    # iface.launch()


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