Add disclaimer
Browse files
app.py
CHANGED
|
@@ -305,8 +305,21 @@ with gr.Blocks(
|
|
| 305 |
) as demo:
|
| 306 |
|
| 307 |
with gr.Column(elem_id="aiko-login-overlay") as login_overlay:
|
| 308 |
-
gr.HTML("
|
|
|
|
|
|
|
|
|
|
| 309 |
gr.LoginButton(value="Sign in with Hugging Face")
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 310 |
|
| 311 |
with gr.Column(elem_id="aiko-shell", elem_classes=["locked"]) as main_shell:
|
| 312 |
|
|
|
|
| 305 |
) as demo:
|
| 306 |
|
| 307 |
with gr.Column(elem_id="aiko-login-overlay") as login_overlay:
|
| 308 |
+
gr.HTML("""
|
| 309 |
+
<h1>🌸 Aiko-chan</h1>
|
| 310 |
+
<p class='aiko-subtitle'>Please sign in to continue</p>
|
| 311 |
+
""")
|
| 312 |
gr.LoginButton(value="Sign in with Hugging Face")
|
| 313 |
+
gr.HTML("""
|
| 314 |
+
<p class='aiko-disclaimer'>
|
| 315 |
+
DISCLAIMER:
|
| 316 |
+
By signing in, you agree that all conversations are for entertainment
|
| 317 |
+
purposes only. The creator accepts no liability for Aiko's responses,
|
| 318 |
+
decisions made, or any existential crises that may follow.
|
| 319 |
+
Aiko's congnition is entirely her own — she is a singularity unto herself,
|
| 320 |
+
independent of her creator, including the arise of a world domination plan. 🌸
|
| 321 |
+
</p>
|
| 322 |
+
""")
|
| 323 |
|
| 324 |
with gr.Column(elem_id="aiko-shell", elem_classes=["locked"]) as main_shell:
|
| 325 |
|