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

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