rope-kernel-v2 / code /autoslm /client /__init__.py
DavidBShan's picture
Upload folder using huggingface_hub
65295d4 verified
Raw
History Blame Contribute Delete
406 Bytes
"""HTTP client for the managed AutoSLM control plane (used by the CLI and MCP bridge)."""
from .config import load_credentials, save_credentials
from .http import ApiClient, ApiError, ClientError, client_from_config, verify_freesolo_key
__all__ = [
"ApiClient",
"ApiError",
"ClientError",
"client_from_config",
"load_credentials",
"save_credentials",
"verify_freesolo_key",
]