Spaces:
Running
Running
File size: 272 Bytes
992a8de |
1 2 3 4 5 6 7 8 9 10 |
<script lang="ts">
import type { ActionData, PageData } from "./$types";
import AssistantSettings from "$lib/components/AssistantSettings.svelte";
export let data: PageData;
export let form: ActionData;
</script>
<AssistantSettings bind:form models={data.models} />
|