Update app.py
Browse files
app.py
CHANGED
@@ -159,7 +159,7 @@ with gr.Blocks(theme=theme, title="KeyLock Operations Dashboard") as demo:
|
|
159 |
with gr.Tabs() as tabs:
|
160 |
with gr.TabItem("① Create KeyLock", id=0):
|
161 |
gr.Markdown("## Step 1: Create an Encrypted Authentication Image (Local)")
|
162 |
-
gr.Markdown(f"This tool acts as the **Auth Creator**. It fetches a list of available servers from a public [configuration file]({
|
163 |
with gr.Row(variant="panel"):
|
164 |
with gr.Column(scale=2):
|
165 |
with gr.Row():
|
@@ -188,7 +188,7 @@ with gr.Blocks(theme=theme, title="KeyLock Operations Dashboard") as demo:
|
|
188 |
|
189 |
with gr.TabItem("ℹ️ Info & Key Generation", id=2):
|
190 |
gr.Markdown("## Ecosystem Architecture")
|
191 |
-
gr.Markdown(f"This dashboard uses a public [configuration file]({
|
192 |
with gr.Row():
|
193 |
with gr.Column():
|
194 |
gr.Markdown(f"### 🏭 Auth Creator Service\n- **Space:** [{CREATOR_SPACE_ID}]({CREATOR_URL})\n- **Role:** Provides an API to encrypt data for various targets defined in its `endpoints.json` file.\n- **Source Code:** [app.py]({CREATOR_APP_PY_URL})")
|
|
|
159 |
with gr.Tabs() as tabs:
|
160 |
with gr.TabItem("① Create KeyLock", id=0):
|
161 |
gr.Markdown("## Step 1: Create an Encrypted Authentication Image (Local)")
|
162 |
+
gr.Markdown(f"This tool acts as the **Auth Creator**. It fetches a list of available servers from a public [configuration file]({CREATOR_ENDPOINTS_JSON_URL}), then uses the selected server's public key to encrypt your data into a PNG. **This entire creation process happens locally.**")
|
163 |
with gr.Row(variant="panel"):
|
164 |
with gr.Column(scale=2):
|
165 |
with gr.Row():
|
|
|
188 |
|
189 |
with gr.TabItem("ℹ️ Info & Key Generation", id=2):
|
190 |
gr.Markdown("## Ecosystem Architecture")
|
191 |
+
gr.Markdown(f"This dashboard uses a public [configuration file]({CREATOR_ENDPOINTS_JSON_URL}) to dynamically discover and interact with live services. It demonstrates a secure, decoupled workflow.")
|
192 |
with gr.Row():
|
193 |
with gr.Column():
|
194 |
gr.Markdown(f"### 🏭 Auth Creator Service\n- **Space:** [{CREATOR_SPACE_ID}]({CREATOR_URL})\n- **Role:** Provides an API to encrypt data for various targets defined in its `endpoints.json` file.\n- **Source Code:** [app.py]({CREATOR_APP_PY_URL})")
|