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