Spaces:
Running
Running
Commit
·
245f91b
1
Parent(s):
f152ade
add requiretment
Browse files
app.py
CHANGED
@@ -97,8 +97,10 @@ input_boxes = [
|
|
97 |
gr.inputs.Textbox(lines=20, label="Input cencer report", placeholder='Type text here...'),
|
98 |
]
|
99 |
|
100 |
-
disclaimer =
|
101 |
-
|
|
|
|
|
102 |
|
103 |
# iface = gr.Interface(fn=greet, inputs=input_boxes, outputs="text")
|
104 |
iface = gr.Interface(fn=greet, inputs=input_boxes, outputs=gr.outputs.HTML(label="Output Table"),examples=[ # Sample text examples
|
|
|
97 |
gr.inputs.Textbox(lines=20, label="Input cencer report", placeholder='Type text here...'),
|
98 |
]
|
99 |
|
100 |
+
disclaimer = (
|
101 |
+
"* Please do not upload sensitive patient data. "
|
102 |
+
"* If you need support, please contact us at https://mcodegpt.org/"
|
103 |
+
)
|
104 |
|
105 |
# iface = gr.Interface(fn=greet, inputs=input_boxes, outputs="text")
|
106 |
iface = gr.Interface(fn=greet, inputs=input_boxes, outputs=gr.outputs.HTML(label="Output Table"),examples=[ # Sample text examples
|