Hugging Face
Models
Datasets
Spaces
Posts
Docs
Solutions
Pricing
Log In
Sign Up
Spaces:
huggingchat
/
chat-ui
like
1.08k
Running
App
Files
Files
Community
602
5d07536
chat-ui
/
src
/
lib
/
utils
/
models.ts
Adrien Denat
Disable models (
#187
)
b7b2c8c
unverified
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
];