hanzo 0.3.3__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.
- {hanzo-0.3.3 → hanzo-0.3.5}/PKG-INFO +2 -2
- {hanzo-0.3.3 → hanzo-0.3.5}/hanzo/cli.py +2 -2
- {hanzo-0.3.3 → hanzo-0.3.5}/hanzo.egg-info/PKG-INFO +2 -2
- {hanzo-0.3.3 → hanzo-0.3.5}/hanzo.egg-info/requires.txt +1 -1
- {hanzo-0.3.3 → hanzo-0.3.5}/setup.py +2 -2
- {hanzo-0.3.3 → hanzo-0.3.5}/hanzo/__init__.py +0 -0
- {hanzo-0.3.3 → hanzo-0.3.5}/hanzo/__main__.py +0 -0
- {hanzo-0.3.3 → hanzo-0.3.5}/hanzo/commands/__init__.py +0 -0
- {hanzo-0.3.3 → hanzo-0.3.5}/hanzo/commands/agent.py +0 -0
- {hanzo-0.3.3 → hanzo-0.3.5}/hanzo/commands/auth.py +0 -0
- {hanzo-0.3.3 → hanzo-0.3.5}/hanzo/commands/chat.py +0 -0
- {hanzo-0.3.3 → hanzo-0.3.5}/hanzo/commands/cluster.py +0 -0
- {hanzo-0.3.3 → hanzo-0.3.5}/hanzo/commands/config.py +0 -0
- {hanzo-0.3.3 → hanzo-0.3.5}/hanzo/commands/mcp.py +0 -0
- {hanzo-0.3.3 → hanzo-0.3.5}/hanzo/commands/miner.py +0 -0
- {hanzo-0.3.3 → hanzo-0.3.5}/hanzo/commands/network.py +0 -0
- {hanzo-0.3.3 → hanzo-0.3.5}/hanzo/commands/repl.py +0 -0
- {hanzo-0.3.3 → hanzo-0.3.5}/hanzo/commands/tools.py +0 -0
- {hanzo-0.3.3 → hanzo-0.3.5}/hanzo/interactive/__init__.py +0 -0
- {hanzo-0.3.3 → hanzo-0.3.5}/hanzo/interactive/dashboard.py +0 -0
- {hanzo-0.3.3 → hanzo-0.3.5}/hanzo/interactive/repl.py +0 -0
- {hanzo-0.3.3 → hanzo-0.3.5}/hanzo/mcp_server.py +0 -0
- {hanzo-0.3.3 → hanzo-0.3.5}/hanzo/repl.py +0 -0
- {hanzo-0.3.3 → hanzo-0.3.5}/hanzo/router/__init__.py +0 -0
- {hanzo-0.3.3 → hanzo-0.3.5}/hanzo/utils/__init__.py +0 -0
- {hanzo-0.3.3 → hanzo-0.3.5}/hanzo/utils/config.py +0 -0
- {hanzo-0.3.3 → hanzo-0.3.5}/hanzo/utils/net_check.py +0 -0
- {hanzo-0.3.3 → hanzo-0.3.5}/hanzo/utils/output.py +0 -0
- {hanzo-0.3.3 → hanzo-0.3.5}/hanzo.egg-info/SOURCES.txt +0 -0
- {hanzo-0.3.3 → hanzo-0.3.5}/hanzo.egg-info/dependency_links.txt +0 -0
- {hanzo-0.3.3 → hanzo-0.3.5}/hanzo.egg-info/entry_points.txt +0 -0
- {hanzo-0.3.3 → hanzo-0.3.5}/hanzo.egg-info/top_level.txt +0 -0
- {hanzo-0.3.3 → 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.
|
|
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
|
|
@@ -19,7 +19,7 @@ Classifier: Programming Language :: Python :: 3.12
|
|
|
19
19
|
Requires-Python: >=3.8
|
|
20
20
|
Description-Content-Type: text/markdown
|
|
21
21
|
Requires-Dist: click
|
|
22
|
-
Requires-Dist: hanzo-net>=0.1.
|
|
22
|
+
Requires-Dist: hanzo-net>=0.1.17
|
|
23
23
|
Requires-Dist: httpx
|
|
24
24
|
Requires-Dist: prompt-toolkit
|
|
25
25
|
Requires-Dist: pydantic
|
|
@@ -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.
|
|
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
|
|
@@ -19,7 +19,7 @@ Classifier: Programming Language :: Python :: 3.12
|
|
|
19
19
|
Requires-Python: >=3.8
|
|
20
20
|
Description-Content-Type: text/markdown
|
|
21
21
|
Requires-Dist: click
|
|
22
|
-
Requires-Dist: hanzo-net>=0.1.
|
|
22
|
+
Requires-Dist: hanzo-net>=0.1.17
|
|
23
23
|
Requires-Dist: httpx
|
|
24
24
|
Requires-Dist: prompt-toolkit
|
|
25
25
|
Requires-Dist: pydantic
|
|
@@ -2,7 +2,7 @@ from setuptools import setup, find_packages
|
|
|
2
2
|
|
|
3
3
|
setup(
|
|
4
4
|
name="hanzo",
|
|
5
|
-
version="0.3.
|
|
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
|
|
@@ -50,7 +50,7 @@ Visit [https://hanzo.ai](https://hanzo.ai) for full documentation.
|
|
|
50
50
|
packages=find_packages(),
|
|
51
51
|
install_requires=[
|
|
52
52
|
"click",
|
|
53
|
-
"hanzo-net>=0.1.
|
|
53
|
+
"hanzo-net>=0.1.17", # Updated to latest version with layout fixes
|
|
54
54
|
"httpx",
|
|
55
55
|
"prompt-toolkit",
|
|
56
56
|
"pydantic",
|
|
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
|
|
File without changes
|
|
File without changes
|