File size: 11,243 Bytes
5e9fb2f | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 | # Copyright 2019-present, the HuggingFace Inc. team.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
from dataclasses import dataclass
from datetime import datetime
from enum import Enum
from typing import Literal
from huggingface_hub.utils import parse_datetime
class SpaceStage(str, Enum):
"""
Enumeration of possible stage of a Space on the Hub.
Value can be compared to a string:
```py
assert SpaceStage.BUILDING == "BUILDING"
```
Taken from https://github.com/huggingface/moon-landing/blob/main/server/repo_types/SpaceInfo.ts#L61 (private url).
"""
# Copied from moon-landing > server > repo_types > SpaceInfo.ts (private repo)
NO_APP_FILE = "NO_APP_FILE"
CONFIG_ERROR = "CONFIG_ERROR"
BUILDING = "BUILDING"
BUILD_ERROR = "BUILD_ERROR"
RUNNING = "RUNNING"
RUNNING_BUILDING = "RUNNING_BUILDING"
RUNTIME_ERROR = "RUNTIME_ERROR"
DELETING = "DELETING"
STOPPED = "STOPPED"
PAUSED = "PAUSED"
APP_STARTING = "APP_STARTING"
RUNNING_APP_STARTING = "RUNNING_APP_STARTING"
class SpaceHardware(str, Enum):
"""
Enumeration of hardwares available to run your Space on the Hub.
Value can be compared to a string:
```py
assert SpaceHardware.CPU_BASIC == "cpu-basic"
```
Taken from https://github.com/huggingface-internal/moon-landing/blob/main/server/repo_types/SpaceHardwareFlavor.ts (private url).
"""
# CPU
CPU_BASIC = "cpu-basic"
CPU_UPGRADE = "cpu-upgrade"
CPU_PERFORMANCE = "cpu-performance"
CPU_XL = "cpu-xl"
SPRX8 = "sprx8"
# ZeroGPU
ZERO_A10G = "zero-a10g"
# GPU
T4_SMALL = "t4-small"
T4_MEDIUM = "t4-medium"
L4X1 = "l4x1"
L4X4 = "l4x4"
L40SX1 = "l40sx1"
L40SX4 = "l40sx4"
L40SX8 = "l40sx8"
A10G_SMALL = "a10g-small"
A10G_LARGE = "a10g-large"
A10G_LARGEX2 = "a10g-largex2"
A10G_LARGEX4 = "a10g-largex4"
A100_LARGE = "a100-large"
A100X4 = "a100x4"
A100X8 = "a100x8"
H200 = "h200"
H200X2 = "h200x2"
H200X4 = "h200x4"
H200X8 = "h200x8"
# Neuron
INF2X6 = "inf2x6"
class SpaceStorage(str, Enum):
"""
Enumeration of persistent storage available for your Space on the Hub.
Value can be compared to a string:
```py
assert SpaceStorage.SMALL == "small"
```
Taken from https://github.com/huggingface/moon-landing/blob/main/server/repo_types/SpaceHardwareFlavor.ts#L24 (private url).
"""
SMALL = "small"
MEDIUM = "medium"
LARGE = "large"
@dataclass
class Volume:
"""
Describes a volume to mount in a Space or Job container.
Args:
type (`str`):
Type of volume: `"bucket"`, `"model"`, `"dataset"`, or `"space"`.
source (`str`):
Source identifier, e.g. `"username/my-bucket"` or `"username/my-model"`.
mount_path (`str`):
Mount path inside the container, e.g. `"/data"`. Must start with `/`.
revision (`str` or `None`):
Git revision (only for repos, defaults to `"main"`).
read_only (`bool` or `None`):
Read-only mount. Forced `True` for repos, defaults to `False` for buckets.
path (`str` or `None`):
Subfolder prefix inside the bucket/repo to mount, e.g. `"path/to/dir"`.
"""
type: Literal["bucket", "model", "dataset", "space"]
source: str
mount_path: str
revision: str | None = None
read_only: bool | None = None
path: str | None = None
def __init__(self, **kwargs) -> None:
self.type = kwargs.get("type", "model")
self.source = kwargs["source"]
mount_path = kwargs.get("mountPath")
self.mount_path = mount_path if mount_path is not None else kwargs["mount_path"]
self.revision = kwargs.get("revision")
read_only = kwargs.get("readOnly")
self.read_only = read_only if read_only is not None else kwargs.get("read_only")
self.path = kwargs.get("path")
def to_dict(self) -> dict:
"""Serialize to the JSON payload expected by the Hub API."""
data: dict = {
"type": self.type,
"source": self.source,
"mountPath": self.mount_path,
}
if self.revision is not None:
data["revision"] = self.revision
if self.read_only is not None:
data["readOnly"] = self.read_only
if self.path is not None:
data["path"] = self.path
return data
def to_hf_handle(self) -> str:
"""Return the volume as an HF handle in the format expected by the CLI."""
path = f"/{self.path}" if self.path else ""
revision = f"@{self.revision}" if self.revision else ""
ro = {True: ":ro", False: ":rw", None: ""}.get(self.read_only, "")
return f"hf://{self.type}s/{self.source}{revision}{path}:{self.mount_path}{ro}"
@dataclass
class SpaceHotReloading:
status: Literal["created", "canceled"]
replica_statuses: list[tuple[str, str | None]] # See _hot_reloading_types.ApiCreateReloadResponse.res.status
raw: dict
def __init__(self, data: dict) -> None:
self.status = data["status"]
self.replica_statuses = data["replicaStatuses"]
self.raw = data
@dataclass
class SpaceRuntime:
"""
Contains information about the current runtime of a Space.
Args:
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 from `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 https://huggingface.co/docs/hub/spaces-gpus#sleep-time.
volumes (`list[Volume]` or `None`):
List of volumes mounted in the Space. Each volume is a [`Volume`] object describing its type, source,
mount path, and optional settings. `None` if no volumes are attached.
raw (`dict`):
Raw response from the server. Contains more information about the Space
runtime like number of replicas, number of cpu, memory size,...
"""
stage: SpaceStage
hardware: SpaceHardware | None
requested_hardware: SpaceHardware | None
sleep_time: int | None
storage: SpaceStorage | None
hot_reloading: SpaceHotReloading | None
volumes: list[Volume] | None
raw: dict
def __init__(self, data: dict) -> None:
self.stage = data["stage"]
self.hardware = data.get("hardware", {}).get("current")
self.requested_hardware = data.get("hardware", {}).get("requested")
self.sleep_time = data.get("gcTimeout")
self.storage = data.get("storage")
self.hot_reloading = SpaceHotReloading(raw_hr) if (raw_hr := data.get("hotReloading")) is not None else None
raw_volumes = data.get("volumes")
self.volumes = [Volume(**v) for v in raw_volumes] if raw_volumes is not None else None
self.raw = data
@dataclass
class SpaceVariable:
"""
Contains information about the current variables of a Space.
Args:
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` or None):
datetime of the last update of the variable (if the variable has been updated at least once).
"""
key: str
value: str
description: str | None
updated_at: datetime | None
def __init__(self, key: str, values: dict) -> None:
self.key = key
self.value = values["value"]
self.description = values.get("description")
updated_at = values.get("updatedAt")
self.updated_at = parse_datetime(updated_at) if updated_at is not None else None
@dataclass
class SpaceSearchResult:
"""A single result from the Spaces semantic search API.
Returned by [`HfApi.search_spaces`].
Attributes:
id (`str`):
ID of the Space (e.g. `"username/repo-name"`).
author (`str`):
Author of the Space.
title (`str`):
Display title of the Space.
emoji (`str` or `None`):
Emoji icon of the Space.
sdk (`str` or `None`):
SDK used by the Space (e.g. `"gradio"`, `"docker"`, `"static"`).
likes (`int`):
Number of likes.
private (`bool`):
Whether the Space is private.
tags (`list[str]` or `None`):
List of tags.
runtime ([`SpaceRuntime`] or `None`):
Runtime information (stage, hardware, etc.).
ai_short_description (`str` or `None`):
AI-generated short description.
ai_category (`str` or `None`):
AI-generated category (e.g. `"Image Generation"`).
semantic_relevancy_score (`float` or `None`):
Semantic relevancy score (0-1) relative to the search query.
trending_score (`int` or `None`):
Trending score.
"""
id: str
author: str
title: str
emoji: str | None
sdk: str | None
likes: int
private: bool
tags: list[str] | None
runtime: SpaceRuntime | None
ai_short_description: str | None
ai_category: str | None
semantic_relevancy_score: float | None
trending_score: int | None
def __init__(self, data: dict) -> None:
runtime = data.get("runtime")
self.id = data["id"]
self.author = data.get("author", "")
self.title = data.get("title", "")
self.emoji = data.get("emoji")
self.sdk = data.get("sdk")
self.likes = data.get("likes", 0)
self.private = data.get("private", False)
self.tags = data.get("tags")
self.runtime = SpaceRuntime(runtime) if runtime else None
self.ai_short_description = data.get("ai_short_description")
self.ai_category = data.get("ai_category")
self.semantic_relevancy_score = data.get("semanticRelevancyScore")
self.trending_score = data.get("trendingScore")
|