paopaoka3325 commited on
Commit
48963dc
·
1 Parent(s): 624e912

Add application files

Browse files
Files changed (1) hide show
  1. app.py +3 -3
app.py CHANGED
@@ -65,10 +65,10 @@ def greet(name1, name2):
65
 
66
  # Define 5 text input boxes with labels
67
  input_boxes = [
68
- gr.inputs.Textbox(label="openai api key"),
69
- gr.inputs.Textbox(label="Input cencer report"),
70
  ]
71
 
72
- iface = gr.Interface(fn=greet, lines=20, inputs=input_boxes, outputs="text")
73
  iface.launch()
74
 
 
65
 
66
  # Define 5 text input boxes with labels
67
  input_boxes = [
68
+ gr.inputs.Textbox(lines=20, label="openai api key"),
69
+ gr.inputs.Textbox(lines=20,label="Input cencer report"),
70
  ]
71
 
72
+ iface = gr.Interface(fn=greet, inputs=input_boxes, outputs="text")
73
  iface.launch()
74