Spaces:
Running
Running
Add disclaimer to Aetheris chat interface
Browse files- chat.html +4 -0
- static/css/aetheris.css +19 -0
chat.html
CHANGED
|
@@ -26,6 +26,10 @@
|
|
| 26 |
|
| 27 |
<main>
|
| 28 |
<div class="chat-wrapper">
|
|
|
|
|
|
|
|
|
|
|
|
|
| 29 |
<!-- Messages -->
|
| 30 |
<div class="message-list" id="chat-window">
|
| 31 |
<!-- Initial Message -->
|
|
|
|
| 26 |
|
| 27 |
<main>
|
| 28 |
<div class="chat-wrapper">
|
| 29 |
+
<!-- Disclaimer -->
|
| 30 |
+
<div class="disclaimer-banner">
|
| 31 |
+
⚠️ <strong>Notice:</strong> Aetheris is currently experimental. The model does NOT produce coherent output yet.
|
| 32 |
+
</div>
|
| 33 |
<!-- Messages -->
|
| 34 |
<div class="message-list" id="chat-window">
|
| 35 |
<!-- Initial Message -->
|
static/css/aetheris.css
CHANGED
|
@@ -31,6 +31,25 @@ body.aetheris-theme {
|
|
| 31 |
flex-direction: column;
|
| 32 |
}
|
| 33 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 34 |
/* Messages */
|
| 35 |
.message-list {
|
| 36 |
flex: 1;
|
|
|
|
| 31 |
flex-direction: column;
|
| 32 |
}
|
| 33 |
|
| 34 |
+
/* Disclaimer */
|
| 35 |
+
.disclaimer-banner {
|
| 36 |
+
background: rgba(255, 165, 0, 0.1);
|
| 37 |
+
border: 1px solid rgba(255, 165, 0, 0.3);
|
| 38 |
+
color: #ffd8a8;
|
| 39 |
+
padding: 0.75rem;
|
| 40 |
+
margin: 1rem 1rem 0 1rem;
|
| 41 |
+
border-radius: 8px;
|
| 42 |
+
text-align: center;
|
| 43 |
+
font-size: 0.9rem;
|
| 44 |
+
backdrop-filter: blur(5px);
|
| 45 |
+
animation: fadeIn 1s ease-out;
|
| 46 |
+
}
|
| 47 |
+
|
| 48 |
+
@keyframes fadeIn {
|
| 49 |
+
from { opacity: 0; transform: translateY(-10px); }
|
| 50 |
+
to { opacity: 1; transform: translateY(0); }
|
| 51 |
+
}
|
| 52 |
+
|
| 53 |
/* Messages */
|
| 54 |
.message-list {
|
| 55 |
flex: 1;
|