File size: 7,074 Bytes
99f58d9 | 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 | """Stdlib HTTP client for the AutoSLM control plane (no extra dependencies).
Every CLI/MCP operation maps to one method here. Server errors (FastAPI's
``{"detail": ...}``) surface as ``ApiError`` with the server's message; connection
problems surface as ``ClientError`` with an actionable hint.
"""
from __future__ import annotations
import json
import os
import urllib.error
import urllib.request
from typing import Any
from .config import load_credentials
class ClientError(RuntimeError):
"""Expected client-side errors (no key, unreachable server) — printed cleanly."""
class ApiError(ClientError):
def __init__(self, status: int, message: str):
super().__init__(message)
self.status = status
# Login is handled by the freesolo backend (not the autoslm control plane): `slm login`
# verifies the user's freesolo API key here. The same key authenticates the autoslm
# control plane, which accepts freesolo-issued keys.
DEFAULT_FREESOLO_BASE_URL = "https://api.freesolo.co"
FREESOLO_AUTH_VERIFY_PATH = "/api/auth/verify"
def freesolo_base_url(override: str | None = None) -> str:
return (override or os.environ.get("FREESOLO_BASE_URL") or DEFAULT_FREESOLO_BASE_URL).rstrip(
"/"
)
def _detail_from_http_error(exc: urllib.error.HTTPError) -> str:
"""Extract the server's error message from an HTTPError body (FastAPI ``detail``)."""
body = exc.read()
try:
detail = json.loads(body).get("detail") or body.decode()
except (ValueError, AttributeError):
detail = body.decode(errors="replace") if body else str(exc)
return str(detail)
def verify_freesolo_key(api_key: str, base_url: str | None = None) -> None:
"""Verify a freesolo API key against the freesolo backend's ``/api/auth/verify``.
Raises :class:`ClientError`/:class:`ApiError` if the key is rejected or the backend is
unreachable; returns ``None`` on success. Keys are issued from the freesolo dashboard.
"""
base = freesolo_base_url(base_url)
url = f"{base}{FREESOLO_AUTH_VERIFY_PATH}"
req = urllib.request.Request(
url,
method="GET",
headers={"Authorization": f"Bearer {api_key}", "Content-Type": "application/json"},
)
try:
with urllib.request.urlopen(req, timeout=30) as resp:
resp.read()
except urllib.error.HTTPError as exc:
if exc.code in (401, 403):
raise ClientError(
"freesolo rejected this API key — create or copy a valid key from your "
"freesolo dashboard and pass it with `slm login --api-key` (or FREESOLO_API_KEY)"
) from exc
raise ApiError(exc.code, _detail_from_http_error(exc)) from exc
except urllib.error.URLError as exc:
raise ClientError(
f"cannot reach the freesolo backend at {base} ({exc.reason}); "
"check your network connection and FREESOLO_BASE_URL"
) from exc
class ApiClient:
def __init__(self, api_url: str, api_key: str | None = None, timeout: float = 60.0):
self.api_url = api_url.rstrip("/")
self.api_key = api_key
self.timeout = timeout
def _request(
self,
method: str,
path: str,
body: dict | None = None,
timeout: float | None = None,
) -> Any:
headers = {"Content-Type": "application/json"}
if self.api_key:
headers["Authorization"] = f"Bearer {self.api_key}"
req = urllib.request.Request(
f"{self.api_url}{path}",
method=method,
data=json.dumps(body).encode() if body is not None else None,
headers=headers,
)
try:
with urllib.request.urlopen(req, timeout=timeout or self.timeout) as resp:
raw = resp.read()
return json.loads(raw) if raw else {}
except urllib.error.HTTPError as exc:
raise ApiError(exc.code, _detail_from_http_error(exc)) from exc
except urllib.error.URLError as exc:
raise ClientError(
f"cannot reach the AutoSLM service at {self.api_url} ({exc.reason}); "
"check your network connection and AUTOSLM_API_URL"
) from exc
# -- identity ----------------------------------------------------------------------
def me(self) -> dict:
return self._request("GET", "/v1/me")
def health(self) -> dict:
return self._request("GET", "/v1/health", timeout=10.0)
# -- runs --------------------------------------------------------------------------
def create_run(self, spec: dict) -> dict:
return self._request("POST", "/v1/runs", body={"spec": spec})
def list_runs(self) -> list[dict]:
return self._request("GET", "/v1/runs")["runs"]
def get_run(self, run_id: str) -> dict:
return self._request("GET", f"/v1/runs/{run_id}")
def get_logs(self, run_id: str, offset: int = 0) -> dict:
return self._request("GET", f"/v1/runs/{run_id}/logs?offset={int(offset)}")
def cancel_run(self, run_id: str) -> dict:
return self._request("POST", f"/v1/runs/{run_id}/cancel")
# -- serving -----------------------------------------------------------------------
def deploy(
self,
run_id: str,
mode: str = "dev",
idle_timeout_s: int = 300,
dry_run: bool = False,
) -> dict:
# always-on blocks on the server until the worker has downloaded the
# model/adapter and vLLM is healthy (the no-cold-start guarantee), which can
# take many minutes — use the serve-scale timeout, not the default 60s.
deploy_timeout = 30 * 60 if (mode == "always-on" and not dry_run) else None
return self._request(
"POST",
f"/v1/runs/{run_id}/deploy",
body={"mode": mode, "idle_timeout_s": idle_timeout_s, "dry_run": dry_run},
timeout=deploy_timeout,
)
def undeploy(self, run_id: str) -> dict:
return self._request("DELETE", f"/v1/runs/{run_id}/deploy")
def deployments(self) -> list[dict]:
return self._request("GET", "/v1/deployments")["deployments"]
def chat(
self,
run_id: str,
messages: list[dict],
temperature: float = 0.0,
max_tokens: int = 512,
) -> dict:
# Cold starts in dev mode can take minutes; give inference a generous timeout.
return self._request(
"POST",
f"/v1/runs/{run_id}/chat",
body={"messages": messages, "temperature": temperature, "max_tokens": max_tokens},
timeout=30 * 60,
)
def client_from_config(require_key: bool = True) -> ApiClient:
"""Build a client from the stored credentials; fail with a clear hint when logged out."""
api_url, api_key = load_credentials()
if require_key and not api_key:
raise ClientError(
"not logged in — run `slm login` with your freesolo API key (or set FREESOLO_API_KEY)"
)
return ApiClient(api_url, api_key)
|