chat-uigl / src /lib /utils /models.ts
DakMak's picture
Duplicate from coyotte508/chat-ui
ece0c29
raw
history blame contribute delete
161 Bytes
import type { Model } from "$lib/types/Model";
export const findCurrentModel = (models: Model[], id?: string) =>
models.find((m) => m.id === id) ?? models[0];