paopaoka3325 commited on
Commit
f44bf4c
·
1 Parent(s): b194cfc

add requiretment

Browse files
Files changed (1) hide show
  1. app.py +10 -3
app.py CHANGED
@@ -11,7 +11,14 @@ def greet(name1, name2, name3, name4, name5):
11
  # For the purpose of this example, I'm just returning the values concatenated
12
  return f"Inputs received: {str1}, {str2}, {str3}, {str4}, {str5}"
13
 
14
- # Define 5 text input boxes
15
- iface = gr.Interface(fn=greet, inputs=["OpenAI API Key", "Huggingface Hub API Key", "NCBI API key", "Bioportal API Key", "Input cancer report content"], outputs="Cancer Ontogoly")
16
- iface.launch()
 
 
 
 
 
17
 
 
 
 
11
  # For the purpose of this example, I'm just returning the values concatenated
12
  return f"Inputs received: {str1}, {str2}, {str3}, {str4}, {str5}"
13
 
14
+ # Define 5 text input boxes with labels
15
+ input_boxes = [
16
+ gr.inputs.Textbox(label="Name 1regaergar"),
17
+ gr.inputs.Textbox(label="Name 2"),
18
+ gr.inputs.Textbox(label="Name 3"),
19
+ gr.inputs.Textbox(label="Name 4"),
20
+ gr.inputs.Textbox(label="Name 5"),
21
+ ]
22
 
23
+ iface = gr.Interface(fn=greet, inputs=input_boxes, outputs="text")
24
+ iface.launch()