hanzo 0.3.15__tar.gz → 0.3.16__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.15 → hanzo-0.3.16}/PKG-INFO +1 -1
- {hanzo-0.3.15 → hanzo-0.3.16}/pyproject.toml +1 -1
- {hanzo-0.3.15 → hanzo-0.3.16}/src/hanzo/cli.py +1 -1
- {hanzo-0.3.15 → hanzo-0.3.16}/src/hanzo/dev.py +3 -3
- {hanzo-0.3.15 → hanzo-0.3.16}/.gitignore +0 -0
- {hanzo-0.3.15 → hanzo-0.3.16}/README.md +0 -0
- {hanzo-0.3.15 → hanzo-0.3.16}/src/hanzo/__init__.py +0 -0
- {hanzo-0.3.15 → hanzo-0.3.16}/src/hanzo/__main__.py +0 -0
- {hanzo-0.3.15 → hanzo-0.3.16}/src/hanzo/commands/__init__.py +0 -0
- {hanzo-0.3.15 → hanzo-0.3.16}/src/hanzo/commands/agent.py +0 -0
- {hanzo-0.3.15 → hanzo-0.3.16}/src/hanzo/commands/auth.py +0 -0
- {hanzo-0.3.15 → hanzo-0.3.16}/src/hanzo/commands/chat.py +0 -0
- {hanzo-0.3.15 → hanzo-0.3.16}/src/hanzo/commands/cluster.py +0 -0
- {hanzo-0.3.15 → hanzo-0.3.16}/src/hanzo/commands/config.py +0 -0
- {hanzo-0.3.15 → hanzo-0.3.16}/src/hanzo/commands/mcp.py +0 -0
- {hanzo-0.3.15 → hanzo-0.3.16}/src/hanzo/commands/miner.py +0 -0
- {hanzo-0.3.15 → hanzo-0.3.16}/src/hanzo/commands/network.py +0 -0
- {hanzo-0.3.15 → hanzo-0.3.16}/src/hanzo/commands/repl.py +0 -0
- {hanzo-0.3.15 → hanzo-0.3.16}/src/hanzo/commands/tools.py +0 -0
- {hanzo-0.3.15 → hanzo-0.3.16}/src/hanzo/interactive/__init__.py +0 -0
- {hanzo-0.3.15 → hanzo-0.3.16}/src/hanzo/interactive/dashboard.py +0 -0
- {hanzo-0.3.15 → hanzo-0.3.16}/src/hanzo/interactive/repl.py +0 -0
- {hanzo-0.3.15 → hanzo-0.3.16}/src/hanzo/mcp_server.py +0 -0
- {hanzo-0.3.15 → hanzo-0.3.16}/src/hanzo/orchestrator_config.py +0 -0
- {hanzo-0.3.15 → hanzo-0.3.16}/src/hanzo/repl.py +0 -0
- {hanzo-0.3.15 → hanzo-0.3.16}/src/hanzo/router/__init__.py +0 -0
- {hanzo-0.3.15 → hanzo-0.3.16}/src/hanzo/utils/__init__.py +0 -0
- {hanzo-0.3.15 → hanzo-0.3.16}/src/hanzo/utils/config.py +0 -0
- {hanzo-0.3.15 → hanzo-0.3.16}/src/hanzo/utils/net_check.py +0 -0
- {hanzo-0.3.15 → hanzo-0.3.16}/src/hanzo/utils/output.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: hanzo
|
|
3
|
-
Version: 0.3.
|
|
3
|
+
Version: 0.3.16
|
|
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
|
|
@@ -1100,8 +1100,8 @@ Examples:
|
|
|
1100
1100
|
console.print("Then use: hanzo dev --orchestrator codex")
|
|
1101
1101
|
return
|
|
1102
1102
|
|
|
1103
|
-
# Use openai CLI to chat
|
|
1104
|
-
cmd = ["openai", "api", "chat", "-m", "gpt-4", "-
|
|
1103
|
+
# Use openai CLI to chat - correct syntax
|
|
1104
|
+
cmd = ["openai", "api", "chat.completions.create", "-m", "gpt-4", "-g", message]
|
|
1105
1105
|
|
|
1106
1106
|
process = subprocess.Popen(
|
|
1107
1107
|
cmd,
|
|
@@ -2336,7 +2336,7 @@ class MultiClaudeOrchestrator(HanzoDevOrchestrator):
|
|
|
2336
2336
|
try:
|
|
2337
2337
|
import subprocess
|
|
2338
2338
|
result = subprocess.run(
|
|
2339
|
-
["openai", "api", "chat", "-m", "gpt-4", "-
|
|
2339
|
+
["openai", "api", "chat.completions.create", "-m", "gpt-4", "-g", prompt],
|
|
2340
2340
|
capture_output=True,
|
|
2341
2341
|
text=True,
|
|
2342
2342
|
timeout=30
|
|
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
|