hanzo 0.2.9__tar.gz → 0.2.11__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.2.9 → hanzo-0.2.11}/PKG-INFO +2 -2
- {hanzo-0.2.9 → hanzo-0.2.11}/pyproject.toml +2 -2
- {hanzo-0.2.9 → hanzo-0.2.11}/src/hanzo/__init__.py +1 -1
- {hanzo-0.2.9 → hanzo-0.2.11}/src/hanzo/cli.py +1 -1
- {hanzo-0.2.9 → hanzo-0.2.11}/.gitignore +0 -0
- {hanzo-0.2.9 → hanzo-0.2.11}/README.md +0 -0
- {hanzo-0.2.9 → hanzo-0.2.11}/src/hanzo/__main__.py +0 -0
- {hanzo-0.2.9 → hanzo-0.2.11}/src/hanzo/commands/__init__.py +0 -0
- {hanzo-0.2.9 → hanzo-0.2.11}/src/hanzo/commands/agent.py +0 -0
- {hanzo-0.2.9 → hanzo-0.2.11}/src/hanzo/commands/auth.py +0 -0
- {hanzo-0.2.9 → hanzo-0.2.11}/src/hanzo/commands/chat.py +0 -0
- {hanzo-0.2.9 → hanzo-0.2.11}/src/hanzo/commands/cluster.py +0 -0
- {hanzo-0.2.9 → hanzo-0.2.11}/src/hanzo/commands/config.py +0 -0
- {hanzo-0.2.9 → hanzo-0.2.11}/src/hanzo/commands/mcp.py +0 -0
- {hanzo-0.2.9 → hanzo-0.2.11}/src/hanzo/commands/miner.py +0 -0
- {hanzo-0.2.9 → hanzo-0.2.11}/src/hanzo/commands/network.py +0 -0
- {hanzo-0.2.9 → hanzo-0.2.11}/src/hanzo/commands/repl.py +0 -0
- {hanzo-0.2.9 → hanzo-0.2.11}/src/hanzo/commands/tools.py +0 -0
- {hanzo-0.2.9 → hanzo-0.2.11}/src/hanzo/interactive/__init__.py +0 -0
- {hanzo-0.2.9 → hanzo-0.2.11}/src/hanzo/interactive/dashboard.py +0 -0
- {hanzo-0.2.9 → hanzo-0.2.11}/src/hanzo/interactive/repl.py +0 -0
- {hanzo-0.2.9 → hanzo-0.2.11}/src/hanzo/mcp_server.py +0 -0
- {hanzo-0.2.9 → hanzo-0.2.11}/src/hanzo/repl.py +0 -0
- {hanzo-0.2.9 → hanzo-0.2.11}/src/hanzo/router/__init__.py +0 -0
- {hanzo-0.2.9 → hanzo-0.2.11}/src/hanzo/utils/__init__.py +0 -0
- {hanzo-0.2.9 → hanzo-0.2.11}/src/hanzo/utils/config.py +0 -0
- {hanzo-0.2.9 → hanzo-0.2.11}/src/hanzo/utils/net_check.py +0 -0
- {hanzo-0.2.9 → hanzo-0.2.11}/src/hanzo/utils/output.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: hanzo
|
|
3
|
-
Version: 0.2.
|
|
3
|
+
Version: 0.2.11
|
|
4
4
|
Summary: Hanzo AI - Complete AI Infrastructure Platform with CLI, Router, MCP, and Agent Runtime
|
|
5
5
|
Project-URL: Homepage, https://hanzo.ai
|
|
6
6
|
Project-URL: Repository, https://github.com/hanzoai/python-sdk
|
|
@@ -23,7 +23,7 @@ Classifier: Topic :: Scientific/Engineering :: Artificial Intelligence
|
|
|
23
23
|
Classifier: Topic :: Software Development :: Libraries :: Python Modules
|
|
24
24
|
Requires-Python: >=3.8
|
|
25
25
|
Requires-Dist: click>=8.1.0
|
|
26
|
-
Requires-Dist: hanzo-net>=0.1.
|
|
26
|
+
Requires-Dist: hanzo-net>=0.1.3
|
|
27
27
|
Requires-Dist: httpx>=0.23.0
|
|
28
28
|
Requires-Dist: prompt-toolkit>=3.0.0
|
|
29
29
|
Requires-Dist: pydantic>=2.0.0
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
[project]
|
|
2
2
|
name = "hanzo"
|
|
3
|
-
version = "0.2.
|
|
3
|
+
version = "0.2.11"
|
|
4
4
|
description = "Hanzo AI - Complete AI Infrastructure Platform with CLI, Router, MCP, and Agent Runtime"
|
|
5
5
|
authors = [
|
|
6
6
|
{name = "Hanzo AI", email = "dev@hanzo.ai"},
|
|
@@ -13,7 +13,7 @@ dependencies = [
|
|
|
13
13
|
"httpx>=0.23.0",
|
|
14
14
|
"pydantic>=2.0.0",
|
|
15
15
|
"pyyaml>=6.0",
|
|
16
|
-
"hanzo-net>=0.1.
|
|
16
|
+
"hanzo-net>=0.1.3",
|
|
17
17
|
]
|
|
18
18
|
readme = "README.md"
|
|
19
19
|
requires-python = ">= 3.8"
|
|
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
|