chat-ui / src /lib /utils /models.ts
kokofixcomputers's picture
Duplicate from huggingchat/chat-ui
8b7ec8f
import type { Model } from "$lib/types/Model";
export const findCurrentModel = (models: Model[], id?: string) =>
models.find((m) => m.id === id) ?? models[0];