Dave67350 commited on
Commit
7ad3ec8
·
verified ·
1 Parent(s): 8309c13

Update Gradio_UI.py

Browse files
Files changed (1) hide show
  1. 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
- # Inject CSS to hide footer & built-with buttons
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():