Metadata-Version: 2.4
Name: ncloud-mlx
Version: 0.1.0
Summary: CLI for the ML expert Platform on NAVER Cloud Platform
Project-URL: Homepage, https://guide.ncloud-docs.com/docs/ai-mlxp-overview
Project-URL: Documentation, https://guide.ncloud-docs.com/docs/ai-mlxp-overview
Author-email: navercloud-mlxp <dl_mlx_ncp_dev@navercorp.com>
License-Expression: Apache-2.0
License-File: LICENSE
Requires-Python: <4.0.0,>=3.9.0
Requires-Dist: aiofiles<24,>=23.2.1
Requires-Dist: httpx<0.28,>=0.27.0
Requires-Dist: ncloud-mlx-sdk>=0.1.1
Requires-Dist: pyfzf<0.4,>=0.3.1
Requires-Dist: python-dateutil<3,>=2.9.0.post0
Requires-Dist: pyyaml<7,>=6.0.1
Requires-Dist: rich<14,>=13.7.1
Requires-Dist: six<2,>=1.16.0
Requires-Dist: tabulate<0.10,>=0.9.0
Requires-Dist: timeago<2,>=1.0.16
Requires-Dist: typer==0.15.4
Requires-Dist: typing==3.7.4.3
Requires-Dist: yamlpath<4,>=3.8.2
Provides-Extra: all
Requires-Dist: ncloud-mlx-data-manager; extra == 'all'
Requires-Dist: ncloud-mlx-model-registry; extra == 'all'
Provides-Extra: data-manager
Requires-Dist: ncloud-mlx-data-manager; extra == 'data-manager'
Provides-Extra: model-registry
Requires-Dist: ncloud-mlx-model-registry; extra == 'model-registry'
Description-Content-Type: text/markdown

# ML expert Platform CLI

이 프로젝트는 ML expert Platform를 위한 Python CLI, SDK를 제공합니다.

## 설치

```sh
# ML expert Platform CLI만 설치 (기본)
pip install ncloud-mlx

# ML expert Platform CLI + Model Registry
pip install ncloud-mlx[model-registry]

# ML expert Platform CLI + Data Manager
pip install ncloud-mlx[data-manager]

# ML expert Platform CLI + 모든 확장 (Model Registry + Data Manager)
pip install ncloud-mlx[all]
```

## 기본 사용법

### 설정 관리

ML expert Platform CLI 설정을 구성하거나 확인할 수 있습니다:

```bash
# 설정 구성
$ mlx configure
Endpoint: https://clustername.mlxp.ncloud.com  # 사용하는 mlxp endpoint
Workspace name: my-workspace                   # 사용할 Workspace
Project name: my-project                       # 사용할 Project
API Key: your-api-key-here                     # 발급받은 API key

# 현재 설정 상태 확인
$ mlx status
```

### 도움말

```sh
# 전체 명령어 도움말
mlx --help

# 특정 명령어 도움말
mlx configure --help
mlx status --help
```

### 버전 확인

```sh
mlx --version
```

### 디버그 모드

문제가 발생했을 때 자세한 정보를 확인할 수 있습니다:

```sh
mlx --debug <명령어>
```
