hanzo 0.3.21__py3-none-any.whl → 0.3.23__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/base_agent.py +517 -0
- hanzo/batch_orchestrator.py +988 -0
- hanzo/cli.py +1 -1
- hanzo/commands/repl.py +5 -2
- hanzo/dev.py +463 -261
- hanzo/fallback_handler.py +78 -52
- hanzo/memory_manager.py +145 -122
- hanzo/model_registry.py +399 -0
- hanzo/rate_limiter.py +59 -74
- hanzo/streaming.py +91 -70
- {hanzo-0.3.21.dist-info → hanzo-0.3.23.dist-info}/METADATA +1 -1
- {hanzo-0.3.21.dist-info → hanzo-0.3.23.dist-info}/RECORD +14 -11
- {hanzo-0.3.21.dist-info → hanzo-0.3.23.dist-info}/WHEEL +0 -0
- {hanzo-0.3.21.dist-info → hanzo-0.3.23.dist-info}/entry_points.txt +0 -0
hanzo/cli.py
CHANGED
hanzo/commands/repl.py
CHANGED
|
@@ -167,8 +167,11 @@ def exec(ctx, command: tuple, model: str):
|
|
|
167
167
|
|
|
168
168
|
asyncio.run(run())
|
|
169
169
|
|
|
170
|
-
except ImportError:
|
|
171
|
-
console.print("[red]Error:[/red]
|
|
170
|
+
except ImportError as e:
|
|
171
|
+
console.print(f"[red]Import Error:[/red] {e}")
|
|
172
|
+
console.print(
|
|
173
|
+
"[yellow]Note:[/yellow] hanzo-repl may not be installed correctly"
|
|
174
|
+
)
|
|
172
175
|
except Exception as e:
|
|
173
176
|
console.print(f"[red]Error: {e}[/red]")
|
|
174
177
|
|