chat-ui / src /lib /types /Model.ts
nsarrazin's picture
nsarrazin HF staff
Support custom system prompts from the user (#399)
cd6894d unverified
raw
history blame
No virus
267 Bytes
import type { BackendModel } from "$lib/server/models";
export type Model = Pick<
BackendModel,
| "id"
| "name"
| "displayName"
| "websiteUrl"
| "datasetName"
| "promptExamples"
| "parameters"
| "description"
| "modelUrl"
| "datasetUrl"
| "preprompt"
>;