Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
huggingchat
/
chat-ui
like
1.16k
Running
App
Files
Files
Community
744
9540b25
chat-ui
/
src
/
lib
/
stores
/
titleUpdate.ts
nsarrazin
Title update occur when available (
#512
)
f249cfc
unverified
over 1 year ago
raw
Copy download link
history
blame
Safe
160 Bytes
import
{ writable }
from
"svelte/store"
;
export
interface
TitleUpdate
{
convId
:
string
;
title
:
string
;
}
export
default
writable<
TitleUpdate
|
null
>(
null
);