hanzo 0.3.4__tar.gz → 0.3.5__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.

Potentially problematic release.


This version of hanzo might be problematic. Click here for more details.

Files changed (33) hide show
  1. {hanzo-0.3.4 → hanzo-0.3.5}/PKG-INFO +1 -1
  2. {hanzo-0.3.4 → hanzo-0.3.5}/hanzo/cli.py +2 -2
  3. {hanzo-0.3.4 → hanzo-0.3.5}/hanzo.egg-info/PKG-INFO +1 -1
  4. {hanzo-0.3.4 → hanzo-0.3.5}/setup.py +1 -1
  5. {hanzo-0.3.4 → hanzo-0.3.5}/hanzo/__init__.py +0 -0
  6. {hanzo-0.3.4 → hanzo-0.3.5}/hanzo/__main__.py +0 -0
  7. {hanzo-0.3.4 → hanzo-0.3.5}/hanzo/commands/__init__.py +0 -0
  8. {hanzo-0.3.4 → hanzo-0.3.5}/hanzo/commands/agent.py +0 -0
  9. {hanzo-0.3.4 → hanzo-0.3.5}/hanzo/commands/auth.py +0 -0
  10. {hanzo-0.3.4 → hanzo-0.3.5}/hanzo/commands/chat.py +0 -0
  11. {hanzo-0.3.4 → hanzo-0.3.5}/hanzo/commands/cluster.py +0 -0
  12. {hanzo-0.3.4 → hanzo-0.3.5}/hanzo/commands/config.py +0 -0
  13. {hanzo-0.3.4 → hanzo-0.3.5}/hanzo/commands/mcp.py +0 -0
  14. {hanzo-0.3.4 → hanzo-0.3.5}/hanzo/commands/miner.py +0 -0
  15. {hanzo-0.3.4 → hanzo-0.3.5}/hanzo/commands/network.py +0 -0
  16. {hanzo-0.3.4 → hanzo-0.3.5}/hanzo/commands/repl.py +0 -0
  17. {hanzo-0.3.4 → hanzo-0.3.5}/hanzo/commands/tools.py +0 -0
  18. {hanzo-0.3.4 → hanzo-0.3.5}/hanzo/interactive/__init__.py +0 -0
  19. {hanzo-0.3.4 → hanzo-0.3.5}/hanzo/interactive/dashboard.py +0 -0
  20. {hanzo-0.3.4 → hanzo-0.3.5}/hanzo/interactive/repl.py +0 -0
  21. {hanzo-0.3.4 → hanzo-0.3.5}/hanzo/mcp_server.py +0 -0
  22. {hanzo-0.3.4 → hanzo-0.3.5}/hanzo/repl.py +0 -0
  23. {hanzo-0.3.4 → hanzo-0.3.5}/hanzo/router/__init__.py +0 -0
  24. {hanzo-0.3.4 → hanzo-0.3.5}/hanzo/utils/__init__.py +0 -0
  25. {hanzo-0.3.4 → hanzo-0.3.5}/hanzo/utils/config.py +0 -0
  26. {hanzo-0.3.4 → hanzo-0.3.5}/hanzo/utils/net_check.py +0 -0
  27. {hanzo-0.3.4 → hanzo-0.3.5}/hanzo/utils/output.py +0 -0
  28. {hanzo-0.3.4 → hanzo-0.3.5}/hanzo.egg-info/SOURCES.txt +0 -0
  29. {hanzo-0.3.4 → hanzo-0.3.5}/hanzo.egg-info/dependency_links.txt +0 -0
  30. {hanzo-0.3.4 → hanzo-0.3.5}/hanzo.egg-info/entry_points.txt +0 -0
  31. {hanzo-0.3.4 → hanzo-0.3.5}/hanzo.egg-info/requires.txt +0 -0
  32. {hanzo-0.3.4 → hanzo-0.3.5}/hanzo.egg-info/top_level.txt +0 -0
  33. {hanzo-0.3.4 → hanzo-0.3.5}/setup.cfg +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: hanzo
3
- Version: 0.3.4
3
+ Version: 0.3.5
4
4
  Summary: Hanzo AI - Complete AI Infrastructure Platform with CLI, Router, MCP, and Agent Runtime
5
5
  Home-page: https://hanzo.ai
6
6
  Author: Hanzo AI
@@ -159,7 +159,7 @@ async def start_compute_node(ctx, name: str = None, port: int = 52415,
159
159
  sys.argv.extend(["--node-id", name])
160
160
  if network != "local":
161
161
  sys.argv.extend(["--discovery-module", network])
162
- if models:
162
+ if models and len(models) > 0:
163
163
  sys.argv.extend(["--default-model", models[0]])
164
164
 
165
165
  # Import and run net
@@ -214,7 +214,7 @@ async def start_compute_node(ctx, name: str = None, port: int = 52415,
214
214
  cmd_args.extend(["--node-id", name])
215
215
  if network != "local":
216
216
  cmd_args.extend(["--discovery-module", network])
217
- if models:
217
+ if models and len(models) > 0:
218
218
  cmd_args.extend(["--default-model", models[0]])
219
219
 
220
220
  # Run net command with detected python
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: hanzo
3
- Version: 0.3.4
3
+ Version: 0.3.5
4
4
  Summary: Hanzo AI - Complete AI Infrastructure Platform with CLI, Router, MCP, and Agent Runtime
5
5
  Home-page: https://hanzo.ai
6
6
  Author: Hanzo AI
@@ -2,7 +2,7 @@ from setuptools import setup, find_packages
2
2
 
3
3
  setup(
4
4
  name="hanzo",
5
- version="0.3.4",
5
+ version="0.3.5",
6
6
  description="Hanzo AI - Complete AI Infrastructure Platform with CLI, Router, MCP, and Agent Runtime",
7
7
  long_description="""
8
8
  # Hanzo AI Platform
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