File size: 3,181 Bytes
36784c4
 
 
2b16403
 
5ca5f25
 
9091160
 
 
484e5a2
9091160
 
 
bba96cd
9091160
 
5ca5f25
2b16403
bba96cd
5ca5f25
 
 
 
407ff24
 
36784c4
 
5ca5f25
36784c4
 
407ff24
 
36784c4
bba96cd
36784c4
 
 
 
5ca5f25
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
407ff24
 
36784c4
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
4217c45
36784c4
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
407ff24
ad86f71
 
2b16403
ad86f71
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
6ebfe81
 
 
ad86f71
 
 
 
 
 
2b16403
bba96cd
 
 
 
4217c45
 
 
 
9c1b0f7
 
 
 
2b16403
bba96cd
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2b16403
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
body,
html {
  font-family: Arial, sans-serif;
  box-sizing: border-box;
  margin: 0;
}

h1 {
  font-size: 1.6rem;
  margin-bottom: .5rem;
  margin-top: 0;
}

h2 {
  font-size: 1.2rem;
}

main {
  padding: 2rem;
  max-width: 70rem;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  flex-direction: column;
}

#download-status {
  border: solid 1px black;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1),
    0 4px 6px -2px rgba(0, 0, 0, 0.05);
  padding: 10px;
}

.chat-container {
  height: calc(100dvh - 100px);
  width: 100%;
  border: 2px solid black;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  overflow: hidden;
}

.chat-input-container {
  padding: 16px;
  box-shadow: 0 0 #0000, 0 0 #0000, 0 1px 2px 0 rgb(0 0 0 / .05);;
  position: relative;
}

.chat-input {
  min-height: 40px;
  flex: 0 0;
  display: flex;
  gap: 8px;
  border-width: 1px;
  border-radius: 0.75rem;
  width: 100%;
}

.chat-input input {
	flex-grow: 1;
	border-radius: .5rem;
}

.chat-box {
  overflow-y: scroll;
  border: 1px solid #ccc;
  padding: 5px;
  flex: 1 1;
}

.chat-stats {
  background-color: #d3eceb;
  flex: 0 0;
  padding: 10px;
  font-size: 0.75rem;
}

.message-container {
  width: 100%;
  display: flex;
}

.message {
  padding: 1rem;
  margin: 10px 0;
  border-radius: 10px;
  width: fit-content;
}

.message-container.user {
  justify-content: end;
}

.message-container.assistant {
  justify-content: start;
}

.message-container.user .message {
  background: #007bff;
  color: #fff;
}

.message-container.assistant .message {
  background: #f1f0f0;
  color: #333;
}
#user-input {
  width: 70%;
  padding: 10px;
  border: 1px solid #ccc;
}

button {
  width: 25%;
  padding: 10px;
  border: none;
  background-color: #007bff;
  color: white;
  cursor: pointer;
}

button:disabled {
  background-color: lightgray;
  cursor: not-allowed;
}

button:hover:not(:disabled) {
  background-color: #0056b3;
}

.hidden {
  display: none;
}

.card {
  background-color: #deeeff;
  padding: 2rem;
  border-radius: 1rem;
  border: 1px solid #94c6fb;
  display: flex;
  margin-bottom: 1rem;
  gap: 1.5rem;
  align-items: center;
}

.card p {
  margin: 0;
}

.card a {
  background-color: #ffffff;
  border: 1px solid #63aaf5;
  padding: 1rem;
  border-radius: 1rem;
  white-space: nowrap;
  color: black;
  text-decoration: none;
  display: flex;
  gap: 8px;
  align-items: center;
}

.card a:hover {
  background-color: #deeeff;
  color: rgb(0, 0, 0);
}

.card.vertical {
  flex-direction: column;
}

.message p {
  margin: 0;
}

.message pre code.hljs {
  background: #ffffff;
  border-radius: 10px;
}

.configure-form {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  justify-content: center;
}
.configure-form .form-group {
  margin-bottom: 15px;
}
.configure-form label {
  display: block;
  margin-bottom: 5px;
  font-weight: bold;
}
.configure-form input[type="range"] {
  width: 100%;
}
.configure-form select, .configure-form input[type="range"], .configure-form input[type="number"] {
  padding: 5px;
  font-size: 1rem;
  width: 100%;
  box-sizing: border-box;
}

@media only screen and (max-width: 600px) {
  .card {
    flex-direction: column;
  }
}