Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -147,7 +147,7 @@ with gr.Blocks(title="Secure Decoder API", theme=gr.themes.Soft()) as demo:
|
|
147 |
"without it being easily detectable or readable. The process uses a combination of **steganography** (hiding data in the image's pixels) and **hybrid encryption** (the security of RSA combined with the speed of AES)."
|
148 |
)
|
149 |
|
150 |
-
with gr.Accordion("How It Works
|
151 |
gr.Markdown(
|
152 |
"""
|
153 |
The security relies on a well-established cryptographic pattern called **Hybrid Encryption**. Here’s the step-by-step process a client must follow to create a compatible image:
|
@@ -268,4 +268,4 @@ else:
|
|
268 |
if __name__ == "__main__":
|
269 |
# To run on a server, you might use: demo.launch(server_name="0.0.0.0")
|
270 |
# See the deployment guide at the top of this file for more details.
|
271 |
-
demo.launch()
|
|
|
147 |
"without it being easily detectable or readable. The process uses a combination of **steganography** (hiding data in the image's pixels) and **hybrid encryption** (the security of RSA combined with the speed of AES)."
|
148 |
)
|
149 |
|
150 |
+
with gr.Accordion("How It Works", open=False):
|
151 |
gr.Markdown(
|
152 |
"""
|
153 |
The security relies on a well-established cryptographic pattern called **Hybrid Encryption**. Here’s the step-by-step process a client must follow to create a compatible image:
|
|
|
268 |
if __name__ == "__main__":
|
269 |
# To run on a server, you might use: demo.launch(server_name="0.0.0.0")
|
270 |
# See the deployment guide at the top of this file for more details.
|
271 |
+
demo.launch(mcp_server=True)
|