|
110 | 110 | }}
|
111 | 111 | >
|
112 | 112 | {#if assistant}
|
113 |
| - <h2 class="text-xl font-semibold">Edit assistant ({assistant?.name ?? ""})</h2> |
114 |
| - <p class="mb-6 text-sm text-gray-500"> |
| 113 | + <h2 class="text-xl font-semibold dark:text-gray-300">Edit assistant ({assistant?.name ?? ""})</h2> |
| 114 | + <p class="mb-6 text-sm text-gray-500 dark:text-gray-400"> |
115 | 115 | Modifying an existing assistant will propagate those changes to all users.
|
116 | 116 | </p>
|
117 | 117 | {:else}
|
118 |
| - <h2 class="text-xl font-semibold">Create new assistant</h2> |
119 |
| - <p class="mb-6 text-sm text-gray-500"> |
| 118 | + <h2 class="text-xl font-semibold dark:text-gray-300">Create new assistant</h2> |
| 119 | + <p class="mb-6 text-sm text-gray-500 dark:text-gray-400"> |
120 | 120 | Create and share your own AI Assistant. All assistants are <span
|
121 | 121 | class="rounded-full border px-2 py-0.5 leading-none">public</span
|
122 | 122 | >
|
|
126 | 126 | <div class="mx-1 grid flex-1 grid-cols-2 gap-4 max-sm:grid-cols-1">
|
127 | 127 | <div class="flex flex-col gap-4">
|
128 | 128 | <div>
|
129 |
| - <span class="mb-1 block pb-2 text-sm font-semibold">Avatar</span> |
| 129 | + <span class="mb-1 block pb-2 text-sm font-semibold dark:text-gray-300">Avatar</span> |
130 | 130 | <input
|
131 | 131 | type="file"
|
132 | 132 | accept="image/*"
|
|
166 | 166 | files = null;
|
167 | 167 | deleteExistingAvatar = true;
|
168 | 168 | }}
|
169 |
| - class="mx-auto w-max text-center text-xs text-gray-600 hover:underline" |
| 169 | + class="mx-auto w-max text-center text-xs text-gray-600 hover:underline dark:text-gray-400" |
170 | 170 | >
|
171 | 171 | Delete
|
172 | 172 | </button>
|
|
175 | 175 | <div class="mb-1 flex w-max flex-row gap-4">
|
176 | 176 | <label
|
177 | 177 | for="avatar"
|
178 |
| - class="btn flex h-8 rounded-lg border bg-white px-3 py-1 text-gray-500 shadow-sm transition-all hover:bg-gray-100" |
| 178 | + class="btn flex h-8 rounded-lg border bg-white px-3 py-1 text-gray-500 shadow-sm transition-all hover:bg-gray-100 dark:border-gray-600 dark:bg-gray-600 dark:text-gray-400 dark:hover:bg-gray-700" |
179 | 179 | >
|
180 | 180 | <CarbonUpload class="mr-2 text-xs " /> Upload
|
181 | 181 | </label>
|
|
185 | 185 | </div>
|
186 | 186 |
|
187 | 187 | <label>
|
188 |
| - <span class="mb-1 text-sm font-semibold">Name</span> |
| 188 | + <span class="mb-1 text-sm font-semibold dark:text-gray-300">Name</span> |
189 | 189 | <input
|
190 | 190 | name="name"
|
191 |
| - class="w-full rounded-lg border-2 border-gray-200 bg-gray-100 p-2" |
| 191 | + class="w-full rounded-lg border-2 border-gray-200 bg-gray-100 p-2 dark:border-gray-600 dark:bg-gray-700 dark:text-gray-300" |
192 | 192 | placeholder="My awesome model"
|
193 | 193 | value={assistant?.name ?? ""}
|
194 | 194 | />
|
195 | 195 | <p class="text-xs text-red-500">{getError("name", form)}</p>
|
196 | 196 | </label>
|
197 | 197 |
|
198 | 198 | <label>
|
199 |
| - <span class="mb-1 text-sm font-semibold">Description</span> |
| 199 | + <span class="mb-1 text-sm font-semibold dark:text-gray-300">Description</span> |
200 | 200 | <textarea
|
201 | 201 | name="description"
|
202 |
| - class="w-full rounded-lg border-2 border-gray-200 bg-gray-100 p-2" |
| 202 | + class="w-full rounded-lg border-2 border-gray-200 bg-gray-100 p-2 dark:border-gray-600 dark:bg-gray-700 dark:text-gray-300" |
203 | 203 | placeholder="He knows everything about python"
|
204 | 204 | value={assistant?.description ?? ""}
|
205 | 205 | />
|
206 | 206 | <p class="text-xs text-red-500">{getError("description", form)}</p>
|
207 | 207 | </label>
|
208 | 208 |
|
209 | 209 | <label>
|
210 |
| - <span class="mb-1 text-sm font-semibold">Model</span> |
211 |
| - <select name="modelId" class="w-full rounded-lg border-2 border-gray-200 bg-gray-100 p-2"> |
| 210 | + <span class="mb-1 text-sm font-semibold dark:text-gray-300">Model</span> |
| 211 | + <select name="modelId" class="w-full rounded-lg border-2 border-gray-200 bg-gray-100 p-2 dark:border-gray-600 dark:bg-gray-700 dark:text-gray-300"> |
212 | 212 | {#each models.filter((model) => !model.unlisted) as model}
|
213 | 213 | <option
|
214 | 214 | value={model.id}
|
|
222 | 222 | </label>
|
223 | 223 |
|
224 | 224 | <label>
|
225 |
| - <span class="mb-1 text-sm font-semibold">User start messages</span> |
| 225 | + <span class="mb-1 text-sm font-semibold dark:text-gray-300">User start messages</span> |
226 | 226 | <div class="flex flex-col gap-2 md:max-h-32">
|
227 | 227 | <input
|
228 | 228 | name="exampleInput1"
|
229 | 229 | bind:value={inputMessage1}
|
230 |
| - class="w-full rounded-lg border-2 border-gray-200 bg-gray-100 p-2" |
| 230 | + class="w-full rounded-lg border-2 border-gray-200 bg-gray-100 p-2 dark:border-gray-600 dark:bg-gray-700 dark:text-gray-300" |
231 | 231 | />
|
232 | 232 | {#if !!inputMessage1 || !!inputMessage2}
|
233 | 233 | <input
|
234 | 234 | name="exampleInput2"
|
235 | 235 | bind:value={inputMessage2}
|
236 |
| - class="w-full rounded-lg border-2 border-gray-200 bg-gray-100 p-2" |
| 236 | + class="w-full rounded-lg border-2 border-gray-200 bg-gray-100 p-2 dark:border-gray-600 dark:bg-gray-700 dark:text-gray-300" |
237 | 237 | />
|
238 | 238 | {/if}
|
239 | 239 | {#if !!inputMessage2 || !!inputMessage3}
|
240 | 240 | <input
|
241 | 241 | name="exampleInput3"
|
242 | 242 | bind:value={inputMessage3}
|
243 |
| - class="w-full rounded-lg border-2 border-gray-200 bg-gray-100 p-2" |
| 243 | + class="w-full rounded-lg border-2 border-gray-200 bg-gray-100 p-2 dark:border-gray-600 dark:bg-gray-700 dark:text-gray-300" |
244 | 244 | />
|
245 | 245 | {/if}
|
246 | 246 | {#if !!inputMessage3 || !!inputMessage4}
|
247 | 247 | <input
|
248 | 248 | name="exampleInput4"
|
249 | 249 | bind:value={inputMessage4}
|
250 |
| - class="w-full rounded-lg border-2 border-gray-200 bg-gray-100 p-2" |
| 250 | + class="w-full rounded-lg border-2 border-gray-200 bg-gray-100 p-2 dark:border-gray-600 dark:bg-gray-700 dark:text-gray-300" |
251 | 251 | />
|
252 | 252 | {/if}
|
253 | 253 | </div>
|
|
256 | 256 | </div>
|
257 | 257 |
|
258 | 258 | <label class="flex flex-col">
|
259 |
| - <span class="mb-1 text-sm font-semibold"> Instructions (system prompt) </span> |
| 259 | + <span class="mb-1 text-sm font-semibold dark:text-gray-300"> Instructions (system prompt) </span> |
260 | 260 | <textarea
|
261 | 261 | name="preprompt"
|
262 |
| - class="min-h-[8lh] flex-1 rounded-lg border-2 border-gray-200 bg-gray-100 p-2 text-sm" |
| 262 | + class="min-h-[8lh] flex-1 rounded-lg border-2 border-gray-200 bg-gray-100 p-2 text-sm dark:border-gray-600 dark:bg-gray-700 dark:text-gray-300" |
263 | 263 | placeholder="You'll act as..."
|
264 | 264 | value={assistant?.preprompt ?? ""}
|
265 | 265 | />
|
|
270 | 270 | <div class="mt-5 flex justify-end gap-2">
|
271 | 271 | <a
|
272 | 272 | href={assistant ? `${base}/settings/assistants/${assistant?._id}` : `${base}/settings`}
|
273 |
| - class="rounded-full bg-gray-200 px-8 py-2 font-semibold text-gray-600">Cancel</a |
| 273 | + class="rounded-full bg-gray-200 px-8 py-2 font-semibold text-gray-600 dark:text-gray-300 dark:bg-gray-700">Cancel</a |
274 | 274 | >
|
275 | 275 | <button
|
276 | 276 | type="submit"
|
277 | 277 | disabled={loading}
|
278 | 278 | aria-disabled={loading}
|
279 |
| - class="rounded-full bg-black px-8 py-2 font-semibold md:px-20" |
| 279 | + class="rounded-full bg-black px-8 py-2 font-semibold md:px-20 dark:bg-gray-300 dark:text-gray-900" |
280 | 280 | class:bg-gray-200={loading}
|
281 | 281 | class:text-gray-600={loading}
|
282 | 282 | class:text-white={!loading}
|
|
0 commit comments