Spaces:
Runtime error
Runtime error
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() |