File size: 891 Bytes
39eb06d
d90a6b0
 
 
 
 
 
b1426d3
e657b46
 
 
 
 
 
 
39eb06d
 
b1426d3
d90a6b0
 
 
 
 
 
 
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
<script lang="ts">
	import DebugMenu from "$lib/components/debug-menu.svelte";
	import CustomModelConfig from "$lib/components/inference-playground/custom-model-config.svelte";
	import ImgPreview from "$lib/components/inference-playground/img-preview.svelte";
	import Prompts from "$lib/components/prompts.svelte";
	import QuotaModal from "$lib/components/quota-modal.svelte";
	import ShareModal from "$lib/components/share-modal.svelte";
	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 />

<DebugMenu />
<Prompts />
<QuotaModal />
<ShareModal />
<CustomModelConfig />
<ImgPreview />