tars-cli 0.1.5__tar.gz → 0.1.6__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.
- {tars_cli-0.1.5 → tars_cli-0.1.6}/PKG-INFO +4 -4
- {tars_cli-0.1.5 → tars_cli-0.1.6}/README.md +3 -3
- {tars_cli-0.1.5 → tars_cli-0.1.6}/pyproject.toml +1 -1
- tars_cli-0.1.6/tars_cli/__init__.py +1 -0
- {tars_cli-0.1.5 → tars_cli-0.1.6}/tars_cli/utils/polling.py +1 -1
- {tars_cli-0.1.5 → tars_cli-0.1.6}/tars_cli.egg-info/PKG-INFO +4 -4
- tars_cli-0.1.5/tars_cli/__init__.py +0 -1
- {tars_cli-0.1.5 → tars_cli-0.1.6}/setup.cfg +0 -0
- {tars_cli-0.1.5 → tars_cli-0.1.6}/tars_cli/__main__.py +0 -0
- {tars_cli-0.1.5 → tars_cli-0.1.6}/tars_cli/app.py +0 -0
- {tars_cli-0.1.5 → tars_cli-0.1.6}/tars_cli/auth.py +0 -0
- {tars_cli-0.1.5 → tars_cli-0.1.6}/tars_cli/client.py +0 -0
- {tars_cli-0.1.5 → tars_cli-0.1.6}/tars_cli/commands/__init__.py +0 -0
- {tars_cli-0.1.5 → tars_cli-0.1.6}/tars_cli/commands/auth_cmd.py +0 -0
- {tars_cli-0.1.5 → tars_cli-0.1.6}/tars_cli/commands/dataset_cmd.py +0 -0
- {tars_cli-0.1.5 → tars_cli-0.1.6}/tars_cli/commands/eval_cmd.py +0 -0
- {tars_cli-0.1.5 → tars_cli-0.1.6}/tars_cli/commands/plugin_cmd.py +0 -0
- {tars_cli-0.1.5 → tars_cli-0.1.6}/tars_cli/commands/template_cmd.py +0 -0
- {tars_cli-0.1.5 → tars_cli-0.1.6}/tars_cli/config.py +0 -0
- {tars_cli-0.1.5 → tars_cli-0.1.6}/tars_cli/hints.py +0 -0
- {tars_cli-0.1.5 → tars_cli-0.1.6}/tars_cli/output.py +0 -0
- {tars_cli-0.1.5 → tars_cli-0.1.6}/tars_cli/utils/__init__.py +0 -0
- {tars_cli-0.1.5 → tars_cli-0.1.6}/tars_cli/utils/progress.py +0 -0
- {tars_cli-0.1.5 → tars_cli-0.1.6}/tars_cli.egg-info/SOURCES.txt +0 -0
- {tars_cli-0.1.5 → tars_cli-0.1.6}/tars_cli.egg-info/dependency_links.txt +0 -0
- {tars_cli-0.1.5 → tars_cli-0.1.6}/tars_cli.egg-info/entry_points.txt +0 -0
- {tars_cli-0.1.5 → tars_cli-0.1.6}/tars_cli.egg-info/requires.txt +0 -0
- {tars_cli-0.1.5 → tars_cli-0.1.6}/tars_cli.egg-info/top_level.txt +0 -0
- {tars_cli-0.1.5 → tars_cli-0.1.6}/tests/test_auth.py +0 -0
- {tars_cli-0.1.5 → tars_cli-0.1.6}/tests/test_client.py +0 -0
- {tars_cli-0.1.5 → tars_cli-0.1.6}/tests/test_config.py +0 -0
- {tars_cli-0.1.5 → tars_cli-0.1.6}/tests/test_hints.py +0 -0
- {tars_cli-0.1.5 → tars_cli-0.1.6}/tests/test_output.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: tars-cli
|
|
3
|
-
Version: 0.1.
|
|
3
|
+
Version: 0.1.6
|
|
4
4
|
Summary: tars 平台命令行工具
|
|
5
5
|
Requires-Python: >=3.11
|
|
6
6
|
Description-Content-Type: text/markdown
|
|
@@ -32,7 +32,7 @@ pip install tars-cli
|
|
|
32
32
|
|
|
33
33
|
```bash
|
|
34
34
|
$ tars --version
|
|
35
|
-
tars-cli 0.1.
|
|
35
|
+
tars-cli 0.1.6
|
|
36
36
|
```
|
|
37
37
|
|
|
38
38
|
### 升级
|
|
@@ -83,7 +83,7 @@ $ tars auth logout
|
|
|
83
83
|
### 插件管理
|
|
84
84
|
|
|
85
85
|
```bash
|
|
86
|
-
$ tars plugin import
|
|
86
|
+
$ tars plugin import <git_url>
|
|
87
87
|
✓ 插件验证通过
|
|
88
88
|
✓ Plugin 导入成功
|
|
89
89
|
|
|
@@ -247,7 +247,7 @@ failed_cases: <N>
|
|
|
247
247
|
|
|
248
248
|
```bash
|
|
249
249
|
export TARS_ACCESS_TOKEN=<token>
|
|
250
|
-
export TARS_SERVER_URL
|
|
250
|
+
export TARS_SERVER_URL=<server_url>
|
|
251
251
|
|
|
252
252
|
tars eval run <plugin_id> \
|
|
253
253
|
--agent-name <name> \
|
|
@@ -12,7 +12,7 @@ pip install tars-cli
|
|
|
12
12
|
|
|
13
13
|
```bash
|
|
14
14
|
$ tars --version
|
|
15
|
-
tars-cli 0.1.
|
|
15
|
+
tars-cli 0.1.6
|
|
16
16
|
```
|
|
17
17
|
|
|
18
18
|
### 升级
|
|
@@ -63,7 +63,7 @@ $ tars auth logout
|
|
|
63
63
|
### 插件管理
|
|
64
64
|
|
|
65
65
|
```bash
|
|
66
|
-
$ tars plugin import
|
|
66
|
+
$ tars plugin import <git_url>
|
|
67
67
|
✓ 插件验证通过
|
|
68
68
|
✓ Plugin 导入成功
|
|
69
69
|
|
|
@@ -227,7 +227,7 @@ failed_cases: <N>
|
|
|
227
227
|
|
|
228
228
|
```bash
|
|
229
229
|
export TARS_ACCESS_TOKEN=<token>
|
|
230
|
-
export TARS_SERVER_URL
|
|
230
|
+
export TARS_SERVER_URL=<server_url>
|
|
231
231
|
|
|
232
232
|
tars eval run <plugin_id> \
|
|
233
233
|
--agent-name <name> \
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
__version__ = "0.1.6"
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: tars-cli
|
|
3
|
-
Version: 0.1.
|
|
3
|
+
Version: 0.1.6
|
|
4
4
|
Summary: tars 平台命令行工具
|
|
5
5
|
Requires-Python: >=3.11
|
|
6
6
|
Description-Content-Type: text/markdown
|
|
@@ -32,7 +32,7 @@ pip install tars-cli
|
|
|
32
32
|
|
|
33
33
|
```bash
|
|
34
34
|
$ tars --version
|
|
35
|
-
tars-cli 0.1.
|
|
35
|
+
tars-cli 0.1.6
|
|
36
36
|
```
|
|
37
37
|
|
|
38
38
|
### 升级
|
|
@@ -83,7 +83,7 @@ $ tars auth logout
|
|
|
83
83
|
### 插件管理
|
|
84
84
|
|
|
85
85
|
```bash
|
|
86
|
-
$ tars plugin import
|
|
86
|
+
$ tars plugin import <git_url>
|
|
87
87
|
✓ 插件验证通过
|
|
88
88
|
✓ Plugin 导入成功
|
|
89
89
|
|
|
@@ -247,7 +247,7 @@ failed_cases: <N>
|
|
|
247
247
|
|
|
248
248
|
```bash
|
|
249
249
|
export TARS_ACCESS_TOKEN=<token>
|
|
250
|
-
export TARS_SERVER_URL
|
|
250
|
+
export TARS_SERVER_URL=<server_url>
|
|
251
251
|
|
|
252
252
|
tars eval run <plugin_id> \
|
|
253
253
|
--agent-name <name> \
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
__version__ = "0.1.5"
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|