chat feature added

This commit is contained in:
Timothy J. Baek 2023-10-08 15:38:42 -07:00
parent 5cd4946df2
commit 5e03670f1e
34 changed files with 7276 additions and 0 deletions

View file

@ -0,0 +1,19 @@
<script>
import Modal from '../common/Modal.svelte';
export let show = false;
</script>
<Modal bind:show>
<div class="mt-3 p-3 rounded-lg bg-gray-900">
<label for="models" class="block mb-2 text-sm font-medium text-gray-200">Select a model</label>
<select
id="models"
class="border border-gray-600 bg-gray-700 text-gray-200 text-sm rounded-lg block w-full p-2.5 placeholder-gray-400"
>
<option value="US">United States</option>
<option value="CA">Canada</option>
<option value="FR">France</option>
<option value="DE">Germany</option>
</select>
</div>
</Modal>