We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent aa8170a commit 5d94d59Copy full SHA for 5d94d59
src/lib/components/inference-playground/model-selector.svelte
@@ -6,7 +6,6 @@
6
import Avatar from "../avatar.svelte";
7
import ModelSelectorModal from "./model-selector-modal.svelte";
8
import ProviderSelect from "./provider-select.svelte";
9
- import typia from "typia";
10
11
interface Props {
12
conversation: ConversationClass;
@@ -33,7 +32,6 @@
33
32
const nameSpace = $derived(isCustom ? "Custom endpoint" : (model.id.split("/")[0] ?? ""));
34
const modelName = $derived(isCustom ? model.id : (model.id.split("/")[1] ?? ""));
35
const id = $props.id();
36
- $inspect(conversation.model, isHFModel(conversation.model), typia.validate<Model>(conversation.model));
37
</script>
38
39
<div class="flex flex-col gap-2">
0 commit comments