File size: 1,440 Bytes
57e16da
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
<script lang="ts">
	import { onMount } from 'svelte';
	import { HF_ACCESS_TOKEN, OPENAI_API_KEY } from '../store';

	let dialogElement: HTMLDialogElement;

	onMount(() => {
		if ($HF_ACCESS_TOKEN === '') {
			dialogElement.showModal();
		}
	});
</script>

<dialog
	id="api_modal"
	class="modal"
	bind:this={dialogElement}
	on:close={() => {
		if ($HF_ACCESS_TOKEN === '' || $OPENAI_API_KEY === '') {
			dialogElement.showModal();
		} else {
			localStorage.setItem('HF_ACCESS_TOKEN', $HF_ACCESS_TOKEN);
			localStorage.setItem('OPENAI_API_KEY', $OPENAI_API_KEY);
		}
	}}
>
	<form method="dialog" class="modal-box">
		<h3 class="font-bold text-lg">API keys needed</h3>
		<p class="py-4">In order for this demo to work you need API keys for HF and OpenAI.</p>
		<div class="w-full flex flex-col gap-5">
			<form aria-label="HF API" class="form-control">
				<label for="hf_key" class="label-text pb-2">HF API key</label>
				<input
					class="input"
					name="hf_key"
					type="text"
					placeholder="hf_***"
					bind:value={$HF_ACCESS_TOKEN}
				/>
			</form>
			<form aria-label="OPENAI API" class="form-control">
				<label for="oai_key" class="label-text pb-2">OpenAI API key</label>
				<input
					class="input"
					name="oai_key"
					type="text"
					placeholder="sk-***"
					bind:value={$OPENAI_API_KEY}
				/>
			</form>
		</div>
		<div class="modal-action">
			<button class="btn">Close</button>
		</div>
	</form>
</dialog>