Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
Duplicated from
radames/Real-Time-Latent-Consistency-Model
radames
/
Real-Time-SD-Turbo
like
115
Paused
App
Files
Files
Community
4
Fetching metadata from the HF Docker repository...
be97094
Real-Time-SD-Turbo
/
frontend
/
src
/
lib
/
store.ts
radames
blah
be97094
over 1 year ago
raw
Copy download link
history
blame
193 Bytes
import
{
writable,
type
Writable
, get
}
from
'svelte/store'
;
export
const
pipelineValues =
writable
({}
as
Record
<
string
,
any
>);
export
const
getPipelineValues
= (
) =>
get
(pipelineValues);