WIP on persisting chat history on daemon

This commit is contained in:
2026-02-08 22:04:33 +02:00
parent 16ab8e4207
commit e878b8120b
15 changed files with 881 additions and 28 deletions

View File

@@ -25,14 +25,27 @@ body {
.response-area {
width: 100%;
height: 300px;
overflow-y: scroll;
overflow-y: auto;
}
.msg {
margin: 1px;
border: solid 1px #808080;
animation: slideIn 0.3s ease-out;
max-width: 70%;
}
.msg-user {
text-align: end;
}
@keyframes slideIn {
from {
opacity: 0;
transform: translateY(10px) scale(0.95);
}
to {
opacity: 1;
transform: translateY(0) scale(1);
}
}