gabrielwithhappy commited on
Commit
eb6af5d
1 Parent(s): 5f2d21a

update title

Browse files
Files changed (1) hide show
  1. app.py +11 -2
app.py CHANGED
@@ -3,5 +3,14 @@ import gradio as gr
3
  def greet(name):
4
  return "Hello " + name + "!!"
5
 
6
- iface = gr.Interface(fn=greet, inputs="text", outputs="text")
7
- iface.launch()
 
 
 
 
 
 
 
 
 
 
3
  def greet(name):
4
  return "Hello " + name + "!!"
5
 
6
+ with gr.Blocks() as demo:
7
+ gr.Markdown(
8
+ """
9
+ # 균형잡힌 뉴스 읽기 (Balanced News Reading)
10
+ """)
11
+ iface = gr.Interface(fn=greet, inputs="text", outputs="text")
12
+ # iface.launch()
13
+
14
+
15
+ if __name__ == "__main__":
16
+ demo.launch(share=True)