paopaoka3325 commited on
Commit
4266de5
·
1 Parent(s): 1ed3b9f

Add application files

Browse files
Files changed (1) hide show
  1. app.py +1 -3
app.py CHANGED
@@ -98,9 +98,7 @@ input_boxes = [
98
  ]
99
 
100
  # iface = gr.Interface(fn=greet, inputs=input_boxes, outputs="text")
101
- iface = gr.Interface(fn=greet, inputs=input_boxes, outputs=gr.outputs.HTML(label="Output Table"),
102
- examples="Patient John Smith (HSI-5421) underwent a tissue biopsy at the bladder collection site. The histopathology report confirmed the presence of cancer in the bladder. The tumor, identified as T-BC5421, measures 4 cm in its longest dimension. The cancer has been staged as T2, indicating its progression beyond the bladder wall. The cancer was asserted on January 10, 2022. The tumor marker test revealed elevated levels of urinary bladder tumor antigen (UBTA). John Smith, a Caucasian male born on April 15, 1975, is non-Hispanic and resides in zip code 90210. He is still alive, with no reported death date at this time. For any further information, please contact John Smith at [email protected] or (555) 123-4567."
103
- )
104
 
105
  iface.launch()
106
 
 
98
  ]
99
 
100
  # iface = gr.Interface(fn=greet, inputs=input_boxes, outputs="text")
101
+ iface = gr.Interface(fn=greet, inputs=input_boxes, outputs=gr.outputs.HTML(label="Output Table"))
 
 
102
 
103
  iface.launch()
104