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

Potentially problematic release.


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

Files changed (33) hide show
  1. {hanzo-0.3.5 → hanzo-0.3.6}/PKG-INFO +1 -1
  2. {hanzo-0.3.5 → hanzo-0.3.6}/hanzo/cli.py +4 -4
  3. {hanzo-0.3.5 → hanzo-0.3.6}/hanzo.egg-info/PKG-INFO +1 -1
  4. {hanzo-0.3.5 → hanzo-0.3.6}/setup.py +1 -1
  5. {hanzo-0.3.5 → hanzo-0.3.6}/hanzo/__init__.py +0 -0
  6. {hanzo-0.3.5 → hanzo-0.3.6}/hanzo/__main__.py +0 -0
  7. {hanzo-0.3.5 → hanzo-0.3.6}/hanzo/commands/__init__.py +0 -0
  8. {hanzo-0.3.5 → hanzo-0.3.6}/hanzo/commands/agent.py +0 -0
  9. {hanzo-0.3.5 → hanzo-0.3.6}/hanzo/commands/auth.py +0 -0
  10. {hanzo-0.3.5 → hanzo-0.3.6}/hanzo/commands/chat.py +0 -0
  11. {hanzo-0.3.5 → hanzo-0.3.6}/hanzo/commands/cluster.py +0 -0
  12. {hanzo-0.3.5 → hanzo-0.3.6}/hanzo/commands/config.py +0 -0
  13. {hanzo-0.3.5 → hanzo-0.3.6}/hanzo/commands/mcp.py +0 -0
  14. {hanzo-0.3.5 → hanzo-0.3.6}/hanzo/commands/miner.py +0 -0
  15. {hanzo-0.3.5 → hanzo-0.3.6}/hanzo/commands/network.py +0 -0
  16. {hanzo-0.3.5 → hanzo-0.3.6}/hanzo/commands/repl.py +0 -0
  17. {hanzo-0.3.5 → hanzo-0.3.6}/hanzo/commands/tools.py +0 -0
  18. {hanzo-0.3.5 → hanzo-0.3.6}/hanzo/interactive/__init__.py +0 -0
  19. {hanzo-0.3.5 → hanzo-0.3.6}/hanzo/interactive/dashboard.py +0 -0
  20. {hanzo-0.3.5 → hanzo-0.3.6}/hanzo/interactive/repl.py +0 -0
  21. {hanzo-0.3.5 → hanzo-0.3.6}/hanzo/mcp_server.py +0 -0
  22. {hanzo-0.3.5 → hanzo-0.3.6}/hanzo/repl.py +0 -0
  23. {hanzo-0.3.5 → hanzo-0.3.6}/hanzo/router/__init__.py +0 -0
  24. {hanzo-0.3.5 → hanzo-0.3.6}/hanzo/utils/__init__.py +0 -0
  25. {hanzo-0.3.5 → hanzo-0.3.6}/hanzo/utils/config.py +0 -0
  26. {hanzo-0.3.5 → hanzo-0.3.6}/hanzo/utils/net_check.py +0 -0
  27. {hanzo-0.3.5 → hanzo-0.3.6}/hanzo/utils/output.py +0 -0
  28. {hanzo-0.3.5 → hanzo-0.3.6}/hanzo.egg-info/SOURCES.txt +0 -0
  29. {hanzo-0.3.5 → hanzo-0.3.6}/hanzo.egg-info/dependency_links.txt +0 -0
  30. {hanzo-0.3.5 → hanzo-0.3.6}/hanzo.egg-info/entry_points.txt +0 -0
  31. {hanzo-0.3.5 → hanzo-0.3.6}/hanzo.egg-info/requires.txt +0 -0
  32. {hanzo-0.3.5 → hanzo-0.3.6}/hanzo.egg-info/top_level.txt +0 -0
  33. {hanzo-0.3.5 → hanzo-0.3.6}/setup.cfg +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: hanzo
3
- Version: 0.3.5
3
+ Version: 0.3.6
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
@@ -97,7 +97,7 @@ def serve(ctx, name: str, port: int):
97
97
  @click.pass_context
98
98
  def net(ctx, name: str, port: int, network: str, models: tuple, max_jobs: int):
99
99
  """Start the Hanzo Network distributed AI compute node."""
100
- asyncio.run(start_compute_node(ctx, name, port, network, models, max_jobs))
100
+ start_compute_node(ctx, name, port, network, models, max_jobs)
101
101
 
102
102
 
103
103
  @cli.command()
@@ -109,10 +109,10 @@ def net(ctx, name: str, port: int, network: str, models: tuple, max_jobs: int):
109
109
  @click.pass_context
110
110
  def node(ctx, name: str, port: int, network: str, models: tuple, max_jobs: int):
111
111
  """Alias for 'hanzo net' - Start as a compute node for the Hanzo network."""
112
- asyncio.run(start_compute_node(ctx, name, port, network, models, max_jobs))
112
+ start_compute_node(ctx, name, port, network, models, max_jobs)
113
113
 
114
114
 
115
- async def start_compute_node(ctx, name: str = None, port: int = 52415,
115
+ def start_compute_node(ctx, name: str = None, port: int = 52415,
116
116
  network: str = "mainnet", models: tuple = None,
117
117
  max_jobs: int = 10):
118
118
  """Start this instance as a compute node using hanzo/net."""
@@ -174,7 +174,7 @@ async def start_compute_node(ctx, name: str = None, port: int = 52415,
174
174
  console.print("\nPress Ctrl+C to stop\n")
175
175
 
176
176
  # Run net
177
- await net_run()
177
+ net_run()
178
178
  finally:
179
179
  sys.argv = original_argv
180
180
  else:
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: hanzo
3
- Version: 0.3.5
3
+ Version: 0.3.6
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.5",
5
+ version="0.3.6",
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