File size: 377 Bytes
39eb06d
b1426d3
e657b46
 
 
 
 
 
 
39eb06d
 
b1426d3
1
2
3
4
5
6
7
8
9
10
11
12
13
<script lang="ts">
	import Playground from "$lib/components/inference-playground/playground.svelte";
	import { conversations } from "$lib/state/conversations.svelte";
	import { models } from "$lib/state/models.svelte";
	import { projects } from "$lib/state/projects.svelte";

	await models.load();
	await projects.init();
	await conversations.init();
</script>

<Playground />