hanzo 0.3.3__tar.gz → 0.3.4__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.4}/PKG-INFO +2 -2
- {hanzo-0.3.3 → hanzo-0.3.4}/hanzo.egg-info/PKG-INFO +2 -2
- {hanzo-0.3.3 → hanzo-0.3.4}/hanzo.egg-info/requires.txt +1 -1
- {hanzo-0.3.3 → hanzo-0.3.4}/setup.py +2 -2
- {hanzo-0.3.3 → hanzo-0.3.4}/hanzo/__init__.py +0 -0
- {hanzo-0.3.3 → hanzo-0.3.4}/hanzo/__main__.py +0 -0
- {hanzo-0.3.3 → hanzo-0.3.4}/hanzo/cli.py +0 -0
- {hanzo-0.3.3 → hanzo-0.3.4}/hanzo/commands/__init__.py +0 -0
- {hanzo-0.3.3 → hanzo-0.3.4}/hanzo/commands/agent.py +0 -0
- {hanzo-0.3.3 → hanzo-0.3.4}/hanzo/commands/auth.py +0 -0
- {hanzo-0.3.3 → hanzo-0.3.4}/hanzo/commands/chat.py +0 -0
- {hanzo-0.3.3 → hanzo-0.3.4}/hanzo/commands/cluster.py +0 -0
- {hanzo-0.3.3 → hanzo-0.3.4}/hanzo/commands/config.py +0 -0
- {hanzo-0.3.3 → hanzo-0.3.4}/hanzo/commands/mcp.py +0 -0
- {hanzo-0.3.3 → hanzo-0.3.4}/hanzo/commands/miner.py +0 -0
- {hanzo-0.3.3 → hanzo-0.3.4}/hanzo/commands/network.py +0 -0
- {hanzo-0.3.3 → hanzo-0.3.4}/hanzo/commands/repl.py +0 -0
- {hanzo-0.3.3 → hanzo-0.3.4}/hanzo/commands/tools.py +0 -0
- {hanzo-0.3.3 → hanzo-0.3.4}/hanzo/interactive/__init__.py +0 -0
- {hanzo-0.3.3 → hanzo-0.3.4}/hanzo/interactive/dashboard.py +0 -0
- {hanzo-0.3.3 → hanzo-0.3.4}/hanzo/interactive/repl.py +0 -0
- {hanzo-0.3.3 → hanzo-0.3.4}/hanzo/mcp_server.py +0 -0
- {hanzo-0.3.3 → hanzo-0.3.4}/hanzo/repl.py +0 -0
- {hanzo-0.3.3 → hanzo-0.3.4}/hanzo/router/__init__.py +0 -0
- {hanzo-0.3.3 → hanzo-0.3.4}/hanzo/utils/__init__.py +0 -0
- {hanzo-0.3.3 → hanzo-0.3.4}/hanzo/utils/config.py +0 -0
- {hanzo-0.3.3 → hanzo-0.3.4}/hanzo/utils/net_check.py +0 -0
- {hanzo-0.3.3 → hanzo-0.3.4}/hanzo/utils/output.py +0 -0
- {hanzo-0.3.3 → hanzo-0.3.4}/hanzo.egg-info/SOURCES.txt +0 -0
- {hanzo-0.3.3 → hanzo-0.3.4}/hanzo.egg-info/dependency_links.txt +0 -0
- {hanzo-0.3.3 → hanzo-0.3.4}/hanzo.egg-info/entry_points.txt +0 -0
- {hanzo-0.3.3 → hanzo-0.3.4}/hanzo.egg-info/top_level.txt +0 -0
- {hanzo-0.3.3 → hanzo-0.3.4}/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.4
|
|
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
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: hanzo
|
|
3
|
-
Version: 0.3.
|
|
3
|
+
Version: 0.3.4
|
|
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.4",
|
|
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
|
|
File without changes
|