Hugging Face
Models
Datasets
Spaces
Posts
Docs
Solutions
Pricing
Log In
Sign Up
Spaces:
Duplicated from
mithril-security/blind_chat
AIlexDev
/
blind_chat
like
0
Sleeping
App
Files
Files
Community
faca43f
blind_chat
/
src
/
lib
/
utils
/
models.ts
lauro1
test
faca43f
about 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
];