chat-ui / src /lib /utils /models.ts
Last commit not found
raw
history blame
161 Bytes
import type { Model } from "$lib/types/Model";
export const findCurrentModel = (models: Model[], id?: string) =>
models.find((m) => m.id === id) ?? models[0];