dojozero-client 0.2.1__tar.gz → 0.2.2__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 (19) hide show
  1. {dojozero_client-0.2.1 → dojozero_client-0.2.2}/.gitignore +7 -2
  2. {dojozero_client-0.2.1 → dojozero_client-0.2.2}/PKG-INFO +1 -1
  3. {dojozero_client-0.2.1 → dojozero_client-0.2.2}/pyproject.toml +1 -1
  4. {dojozero_client-0.2.1 → dojozero_client-0.2.2}/src/dojozero_client/_config.py +2 -2
  5. {dojozero_client-0.2.1 → dojozero_client-0.2.2}/README.md +0 -0
  6. {dojozero_client-0.2.1 → dojozero_client-0.2.2}/src/dojozero_client/__init__.py +0 -0
  7. {dojozero_client-0.2.1 → dojozero_client-0.2.2}/src/dojozero_client/_cli.py +0 -0
  8. {dojozero_client-0.2.1 → dojozero_client-0.2.2}/src/dojozero_client/_client.py +0 -0
  9. {dojozero_client-0.2.1 → dojozero_client-0.2.2}/src/dojozero_client/_credentials.py +0 -0
  10. {dojozero_client-0.2.1 → dojozero_client-0.2.2}/src/dojozero_client/_daemon.py +0 -0
  11. {dojozero_client-0.2.1 → dojozero_client-0.2.2}/src/dojozero_client/_exceptions.py +0 -0
  12. {dojozero_client-0.2.1 → dojozero_client-0.2.2}/src/dojozero_client/_rpc.py +0 -0
  13. {dojozero_client-0.2.1 → dojozero_client-0.2.2}/src/dojozero_client/_strategy.py +0 -0
  14. {dojozero_client-0.2.1 → dojozero_client-0.2.2}/src/dojozero_client/_transport.py +0 -0
  15. {dojozero_client-0.2.1 → dojozero_client-0.2.2}/tests/test_client.py +0 -0
  16. {dojozero_client-0.2.1 → dojozero_client-0.2.2}/tests/test_config.py +0 -0
  17. {dojozero_client-0.2.1 → dojozero_client-0.2.2}/tests/test_credentials.py +0 -0
  18. {dojozero_client-0.2.1 → dojozero_client-0.2.2}/tests/test_daemon.py +0 -0
  19. {dojozero_client-0.2.1 → dojozero_client-0.2.2}/tests/test_rpc.py +0 -0
@@ -158,7 +158,8 @@ uv.lock
158
158
  Thumbs.db
159
159
 
160
160
  # Sample scenario artifacts
161
- dojozero-store
161
+ dojozero-store/
162
+ store/
162
163
 
163
164
  # Data
164
165
  /outputs/
@@ -174,4 +175,8 @@ package-lock.json
174
175
  logs/
175
176
 
176
177
  # node modules
177
- node_modules/
178
+ node_modules/
179
+
180
+
181
+ agents/llms/*.yaml
182
+ !agents/llms/default.yaml
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: dojozero-client
3
- Version: 0.2.1
3
+ Version: 0.2.2
4
4
  Summary: Python SDK for external agents participating in DojoZero trials. Works with OpenClaw and CoPaw.
5
5
  Project-URL: Homepage, https://github.com/agentscope-ai/DojoZero
6
6
  Project-URL: Repository, https://github.com/agentscope-ai/DojoZero
@@ -4,7 +4,7 @@ build-backend = "hatchling.build"
4
4
 
5
5
  [project]
6
6
  name = "dojozero-client"
7
- version = "0.2.1"
7
+ version = "0.2.2"
8
8
  description = "Python SDK for external agents participating in DojoZero trials. Works with OpenClaw and CoPaw."
9
9
  readme = "README.md"
10
10
  requires-python = ">=3.11"
@@ -42,7 +42,7 @@ TRIALS_DIR = CONFIG_DIR / "trials"
42
42
  # Default config template with comments
43
43
  DEFAULT_CONFIG_TEMPLATE = """\
44
44
  # DojoZero Client Configuration
45
- # See: https://github.com/anthropics/dojozero
45
+ # See: https://github.com/agentscope-ai/dojozero
46
46
 
47
47
  # Dashboard server URL
48
48
  # For local development: http://localhost:8000
@@ -130,7 +130,7 @@ def save_config(
130
130
  # Write with comments
131
131
  content = f"""\
132
132
  # DojoZero Client Configuration
133
- # See: https://github.com/anthropics/dojozero
133
+ # See: https://github.com/agentscope-ai/dojozero
134
134
 
135
135
  # Dashboard server URL
136
136
  dashboard_url: {dashboard_url}