hanzo 0.3.17__py3-none-any.whl → 0.3.18__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.
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.17"
29
+ __version__ = "0.3.18"
30
30
 
31
31
 
32
32
  @click.group(invoke_without_command=True)
hanzo/dev.py CHANGED
@@ -678,12 +678,9 @@ class HanzoDevREPL:
678
678
  'prompt': '#666666', # Gray prompt arrow
679
679
  })
680
680
 
681
- # Custom light gray box for Rich panels
682
- LIGHT_GRAY_BOX = Box(
683
- "╭─╮\n"
684
- "│ │\n"
685
- "╰─╯\n"
686
- )
681
+ # Use a predefined box style that's similar to Claude
682
+ from rich.box import ROUNDED
683
+ LIGHT_GRAY_BOX = ROUNDED
687
684
 
688
685
  # Header
689
686
  console.print()
@@ -705,14 +702,12 @@ class HanzoDevREPL:
705
702
  console.print("[dim white]│[/dim white] ", end="")
706
703
 
707
704
  try:
708
- # Use prompt_toolkit for input with Claude-like styling
705
+ # Get input - using simple input() wrapped in executor for async
706
+ # The visual box is drawn by console.print statements
709
707
  user_input = await asyncio.get_event_loop().run_in_executor(
710
708
  None,
711
- lambda: prompt(
712
- '› ', # Using › instead of > for a more modern look
713
- style=claude_style,
714
- message=''
715
- )
709
+ input,
710
+ '› ' # Using › instead of > for a more modern look
716
711
  )
717
712
 
718
713
  # Draw input box border (bottom)
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: hanzo
3
- Version: 0.3.17
3
+ Version: 0.3.18
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=p-Ln-GEcx-jgh2deSohQHg5IE_cFWToooEoWukJRI0g,18586
4
- hanzo/dev.py,sha256=HJ77jECJB2E__4L8_TbNh42NLGG9K-PnM9qkywHgHAc,100902
3
+ hanzo/cli.py,sha256=NRm9ggHDbRscb66zo-YYFrT7qZVNO8si-HfT_cPIdKo,18586
4
+ hanzo/dev.py,sha256=yHO4yoDz0RPQfq6ytPDbzb8YnneN7nO6kXD35_p0tAU,100825
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.17.dist-info/METADATA,sha256=icndQAEKBTHjTwwOjcLpA71J6knW3TfemQKeK9LzX10,4279
28
- hanzo-0.3.17.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
29
- hanzo-0.3.17.dist-info/entry_points.txt,sha256=pQLPMdqOXU_2BfTcMDhkqTCDNk_H6ApvYuSaWcuQOOw,171
30
- hanzo-0.3.17.dist-info/RECORD,,
27
+ hanzo-0.3.18.dist-info/METADATA,sha256=vpNp0PaJla_zpraWuFVQ3HgCCtjwNEW_L5Y4IFL3qSg,4279
28
+ hanzo-0.3.18.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
29
+ hanzo-0.3.18.dist-info/entry_points.txt,sha256=pQLPMdqOXU_2BfTcMDhkqTCDNk_H6ApvYuSaWcuQOOw,171
30
+ hanzo-0.3.18.dist-info/RECORD,,
File without changes