hanzo 0.3.22__py3-none-any.whl → 0.3.24__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.

@@ -1,137 +0,0 @@
1
- Metadata-Version: 2.4
2
- Name: hanzo
3
- Version: 0.3.22
4
- Summary: Hanzo AI - Complete AI Infrastructure Platform with CLI, Router, MCP, and Agent Runtime
5
- Project-URL: Homepage, https://hanzo.ai
6
- Project-URL: Repository, https://github.com/hanzoai/python-sdk
7
- Project-URL: Documentation, https://docs.hanzo.ai/cli
8
- Project-URL: Bug Tracker, https://github.com/hanzoai/python-sdk/issues
9
- Author-email: Hanzo AI <dev@hanzo.ai>
10
- Keywords: agents,ai,cli,hanzo,llm,local-ai,mcp,private-ai
11
- Classifier: Development Status :: 4 - Beta
12
- Classifier: Environment :: Console
13
- Classifier: Intended Audience :: Developers
14
- Classifier: License :: OSI Approved :: Apache Software License
15
- Classifier: Operating System :: OS Independent
16
- Classifier: Programming Language :: Python :: 3
17
- Classifier: Programming Language :: Python :: 3.10
18
- Classifier: Programming Language :: Python :: 3.11
19
- Classifier: Programming Language :: Python :: 3.12
20
- Classifier: Topic :: Scientific/Engineering :: Artificial Intelligence
21
- Classifier: Topic :: Software Development :: Libraries :: Python Modules
22
- Requires-Python: >=3.10
23
- Requires-Dist: anthropic>=0.25.0
24
- Requires-Dist: click>=8.1.0
25
- Requires-Dist: httpx>=0.23.0
26
- Requires-Dist: openai>=1.0.0
27
- Requires-Dist: prompt-toolkit>=3.0.0
28
- Requires-Dist: pydantic>=2.0.0
29
- Requires-Dist: pyyaml>=6.0
30
- Requires-Dist: rich>=13.0.0
31
- Requires-Dist: typer>=0.9.0
32
- Provides-Extra: agents
33
- Requires-Dist: hanzo-agents>=0.1.0; extra == 'agents'
34
- Requires-Dist: hanzo-network>=0.1.3; extra == 'agents'
35
- Provides-Extra: ai
36
- Requires-Dist: hanzoai>=1.0.0; extra == 'ai'
37
- Provides-Extra: all
38
- Requires-Dist: hanzo-aci>=0.2.8; extra == 'all'
39
- Requires-Dist: hanzo-agents>=0.1.0; extra == 'all'
40
- Requires-Dist: hanzo-mcp>=0.7.0; extra == 'all'
41
- Requires-Dist: hanzo-memory>=1.0.0; extra == 'all'
42
- Requires-Dist: hanzo-network>=0.1.3; extra == 'all'
43
- Requires-Dist: hanzo-repl>=0.1.0; extra == 'all'
44
- Requires-Dist: hanzoai>=1.0.0; extra == 'all'
45
- Provides-Extra: dev
46
- Requires-Dist: hanzo-aci>=0.2.8; extra == 'dev'
47
- Provides-Extra: mcp
48
- Requires-Dist: hanzo-mcp>=0.7.0; extra == 'mcp'
49
- Provides-Extra: repl
50
- Requires-Dist: hanzo-repl>=0.1.0; extra == 'repl'
51
- Provides-Extra: router
52
- Description-Content-Type: text/markdown
53
-
54
- # Hanzo AI - Complete AI Infrastructure Platform
55
-
56
- The main SDK for the Hanzo AI ecosystem, providing unified access to all Hanzo tools and services.
57
-
58
- ## Installation
59
-
60
- ```bash
61
- # Install base package with CLI
62
- pip install hanzo
63
-
64
- # Install with all components
65
- pip install hanzo[all]
66
-
67
- # Install specific components
68
- pip install hanzo[ai] # AI SDK (same as standalone hanzoai package)
69
- pip install hanzo[router] # LLM gateway router (replaces litellm)
70
- pip install hanzo[mcp] # Model Context Protocol server
71
- pip install hanzo[agents] # Agent runtime and orchestration
72
- pip install hanzo[repl] # Interactive REPL with AI chat
73
- ```
74
-
75
- ## Features
76
-
77
- - **Unified LLM Gateway**: Use `hanzo.router` instead of litellm for 100+ LLM providers
78
- - **MCP Integration**: Full Model Context Protocol support for AI tools
79
- - **Agent Runtime**: Build and deploy AI agents with the agent framework
80
- - **Interactive REPL**: Chat with AI models directly from the command line
81
- - **Complete SDK**: Import all Hanzo components from a single package
82
-
83
- ## Quick Start
84
-
85
- ### Command Line
86
- ```bash
87
- # Main CLI
88
- hanzo --help
89
-
90
- # Start MCP server
91
- hanzo-mcp
92
-
93
- # Interactive AI chat
94
- hanzo-ai
95
- hanzo-chat
96
-
97
- # REPL interface
98
- hanzo-repl
99
- ```
100
-
101
- ### Python SDK
102
- ```python
103
- import hanzo
104
-
105
- # Use router for LLM calls (replaces litellm)
106
- from hanzo import router
107
- response = router.completion(
108
- model="gpt-4",
109
- messages=[{"role": "user", "content": "Hello!"}]
110
- )
111
-
112
- # Use agents
113
- from hanzo import Agent, Network
114
- agent = Agent(name="assistant")
115
-
116
- # Use MCP tools
117
- from hanzo import Tool, MCPServer
118
-
119
- # Access AI SDK
120
- from hanzo import Client
121
- client = Client(api_key="...")
122
- ```
123
-
124
- ## Components
125
-
126
- - **hanzo.router**: Unified LLM gateway (replaces litellm)
127
- - **hanzo.mcp**: Model Context Protocol server and tools
128
- - **hanzo.agents**: Agent runtime and orchestration
129
- - **hanzo.memory**: Memory systems for agents
130
- - **hanzo.Client**: Main AI SDK client
131
-
132
- ## Documentation
133
-
134
- - [Hanzo AI Docs](https://docs.hanzo.ai)
135
- - [Router Documentation](https://docs.hanzo.ai/router)
136
- - [MCP Documentation](https://docs.hanzo.ai/mcp)
137
- - [Agent Documentation](https://docs.hanzo.ai/agents)
File without changes