Unified multi-language SDK for Hanzo AI infrastructure, combining Python, JavaScript/TypeScript, Rust, and Go implementations.
sdk/
├── src/ # Source code by language
│ ├── py/ # Python implementation
│ ├── js/ # JavaScript/TypeScript implementation
│ ├── rs/ # Rust implementation
│ └── go/ # Go implementation
├── docs/ # Documentation
├── tests/ # Cross-language tests
├── scripts/ # Build and deployment scripts
└── bin/ # Compiled binaries
pip install hanzonpm install -g @hanzo/clicargo install hanzo-cligo install github.com/hanzoai/sdk/cmd/hanzo@latestAll commands work identically across all language implementations:
hanzo node start- Start local AI nodehanzo agent run- Run AI agentshanzo mcp serve- Start MCP serverhanzo net status- Network statushanzo dev- Development tools
Each language implementation maintains feature parity while leveraging language-specific strengths:
- Python: ML/AI operations, data processing
- JavaScript: Web integration, browser compatibility
- Rust: System operations, performance-critical paths
- Go: Network operations, blockchain integration