chat-ui / src /lib /types /Model.ts
nsarrazin's picture
nsarrazin HF staff
Add support for tgi multimodal models (#531)
0e5c445 unverified
raw history blame
No virus
283 Bytes
import type { BackendModel } from "$lib/server/models";
export type Model = Pick<
BackendModel,
| "id"
| "name"
| "displayName"
| "websiteUrl"
| "datasetName"
| "promptExamples"
| "parameters"
| "description"
| "modelUrl"
| "datasetUrl"
| "preprompt"
| "multimodal"
>;