Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
Duplicated from
jdelavande/chat-ui-energy
chkla
/
chat-ui-energy
like
0
Paused
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
ec78fb0
chat-ui-energy
/
src
/
lib
/
Types.ts
julien-c
HF Staff
move type to its own file
8cbfe1a
unverified
over 2 years ago
raw
Copy download link
history
blame
101 Bytes
export
type
Message
=
| {
from
:
'user'
;
content
:
string
;
}
| {
from
:
'bot'
;
content
:
string
;
};