hanzo 0.3.15__py3-none-any.whl → 0.3.16__py3-none-any.whl

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/cli.py CHANGED
@@ -26,7 +26,7 @@ from .utils.output import console
26
26
  from .interactive.repl import HanzoREPL
27
27
 
28
28
  # Version
29
- __version__ = "0.3.15"
29
+ __version__ = "0.3.16"
30
30
 
31
31
 
32
32
  @click.group(invoke_without_command=True)
hanzo/dev.py CHANGED
@@ -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", "-p", message]
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", "-p", prompt],
2339
+ ["openai", "api", "chat.completions.create", "-m", "gpt-4", "-g", prompt],
2340
2340
  capture_output=True,
2341
2341
  text=True,
2342
2342
  timeout=30
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: hanzo
3
- Version: 0.3.15
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
@@ -1,7 +1,7 @@
1
1
  hanzo/__init__.py,sha256=f6N_RcJZ0F9ADrROlvPi1OrgwjF8cWQm34cml8hb1zk,169
2
2
  hanzo/__main__.py,sha256=F3Vz0Ty3bdAj_8oxyETMIqxlmNRnJOAFB1XPxbyfouI,105
3
- hanzo/cli.py,sha256=JG1bBiCnc1lCnsl_lEJqXKp7iDj1KUn3s4hEu5pZkNI,18586
4
- hanzo/dev.py,sha256=akZqLo2Ox9HSyi-NOasmfb06-qTxdz7pDlP7Cc9-UxQ,97324
3
+ hanzo/cli.py,sha256=79v-Ucxub1NsJuvjGdyQBASyr59pGSM88n7US4LBjZk,18586
4
+ hanzo/dev.py,sha256=VYuxBQZi7IeVNle52GyN1bdeXMgZk5YSy-q6QiOluyA,97379
5
5
  hanzo/mcp_server.py,sha256=XVygFNn-9CVdu8c95sP7fQjIRtA8K7nsGpgQNe44BRg,460
6
6
  hanzo/orchestrator_config.py,sha256=JV7DS8aVZwBJ9XzgkQronFwV_A50QyXG3MH_pKwmCB8,11006
7
7
  hanzo/repl.py,sha256=sW1quuqGkJ_AqgjN2vLNdtWgKDlXIkXiO9Bo1QQI0G4,1089
@@ -24,7 +24,7 @@ hanzo/utils/__init__.py,sha256=5RRwKI852vp8smr4xCRgeKfn7dLEnHbdXGfVYTZ5jDQ,69
24
24
  hanzo/utils/config.py,sha256=FD_LoBpcoF5dgJ7WL4o6LDp2pdOy8kS-dJ6iRO2GcGM,4728
25
25
  hanzo/utils/net_check.py,sha256=YFbJ65SzfDYHkHLZe3n51VhId1VI3zhyx8p6BM-l6jE,3017
26
26
  hanzo/utils/output.py,sha256=W0j3psF07vJiX4s02gbN4zYWfbKNsb8TSIoagBSf5vA,2704
27
- hanzo-0.3.15.dist-info/METADATA,sha256=Fua1HkddM33hyQNQBUKbsfjdPDsURkJJPLPeuUMrTwM,4279
28
- hanzo-0.3.15.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
29
- hanzo-0.3.15.dist-info/entry_points.txt,sha256=pQLPMdqOXU_2BfTcMDhkqTCDNk_H6ApvYuSaWcuQOOw,171
30
- hanzo-0.3.15.dist-info/RECORD,,
27
+ hanzo-0.3.16.dist-info/METADATA,sha256=pVsilNXuBk6Rhg7f9GgrPEwyZbqHoYNsJVfzxoa69k0,4279
28
+ hanzo-0.3.16.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
29
+ hanzo-0.3.16.dist-info/entry_points.txt,sha256=pQLPMdqOXU_2BfTcMDhkqTCDNk_H6ApvYuSaWcuQOOw,171
30
+ hanzo-0.3.16.dist-info/RECORD,,
File without changes