gabrielwithhappy's picture
update title
eb6af5d
raw
history blame
348 Bytes
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)