licos-dev-cli 0.2.18__tar.gz → 0.2.20__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.
- {licos_dev_cli-0.2.18 → licos_dev_cli-0.2.20}/PKG-INFO +2 -2
- {licos_dev_cli-0.2.18 → licos_dev_cli-0.2.20}/pyproject.toml +2 -2
- {licos_dev_cli-0.2.18 → licos_dev_cli-0.2.20}/src/licos_dev_cli/main.py +1 -1
- {licos_dev_cli-0.2.18 → licos_dev_cli-0.2.20}/.gitignore +0 -0
- {licos_dev_cli-0.2.18 → licos_dev_cli-0.2.20}/src/licos_dev_cli/__init__.py +0 -0
- {licos_dev_cli-0.2.18 → licos_dev_cli-0.2.20}/tests/test_cli_output_paths.py +0 -0
- {licos_dev_cli-0.2.18 → licos_dev_cli-0.2.20}/tests/test_credit_check.py +0 -0
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: licos-dev-cli
|
|
3
|
-
Version: 0.2.
|
|
3
|
+
Version: 0.2.20
|
|
4
4
|
Summary: LICOS Dev CLI - generate files and call model capabilities
|
|
5
5
|
Requires-Python: >=3.10
|
|
6
6
|
Requires-Dist: click>=8.1
|
|
7
|
-
Requires-Dist: licos-dev-sdk>=0.2.
|
|
7
|
+
Requires-Dist: licos-dev-sdk>=0.2.21
|
|
@@ -4,11 +4,11 @@ build-backend = "hatchling.build"
|
|
|
4
4
|
|
|
5
5
|
[project]
|
|
6
6
|
name = "licos-dev-cli"
|
|
7
|
-
version = "0.2.
|
|
7
|
+
version = "0.2.20"
|
|
8
8
|
description = "LICOS Dev CLI - generate files and call model capabilities"
|
|
9
9
|
requires-python = ">=3.10"
|
|
10
10
|
dependencies = [
|
|
11
|
-
"licos-dev-sdk>=0.2.
|
|
11
|
+
"licos-dev-sdk>=0.2.21",
|
|
12
12
|
"click>=8.1",
|
|
13
13
|
]
|
|
14
14
|
|
|
@@ -409,7 +409,7 @@ def html_cmd(input_path, content, filename, output_dir, content_type):
|
|
|
409
409
|
@click.option(
|
|
410
410
|
"--category-code",
|
|
411
411
|
default="llm",
|
|
412
|
-
help="Model category code, for example llm,
|
|
412
|
+
help="Model category code, for example llm, image_generation, video_generation",
|
|
413
413
|
)
|
|
414
414
|
def model_catalog(refresh, workspace_id, input_capabilities, category_code):
|
|
415
415
|
"""Print platform model capability catalog."""
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|