Spaces:
Sleeping
Sleeping
Update Gradio_UI.py
Browse files- Gradio_UI.py +7 -1
Gradio_UI.py
CHANGED
|
@@ -91,7 +91,7 @@ def continue_conversation(user_input):
|
|
| 91 |
|
| 92 |
# === Gradio Interface ===
|
| 93 |
with gr.Blocks(title="Regulatory Compliance Generator") as demo:
|
| 94 |
-
#
|
| 95 |
gr.HTML("""
|
| 96 |
<style>
|
| 97 |
footer, .svelte-1ipelgc, .svelte-1tu2cey, .svelte-1n4b3i1 {
|
|
@@ -100,6 +100,12 @@ with gr.Blocks(title="Regulatory Compliance Generator") as demo:
|
|
| 100 |
</style>
|
| 101 |
""")
|
| 102 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 103 |
gr.Markdown("## 📑 Regulation Document Generator")
|
| 104 |
|
| 105 |
with gr.Row():
|
|
|
|
| 91 |
|
| 92 |
# === Gradio Interface ===
|
| 93 |
with gr.Blocks(title="Regulatory Compliance Generator") as demo:
|
| 94 |
+
# Hide footer / Gradio branding
|
| 95 |
gr.HTML("""
|
| 96 |
<style>
|
| 97 |
footer, .svelte-1ipelgc, .svelte-1tu2cey, .svelte-1n4b3i1 {
|
|
|
|
| 100 |
</style>
|
| 101 |
""")
|
| 102 |
|
| 103 |
+
# GDPR disclaimer
|
| 104 |
+
gr.Markdown("""
|
| 105 |
+
#### 🔒 GDPR Notice:
|
| 106 |
+
This assistant does **not store any personal data**. All inputs are used temporarily during the session to generate your document and are **not retained** after download.
|
| 107 |
+
""")
|
| 108 |
+
|
| 109 |
gr.Markdown("## 📑 Regulation Document Generator")
|
| 110 |
|
| 111 |
with gr.Row():
|