Space runtime
Last updated
Last updated
Check the documentation page for the reference of methods to manage your Space on the Hub.
Duplicate a Space:
Fetch current runtime:
Manage secrets: and
Manage hardware:
Manage state: , ,
( data: typing.Dict )
Parameters
stage (str
) — Current stage of the space. Example: RUNNING.
hardware (str
or None
) — Current hardware of the space. Example: “cpu-basic”. Can be None
if Space is BUILDING
for the first time.
requested_hardware (str
or None
) — Requested hardware. Can be different than hardware
especially if the request has just been made. Example: “t4-medium”. Can be None
if no hardware has been requested yet.
sleep_time (int
or None
) — Number of seconds the Space will be kept alive after the last request. By default (if value is None
), the Space will never go to sleep if it’s running on an upgraded hardware, while it will go to sleep after 48 hours on a free ‘cpu-basic’ hardware. For more details, see .
raw (dict
) — Raw response from the server. Contains more information about the Space runtime like number of replicas, number of cpu, memory size,…
Contains information about the current runtime of a Space.
( valuenames = Nonemodule = Nonequalname = Nonetype = Nonestart = 1 )
Enumeration of hardwares available to run your Space on the Hub.
Value can be compared to a string:
Copied
( valuenames = Nonemodule = Nonequalname = Nonetype = Nonestart = 1 )
Enumeration of possible stage of a Space on the Hub.
Value can be compared to a string:
Copied
( valuenames = Nonemodule = Nonequalname = Nonetype = Nonestart = 1 )
Enumeration of persistent storage available for your Space on the Hub.
Value can be compared to a string:
Copied
( key: strvalues: typing.Dict )
Parameters
key (str
) — Variable key. Example: "MODEL_REPO_ID"
value (str
) — Variable value. Example: "the_model_repo_id"
.
description (str
or None) — Description of the variable. Example: "Model Repo ID of the implemented model"
.
updatedAt (datetime
) — datetime of the last update of the variable.
Contains information about the current variables of a Space.
Taken from (private url).
Taken from (private url).
Taken from (private url).