aiauto-client 0.1.1__tar.gz → 0.1.3__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: aiauto-client
3
- Version: 0.1.1
3
+ Version: 0.1.3
4
4
  Summary: AI Auto HPO (Hyperparameter Optimization) Client Library
5
5
  Author-email: AIAuto Team <ainode@zeroone.ai>
6
6
  Project-URL: Homepage, https://aiauto.cloude.ainode.ai
@@ -22,6 +22,8 @@ Requires-Python: >=3.8
22
22
  Description-Content-Type: text/markdown
23
23
  Requires-Dist: optuna>=3.0.0
24
24
  Requires-Dist: requests>=2.25.0
25
+ Requires-Dist: grpcio>=1.48.0
26
+ Requires-Dist: grpcio-status>=1.48.0
25
27
 
26
28
  # AIAuto - Hyperparameter Optimization Client Library
27
29
 
@@ -35,8 +37,7 @@ AIAuto는 Kubernetes 기반의 분산 HPO(Hyperparameter Optimization) 시스템
35
37
  - `aiauto_client-0.1.1.tar.gz` 생성
36
38
  - `aiauto_client.egg-info` 생성
37
39
  - `~/.pypirc` 파일에 설정 확인
38
- - `twine upload --repository aiauto-client dist/*`
39
- - `twine upload dist/*`
40
+ - `uv run twine upload --repository aiauto-client dist/*`
40
41
  - upload 시 pypi token 을 입력하라고 나옴, pypi 로그인 계정 설정가면 있다
41
42
 
42
43
  ## 설치
@@ -10,8 +10,7 @@ AIAuto는 Kubernetes 기반의 분산 HPO(Hyperparameter Optimization) 시스템
10
10
  - `aiauto_client-0.1.1.tar.gz` 생성
11
11
  - `aiauto_client.egg-info` 생성
12
12
  - `~/.pypirc` 파일에 설정 확인
13
- - `twine upload --repository aiauto-client dist/*`
14
- - `twine upload dist/*`
13
+ - `uv run twine upload --repository aiauto-client dist/*`
15
14
  - upload 시 pypi token 을 입력하라고 나옴, pypi 로그인 계정 설정가면 있다
16
15
 
17
16
  ## 설치
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
4
4
 
5
5
  [project]
6
6
  name = "aiauto-client"
7
- version = "0.1.1"
7
+ version = "0.1.3"
8
8
  description = "AI Auto HPO (Hyperparameter Optimization) Client Library"
9
9
  readme = "README.md"
10
10
  requires-python = ">=3.8"
@@ -28,6 +28,8 @@ classifiers = [
28
28
  dependencies = [
29
29
  "optuna>=3.0.0",
30
30
  "requests>=2.25.0",
31
+ "grpcio>=1.48.0",
32
+ "grpcio-status>=1.48.0",
31
33
  ]
32
34
 
33
35
  [project.urls]
@@ -0,0 +1,3 @@
1
+ # For Connect RPC over HTTP
2
+ # This will be converted to https://api.aiauto.pangyo.ainode.ai in production
3
+ AIAUTO_API_TARGET = "api.aiauto.pangyo.ainode.ai:443"
@@ -13,8 +13,8 @@ class ConnectRPCClient:
13
13
  if base_url:
14
14
  self.base_url = base_url
15
15
  else:
16
- # AIAUTO_API_TARGET is like "api.aiauto.cloud.ainode.ai:443"
17
- # Convert to "https://api.aiauto.cloud.ainode.ai"
16
+ # AIAUTO_API_TARGET is like "api.aiauto.pangyo.ainode.ai:443"
17
+ # Convert to "https://api.aiauto.pangyo.ainode.ai"
18
18
  host = AIAUTO_API_TARGET.split(':')[0]
19
19
  self.base_url = f"https://{host}"
20
20
 
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: aiauto-client
3
- Version: 0.1.1
3
+ Version: 0.1.3
4
4
  Summary: AI Auto HPO (Hyperparameter Optimization) Client Library
5
5
  Author-email: AIAuto Team <ainode@zeroone.ai>
6
6
  Project-URL: Homepage, https://aiauto.cloude.ainode.ai
@@ -22,6 +22,8 @@ Requires-Python: >=3.8
22
22
  Description-Content-Type: text/markdown
23
23
  Requires-Dist: optuna>=3.0.0
24
24
  Requires-Dist: requests>=2.25.0
25
+ Requires-Dist: grpcio>=1.48.0
26
+ Requires-Dist: grpcio-status>=1.48.0
25
27
 
26
28
  # AIAuto - Hyperparameter Optimization Client Library
27
29
 
@@ -35,8 +37,7 @@ AIAuto는 Kubernetes 기반의 분산 HPO(Hyperparameter Optimization) 시스템
35
37
  - `aiauto_client-0.1.1.tar.gz` 생성
36
38
  - `aiauto_client.egg-info` 생성
37
39
  - `~/.pypirc` 파일에 설정 확인
38
- - `twine upload --repository aiauto-client dist/*`
39
- - `twine upload dist/*`
40
+ - `uv run twine upload --repository aiauto-client dist/*`
40
41
  - upload 시 pypi token 을 입력하라고 나옴, pypi 로그인 계정 설정가면 있다
41
42
 
42
43
  ## 설치
@@ -0,0 +1,4 @@
1
+ optuna>=3.0.0
2
+ requests>=2.25.0
3
+ grpcio>=1.48.0
4
+ grpcio-status>=1.48.0
@@ -1,3 +0,0 @@
1
- # For Connect RPC over HTTP
2
- # This will be converted to https://api.aiauto.cloud.ainode.ai in production
3
- AIAUTO_API_TARGET = "api.aiauto.cloud.ainode.ai:443"
@@ -1,2 +0,0 @@
1
- optuna>=3.0.0
2
- requests>=2.25.0
File without changes