Spaces:
Sleeping
Sleeping
murongtianfeng
commited on
Commit
·
ed0057b
1
Parent(s):
fb43ba9
Update app.py
Browse files
app.py
CHANGED
@@ -1,23 +1,12 @@
|
|
1 |
import gradio as gr
|
2 |
|
3 |
-
def
|
4 |
-
|
5 |
-
|
6 |
-
|
7 |
-
|
8 |
-
|
9 |
-
|
10 |
-
|
11 |
-
return num1 / num2
|
12 |
|
13 |
-
demo = gr.Interface(
|
14 |
-
calculator,
|
15 |
-
[
|
16 |
-
"number",
|
17 |
-
gr.Radio(["add", "subtract", "multiply", "divide"]),
|
18 |
-
"number"
|
19 |
-
],
|
20 |
-
"number",
|
21 |
-
live=True,
|
22 |
-
)
|
23 |
demo.launch()
|
|
|
1 |
import gradio as gr
|
2 |
|
3 |
+
def greet(name):
|
4 |
+
return "Hello " + name + "!"
|
5 |
+
|
6 |
+
with gr.Blocks() as demo:
|
7 |
+
output = gr.Textbox(label="输出")
|
8 |
+
name = gr.Textbox(label="输入")
|
9 |
+
greet_btn = gr.Button("提交")
|
10 |
+
greet_btn.click(fn=greet, inputs=name, outputs=output, api_name="greet")
|
|
|
11 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
12 |
demo.launch()
|