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.
Files changed (33) hide show
  1. {tars_cli-0.1.5 → tars_cli-0.1.6}/PKG-INFO +4 -4
  2. {tars_cli-0.1.5 → tars_cli-0.1.6}/README.md +3 -3
  3. {tars_cli-0.1.5 → tars_cli-0.1.6}/pyproject.toml +1 -1
  4. tars_cli-0.1.6/tars_cli/__init__.py +1 -0
  5. {tars_cli-0.1.5 → tars_cli-0.1.6}/tars_cli/utils/polling.py +1 -1
  6. {tars_cli-0.1.5 → tars_cli-0.1.6}/tars_cli.egg-info/PKG-INFO +4 -4
  7. tars_cli-0.1.5/tars_cli/__init__.py +0 -1
  8. {tars_cli-0.1.5 → tars_cli-0.1.6}/setup.cfg +0 -0
  9. {tars_cli-0.1.5 → tars_cli-0.1.6}/tars_cli/__main__.py +0 -0
  10. {tars_cli-0.1.5 → tars_cli-0.1.6}/tars_cli/app.py +0 -0
  11. {tars_cli-0.1.5 → tars_cli-0.1.6}/tars_cli/auth.py +0 -0
  12. {tars_cli-0.1.5 → tars_cli-0.1.6}/tars_cli/client.py +0 -0
  13. {tars_cli-0.1.5 → tars_cli-0.1.6}/tars_cli/commands/__init__.py +0 -0
  14. {tars_cli-0.1.5 → tars_cli-0.1.6}/tars_cli/commands/auth_cmd.py +0 -0
  15. {tars_cli-0.1.5 → tars_cli-0.1.6}/tars_cli/commands/dataset_cmd.py +0 -0
  16. {tars_cli-0.1.5 → tars_cli-0.1.6}/tars_cli/commands/eval_cmd.py +0 -0
  17. {tars_cli-0.1.5 → tars_cli-0.1.6}/tars_cli/commands/plugin_cmd.py +0 -0
  18. {tars_cli-0.1.5 → tars_cli-0.1.6}/tars_cli/commands/template_cmd.py +0 -0
  19. {tars_cli-0.1.5 → tars_cli-0.1.6}/tars_cli/config.py +0 -0
  20. {tars_cli-0.1.5 → tars_cli-0.1.6}/tars_cli/hints.py +0 -0
  21. {tars_cli-0.1.5 → tars_cli-0.1.6}/tars_cli/output.py +0 -0
  22. {tars_cli-0.1.5 → tars_cli-0.1.6}/tars_cli/utils/__init__.py +0 -0
  23. {tars_cli-0.1.5 → tars_cli-0.1.6}/tars_cli/utils/progress.py +0 -0
  24. {tars_cli-0.1.5 → tars_cli-0.1.6}/tars_cli.egg-info/SOURCES.txt +0 -0
  25. {tars_cli-0.1.5 → tars_cli-0.1.6}/tars_cli.egg-info/dependency_links.txt +0 -0
  26. {tars_cli-0.1.5 → tars_cli-0.1.6}/tars_cli.egg-info/entry_points.txt +0 -0
  27. {tars_cli-0.1.5 → tars_cli-0.1.6}/tars_cli.egg-info/requires.txt +0 -0
  28. {tars_cli-0.1.5 → tars_cli-0.1.6}/tars_cli.egg-info/top_level.txt +0 -0
  29. {tars_cli-0.1.5 → tars_cli-0.1.6}/tests/test_auth.py +0 -0
  30. {tars_cli-0.1.5 → tars_cli-0.1.6}/tests/test_client.py +0 -0
  31. {tars_cli-0.1.5 → tars_cli-0.1.6}/tests/test_config.py +0 -0
  32. {tars_cli-0.1.5 → tars_cli-0.1.6}/tests/test_hints.py +0 -0
  33. {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.5
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.5
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 https://github.com/org/repo.git
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=https://your-tars-server.com
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.5
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 https://github.com/org/repo.git
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=https://your-tars-server.com
230
+ export TARS_SERVER_URL=<server_url>
231
231
 
232
232
  tars eval run <plugin_id> \
233
233
  --agent-name <name> \
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
4
4
 
5
5
  [project]
6
6
  name = "tars-cli"
7
- version = "0.1.5"
7
+ version = "0.1.6"
8
8
  description = "tars 平台命令行工具"
9
9
  requires-python = ">=3.11"
10
10
  dependencies = [
@@ -0,0 +1 @@
1
+ __version__ = "0.1.6"
@@ -8,7 +8,7 @@ import typer
8
8
 
9
9
  from tars_cli.utils.progress import ProgressDisplay
10
10
 
11
- TERMINAL_STATES = {"completed", "failed", "partial", "timeout", "cancelled"}
11
+ TERMINAL_STATES = {"completed", "failed", "partial", "timeout", "cancelled", "idle"}
12
12
 
13
13
 
14
14
  def poll_task(
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: tars-cli
3
- Version: 0.1.5
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.5
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 https://github.com/org/repo.git
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=https://your-tars-server.com
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