murongtianfeng commited on
Commit
ed0057b
·
1 Parent(s): fb43ba9

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +8 -19
app.py CHANGED
@@ -1,23 +1,12 @@
1
  import gradio as gr
2
 
3
- def calculator(num1, operation, num2):
4
- if operation == "add":
5
- return num1 + num2
6
- elif operation == "subtract":
7
- return num1 - num2
8
- elif operation == "multiply":
9
- return num1 * num2
10
- elif operation == "divide":
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()