Spaces:
Running
on
CPU Upgrade
Running
on
CPU Upgrade
Thomas G. Lopes
commited on
Commit
·
d90a6b0
1
Parent(s):
bf1aea7
import adjustments
Browse files- src/routes/+layout.svelte +0 -13
- src/routes/+page.svelte +13 -0
- src/routes/usage/+page.svelte +0 -0
src/routes/+layout.svelte
CHANGED
@@ -1,10 +1,4 @@
|
|
1 |
<script lang="ts">
|
2 |
-
import DebugMenu from "$lib/components/debug-menu.svelte";
|
3 |
-
import CustomModelConfig from "$lib/components/inference-playground/custom-model-config.svelte";
|
4 |
-
import ImgPreview from "$lib/components/inference-playground/img-preview.svelte";
|
5 |
-
import Prompts from "$lib/components/prompts.svelte";
|
6 |
-
import QuotaModal from "$lib/components/quota-modal.svelte";
|
7 |
-
import ShareModal from "$lib/components/share-modal.svelte";
|
8 |
import IconLoadingLoop from "~icons/line-md/loading-loop";
|
9 |
import "../app.css";
|
10 |
|
@@ -22,10 +16,3 @@
|
|
22 |
<IconLoadingLoop class="abs-center absolute text-6xl dark:text-blue-300" />
|
23 |
{/snippet}
|
24 |
</svelte:boundary>
|
25 |
-
|
26 |
-
<DebugMenu />
|
27 |
-
<Prompts />
|
28 |
-
<QuotaModal />
|
29 |
-
<ShareModal />
|
30 |
-
<CustomModelConfig />
|
31 |
-
<ImgPreview />
|
|
|
1 |
<script lang="ts">
|
|
|
|
|
|
|
|
|
|
|
|
|
2 |
import IconLoadingLoop from "~icons/line-md/loading-loop";
|
3 |
import "../app.css";
|
4 |
|
|
|
16 |
<IconLoadingLoop class="abs-center absolute text-6xl dark:text-blue-300" />
|
17 |
{/snippet}
|
18 |
</svelte:boundary>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
src/routes/+page.svelte
CHANGED
@@ -1,4 +1,10 @@
|
|
1 |
<script lang="ts">
|
|
|
|
|
|
|
|
|
|
|
|
|
2 |
import Playground from "$lib/components/inference-playground/playground.svelte";
|
3 |
import { conversations } from "$lib/state/conversations.svelte";
|
4 |
import { models } from "$lib/state/models.svelte";
|
@@ -10,3 +16,10 @@
|
|
10 |
</script>
|
11 |
|
12 |
<Playground />
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
<script lang="ts">
|
2 |
+
import DebugMenu from "$lib/components/debug-menu.svelte";
|
3 |
+
import CustomModelConfig from "$lib/components/inference-playground/custom-model-config.svelte";
|
4 |
+
import ImgPreview from "$lib/components/inference-playground/img-preview.svelte";
|
5 |
+
import Prompts from "$lib/components/prompts.svelte";
|
6 |
+
import QuotaModal from "$lib/components/quota-modal.svelte";
|
7 |
+
import ShareModal from "$lib/components/share-modal.svelte";
|
8 |
import Playground from "$lib/components/inference-playground/playground.svelte";
|
9 |
import { conversations } from "$lib/state/conversations.svelte";
|
10 |
import { models } from "$lib/state/models.svelte";
|
|
|
16 |
</script>
|
17 |
|
18 |
<Playground />
|
19 |
+
|
20 |
+
<DebugMenu />
|
21 |
+
<Prompts />
|
22 |
+
<QuotaModal />
|
23 |
+
<ShareModal />
|
24 |
+
<CustomModelConfig />
|
25 |
+
<ImgPreview />
|
src/routes/usage/+page.svelte
DELETED
File without changes
|