licos-dev-cli 0.2.16__tar.gz → 0.2.18__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.16 → licos_dev_cli-0.2.18}/.gitignore +63 -57
- {licos_dev_cli-0.2.16 → licos_dev_cli-0.2.18}/PKG-INFO +2 -2
- {licos_dev_cli-0.2.16 → licos_dev_cli-0.2.18}/pyproject.toml +19 -19
- {licos_dev_cli-0.2.16 → licos_dev_cli-0.2.18}/src/licos_dev_cli/main.py +549 -549
- {licos_dev_cli-0.2.16 → licos_dev_cli-0.2.18}/src/licos_dev_cli/__init__.py +0 -0
- {licos_dev_cli-0.2.16 → licos_dev_cli-0.2.18}/tests/test_cli_output_paths.py +0 -0
- {licos_dev_cli-0.2.16 → licos_dev_cli-0.2.18}/tests/test_credit_check.py +0 -0
|
@@ -1,57 +1,63 @@
|
|
|
1
|
-
# Rust
|
|
2
|
-
/target/
|
|
3
|
-
**/*.rs.bk
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
.
|
|
12
|
-
|
|
13
|
-
*.
|
|
14
|
-
*.
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
.
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
.env
|
|
23
|
-
.env
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
/test/
|
|
31
|
-
/test/
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
*.
|
|
36
|
-
|
|
37
|
-
.
|
|
38
|
-
.
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
/
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
tools/
|
|
45
|
-
tools/codegraph-cache/*.tgz
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
dist
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
1
|
+
# Rust
|
|
2
|
+
/target/
|
|
3
|
+
**/*.rs.bk
|
|
4
|
+
|
|
5
|
+
# Node
|
|
6
|
+
node_modules/
|
|
7
|
+
packages/*/dist/
|
|
8
|
+
|
|
9
|
+
# IDE
|
|
10
|
+
.idea/
|
|
11
|
+
.vscode/
|
|
12
|
+
*.swp
|
|
13
|
+
*.swo
|
|
14
|
+
*.pyc
|
|
15
|
+
|
|
16
|
+
# OS
|
|
17
|
+
.DS_Store
|
|
18
|
+
Thumbs.db
|
|
19
|
+
|
|
20
|
+
# Environment
|
|
21
|
+
.env
|
|
22
|
+
.env.local
|
|
23
|
+
crates/industrial/industrial-stack.env
|
|
24
|
+
|
|
25
|
+
# Workspace
|
|
26
|
+
/workspace/
|
|
27
|
+
|
|
28
|
+
# Test runtime data
|
|
29
|
+
/test/licos-data/
|
|
30
|
+
/test/screenshots/
|
|
31
|
+
/test/vue-app/
|
|
32
|
+
|
|
33
|
+
# Build
|
|
34
|
+
*.log
|
|
35
|
+
*.pid
|
|
36
|
+
.licos
|
|
37
|
+
.tmp
|
|
38
|
+
.playwright-cli
|
|
39
|
+
|
|
40
|
+
/tmp
|
|
41
|
+
crates/industrial/bin/
|
|
42
|
+
|
|
43
|
+
tools/android-sdk-cache/*.zip
|
|
44
|
+
tools/codegraph-cache/*.tgz
|
|
45
|
+
tools/codegraph-cache/*.tgz
|
|
46
|
+
|
|
47
|
+
*.codex-*
|
|
48
|
+
|
|
49
|
+
__pycache__
|
|
50
|
+
|
|
51
|
+
dist
|
|
52
|
+
!tools/licos-chat-sdk/dist/
|
|
53
|
+
!tools/licos-chat-sdk/dist/**
|
|
54
|
+
!tools/licos-api-sdk/dist/
|
|
55
|
+
!tools/licos-api-sdk/dist/**
|
|
56
|
+
tools/licos-chat-sdk/node_modules/
|
|
57
|
+
tools/licos-api-sdk/node_modules/
|
|
58
|
+
logs
|
|
59
|
+
|
|
60
|
+
source
|
|
61
|
+
|
|
62
|
+
平台API
|
|
63
|
+
云端环境
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: licos-dev-cli
|
|
3
|
-
Version: 0.2.
|
|
3
|
+
Version: 0.2.18
|
|
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.19
|
|
@@ -1,19 +1,19 @@
|
|
|
1
|
-
[build-system]
|
|
2
|
-
requires = ["hatchling"]
|
|
3
|
-
build-backend = "hatchling.build"
|
|
4
|
-
|
|
5
|
-
[project]
|
|
6
|
-
name = "licos-dev-cli"
|
|
7
|
-
version = "0.2.
|
|
8
|
-
description = "LICOS Dev CLI - generate files and call model capabilities"
|
|
9
|
-
requires-python = ">=3.10"
|
|
10
|
-
dependencies = [
|
|
11
|
-
"licos-dev-sdk>=0.2.
|
|
12
|
-
"click>=8.1",
|
|
13
|
-
]
|
|
14
|
-
|
|
15
|
-
[project.scripts]
|
|
16
|
-
licos-dev = "licos_dev_cli.main:cli"
|
|
17
|
-
|
|
18
|
-
[tool.hatch.build.targets.wheel]
|
|
19
|
-
packages = ["src/licos_dev_cli"]
|
|
1
|
+
[build-system]
|
|
2
|
+
requires = ["hatchling"]
|
|
3
|
+
build-backend = "hatchling.build"
|
|
4
|
+
|
|
5
|
+
[project]
|
|
6
|
+
name = "licos-dev-cli"
|
|
7
|
+
version = "0.2.18"
|
|
8
|
+
description = "LICOS Dev CLI - generate files and call model capabilities"
|
|
9
|
+
requires-python = ">=3.10"
|
|
10
|
+
dependencies = [
|
|
11
|
+
"licos-dev-sdk>=0.2.19",
|
|
12
|
+
"click>=8.1",
|
|
13
|
+
]
|
|
14
|
+
|
|
15
|
+
[project.scripts]
|
|
16
|
+
licos-dev = "licos_dev_cli.main:cli"
|
|
17
|
+
|
|
18
|
+
[tool.hatch.build.targets.wheel]
|
|
19
|
+
packages = ["src/licos_dev_cli"]
|