sulgi commited on
Commit
60e1ac3
·
1 Parent(s): 2c7868a

Create kor1

Browse files
Files changed (1) hide show
  1. kor1 +14 -0
kor1 ADDED
@@ -0,0 +1,14 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import gradio as gr
2
+
3
+ def greet(name, first, difficult):
4
+ salutation = "first korean" if first else "you already know korean"
5
+ greeting = f"{salutation} {name}. you might know korean about {difficult} , right?."
6
+ # celsius = (temperature - 32) * 5 / 9
7
+ return greeting
8
+
9
+ demo = gr.Interface(
10
+ fn=greet,
11
+ inputs=["text", "checkbox", gr.Slider(0, 100)],
12
+ outputs=["text", "number"],
13
+ )
14
+ demo.launch()