File size: 1,153 Bytes
7a52bc5
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
<script>
	let pipelineWorker;
	let result = null;
	let ready = null;

	async function classify(text) {
		if (!text) return;
		if (ready === null) {
			ready = false;
		}
		// Make a request to the /classify route on the server.
		const response = await fetch(`/classify?text=${encodeURIComponent(text)}`);

		// If this is the first time we've made a request, set the ready flag.
		if (!ready) {
			ready = true;
		}
		result = await response.json();
	}
</script>

<main class="flex min-h-screen flex-col items-center justify-center p-12">
	<h1 class="text-5xl font-bold mb-2 text-center">Transformers.js</h1>
	<h2 class="text-2xl mb-4 text-center">SvelteKit (server-side)</h2>
	<input
		type="text"
		class="w-full max-w-xs p-2 border border-gray-300 rounded mb-4 dark:text-black"
		placeholder="Enter text here"
		on:input={(e) => {
			classify(e.target.value);
		}}
	/>

	{#if ready !== null}
		<pre class="bg-gray-100 dark:bg-gray-800 p-2 rounded">{!ready || !result
				? 'Loading...'
				: JSON.stringify(result, null, 2)}</pre>
	{/if}
</main>

<style lang="postcss">
	/* :global(html) {
		background-color: theme(colors.gray.100);
	} */
</style>