Spaces:
Sleeping
Sleeping
chore: update introduction in version 6
Browse files
app.py
CHANGED
@@ -541,19 +541,16 @@ if __name__ == "__main__":
|
|
541 |
"""
|
542 |
)
|
543 |
|
544 |
-
gr.Markdown("
|
545 |
gr.Markdown(
|
546 |
-
|
547 |
-
|
548 |
-
|
549 |
-
|
550 |
-
"encrypted on your end and transmitted to an untrusted server for processing.\n\n"
|
551 |
-
"Thanks to the FHE scheme, the remote server is able to perform computations without ever decrypting the data and return result the encrypted to the client for local decryption. \n\n\n"
|
552 |
-
"FHE ensures end-to-end data encryption and guarantees patient privacy."
|
553 |
)
|
|
|
554 |
gr.Markdown(
|
555 |
-
"Disclaimer:
|
556 |
-
"please consult a qualified healthcare provider."
|
557 |
)
|
558 |
|
559 |
with gr.Tabs(eelem_id="them") as tabs:
|
|
|
541 |
"""
|
542 |
)
|
543 |
|
544 |
+
gr.Markdown("## Notes")
|
545 |
gr.Markdown(
|
546 |
+
"""
|
547 |
+
- The private key is used to encrypt and decrypt the data and shall never be shared.
|
548 |
+
- The evaluation key is a public key that the server needs to process encrypted data.
|
549 |
+
"""
|
|
|
|
|
|
|
550 |
)
|
551 |
+
|
552 |
gr.Markdown(
|
553 |
+
"Disclaimer: this demo is not to be used as a substitute for medical advice, diagnosis or treatment of any health condition. Any questions regarding your own health should be addressed to your physician or other healthcare provider."
|
|
|
554 |
)
|
555 |
|
556 |
with gr.Tabs(eelem_id="them") as tabs:
|