Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
Duplicated from
mithril-security/blind_chat
AchyuthGamer
/
OpenGPT-Chat-UI
like
4
Runtime error
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
7a073fd
OpenGPT-Chat-UI
/
src
/
lib
/
utils
/
models.ts
lauro1
test
faca43f
over 1 year ago
raw
Copy download link
history
blame
Safe
161 Bytes
import
type
{
Model
}
from
"$lib/types/Model"
;
export
const
findCurrentModel
= (
models: Model[], id?:
string
) =>
models.
find
(
(
m
) =>
m.
id
=== id) ?? models[
0
];