Spaces:
Sleeping
Sleeping
File size: 1,631 Bytes
44e7e06 |
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 |
import uuid
from dataclasses import dataclass
from enum import IntEnum, StrEnum
from pydantic import BaseModel
from typing_extensions import Optional, Dict,Any
class SandboxStatus(StrEnum):
"""Sandbox status enumeration."""
INIT = 'Pending' # Initialization state
RUNNING = 'Running' # Running
STOPPED = 'Stopped' # Stopped
ERROR = 'Failed' # Error state
REMOVED = 'Removed' # Removed
UNKNOWN = 'Unknown' # Removed
class SandboxEnvType(IntEnum):
"""Sandbox env type enumeration."""
LOCAL = 1
K8S = 2
SUPERCOMPUTER = 3
@dataclass
class SandboxCreateResponse:
sandbox_id: str = str(uuid.uuid4())
env_type: int = SandboxEnvType.LOCAL
status: Optional[str] = None
mcp_config: Optional[Any] = None
@dataclass
class SandboxK8sResponse(SandboxCreateResponse):
pod_name: Optional[str] = None
service_name: Optional[str] = None
cluster_ip: Optional[str] = None
host: Optional[str] = None
@dataclass
class SandboxLocalResponse(SandboxCreateResponse):
host: Optional[str] = None
@dataclass
class SandboxSuperResponse(SandboxCreateResponse):
host: Optional[str] = None
@dataclass
class SandboxInfo:
"""Information about a sandbox."""
sandbox_id: str
"""Sandbox ID."""
status: str
"""sandbox status"""
metadata: Dict[str, str]
"""Saved sandbox metadata."""
class EnvConfig(BaseModel):
"""Data structure contained in the environment"""
name: str = "default"
version: str = "1.0.0"
dockerfile: Optional[str] = None #Dockerfile of the image required when creating the environment |