File size: 325 Bytes
ad6275a
 
 
 
cf7ac8d
12c3a5a
 
 
 
 
 
 
25c844d
ce2231f
50d8483
ce2231f
cd6894d
0e5c445
41f29a4
ad6275a
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
import type { BackendModel } from "$lib/server/models";

export type Model = Pick<
	BackendModel,
	| "id"
	| "name"
	| "displayName"
	| "websiteUrl"
	| "datasetName"
	| "promptExamples"
	| "parameters"
	| "description"
	| "logoUrl"
	| "modelUrl"
	| "tokenizer"
	| "datasetUrl"
	| "preprompt"
	| "multimodal"
	| "unlisted"
>;