30 Commits
Author SHA1 Message Date
Hanzo Dev e8bcf2726f chore: add AGENTS.md, GEMINI.md, QWEN.md to .gitignore
Exclude all AI assistant symlink names so symlinks pointing to LLM.md
are not accidentally committed.
2026-02-28 10:28:03 -08:00
Zach Kelling dfb692d54b feat: comprehensive landing page + 44 model doc pages
- Full redesign with header, footer, pricing, chat widget, Try Zen CTA
- All 49 models listed across 10 modalities
- 30 new model documentation pages (44 total)
- Hanzo SDK examples (hanzoai) replacing OpenAI SDK
- Ecosystem, research, and open weights sections
- Login (hanzo.id) and Try Zen (hanzo.chat) in header
2026-02-22 12:27:19 -08:00
Zach Kelling 15e5e675b4 feat: redesign landing page with full model catalog and docs
Comprehensive landing page replacing minimal placeholder with:
- Hero with stats, flagship model highlights
- Zen4 and Zen3 generation tables with full specs
- Architecture overview, model catalog (10 categories, 45+ models)
- Agentic dataset section, quick start code examples
- Open weights formats, research papers
- All upstream references removed from docs content
2026-02-22 01:15:08 -08:00
Zach Kelling 823d58f96f fix: remove upstream refs, update zen4-max to 1T+ MoE
Rebuilt from hanzoai/docs monorepo. All upstream model references
(Qwen3, GLM, Zhipu) removed from public docs. zen-max now correctly
shows 1.04T MoE specs.
2026-02-22 00:49:05 -08:00
Zach Kelling f34a8d8c20 feat: deploy zen-docs from hanzo/docs monorepo
Replace stale standalone site with zen-docs built from the
hanzoai/docs monorepo (apps/zen-docs). 32 static pages including
model docs, API reference, training guides, and datasets.
All model data sourced from @zenlm/models npm package.
2026-02-21 23:02:37 -08:00
Zach Kelling cad9e977b9 chore: standardize LLM.md/CLAUDE.md convention 2026-02-17 19:00:33 -08:00
Zach Kelling 690665e351 chore: add Apache-2.0 LICENSE 2026-02-14 05:27:49 -08:00
Zach Kelling 4ef4eb9add Replace shuriken logo with lotus for Zen branding
Purple lotus flower (🪷) as logo, icon, and favicon.
SVG + PNG formats for all contexts.
2026-02-09 19:49:08 -08:00
Zach Kelling 4bcb7fb2ab Rename Zen4 Max Pro to Zen4 Pro Max across site
Follow Apple naming convention: Pro Max instead of Max Pro.
Updates hero, model cards, comparison tables, and all HF/GitHub links.
2026-02-09 19:47:42 -08:00
Zach Kelling 35f6e3398d Zen4: Update site with complete model family lineup
- Homepage: Zen4 Consumer, Coder, and Ultra model tables
- Models page: Full Zen4 lineup with cards and comparison table
- Added datasets page
- Status labels: Available, Cloud Only, Coming Soon
- All HuggingFace and GitHub links for zenlm/ repos
2026-02-09 19:17:02 -08:00
Zach Kelling cdd02dc273 Add updated zen-guard paper 2025-12-21 12:52:30 -08:00
Hanzo Dev af22b68c0b Correct zen-max training hardware requirements
- INT4 model is ~370GB (not 60GB)
- Needs 4x A100 80GB or 8x A100 40GB
- Total VRAM ~500GB for QLoRA training
2025-11-17 00:34:47 -08:00
Hanzo Dev 7c5fdae4eb Add zen-max cloud training information 2025-11-16 23:28:43 -08:00
Hanzo Dev 3373e657a8 Add zen-max (671B MoE) model documentation
- Based on Moonshot AI Kimi K2 Thinking (DeepseekV3)
- 384 experts, 8 active per token (~14B active parameters)
- 256K context with 96K-128K thinking tokens
- Top benchmarks: AIME 99.1%, SWE-Bench 71.3%, BrowseComp 60.2%
- HuggingFace: https://huggingface.co/zenlm/zen-max
2025-11-16 16:47:15 -08:00
Hanzo Dev aecf5b0788 Update zen-nano context to 40,960 tokens 2025-11-15 23:25:53 -08:00
Hanzo Dev cf3d655f1c Fix zen-omni: Qwen3-Omni (multimodal) not Qwen3-7B + add docs/paper links
- Updated zen-omni to show Qwen3-Omni as base (multimodal: text+vision+audio)
- Added docsLink and paperLink to ModelCard component
- zen-omni now shows proper modalities and type
- Added links to documentation sites and whitepapers
- Updated all model cards with complete resource links
2025-11-13 11:16:18 -08:00
Hanzo Dev ec0b782909 Add zen-vl to models page 2025-11-05 13:28:09 -08:00
Hanzo Dev 79da891b6d fix: add missing models page (was excluded by .gitignore)
- Fixed .gitignore to only ignore root-level directories
  - Changed models/ to /models/ (and similar for other paths)
  - This allows docs/models/ and src/app/models/ to be tracked
- Added missing files:
  - src/app/models/page.tsx (source code)
  - docs/models/index.html (static page)
  - docs/_next/static/chunks/app/models/ (Next.js chunks)
- Models page is now properly included in repository
2025-10-23 22:35:20 -07:00
Hanzo Dev d20b30baed fix: rebuild Next.js static export with proper HTML generation
- Fixed distDir configuration causing build cache instead of static HTML
- Rebuild generated proper static HTML files:
  - docs/index.html (home page)
  - docs/models/index.html (models catalog)
  - docs/research/index.html (research papers)
  - docs/404.html (404 page)
- Added .nojekyll for GitHub Pages routing
- Updated tsconfig.json (Next.js auto-formatting)
- All pages now properly render as static HTML with SSG
2025-10-23 22:08:19 -07:00
Hanzo Dev fe19c19b26 feat: migrate to Next.js + TypeScript with static export
- Convert to Next.js 15 with TypeScript
- Create reusable React components for Header/Footer (DRY)
- Convert all pages to TSX: page.tsx, models/page.tsx, research/page.tsx
- Configure static export to docs/ for GitHub Pages
- Add .nojekyll for proper routing
- All builds generate static HTML (SSG)
- Remove old build.js template system
- TypeScript for type safety
- Next.js Image optimization disabled for static export
2025-10-23 22:03:02 -07:00
Hanzo Dev 96df87648c feat: add build system with DRY templates
- Create shared header/footer templates in docs/templates/
- Add build.js script to compile templates into final HTML
- Add package.json with build script
- Create src/ directory for source templates
- Update index.html to use template system
- No React/Next.js - keeping it simple for 3-page static site
2025-10-23 21:55:52 -07:00
Hanzo Dev 7b83d0fb28 fix: update research page stats to 2025 and 1T+ range 2025-10-23 21:04:59 -07:00
Hanzo Dev 699909fb49 fix: hide hero stats section 2025-10-23 19:38:10 -07:00
Hanzo Dev 3fcc3310d3 fix: responsive header layout 2025-10-23 19:08:08 -07:00
Hanzo Dev 8c2ea00afe feat: update header layout and parameter range
- Link Zen LM logo to home page across all pages
- Move GitHub/HuggingFace icons to far right of header
- Use HuggingFace PNG logo instead of SVG
- Update parameter range from 0.6B-32B to 0.6B-1T+
- Improve header layout with icons on the right
- Ensure consistent navigation across all pages
2025-10-23 19:05:24 -07:00
Hanzo Dev 8e933fe88d feat: complete multi-page site with research papers
MAJOR UPDATE: Full website transformation for XR/VR/Robotics focus

Pages Added:
- models.html: Complete catalog of 24+ models organized by category
- research.html: 15 compiled research papers with download links

Papers Built & Added (15 PDFs in docs/papers/):
- zen-technical-report.pdf (master technical report)
- Core: zen-eco, zen-pro, zen-coder, zen-agent, zen-guard
- Multimodal: zen-omni, zen-designer, zen-artist, zen-musician, zen-director, zen-foley, zen-scribe, zen-world
- Infrastructure: gym

Landing Page Enhanced (index.html):
- Mission: Real-Time Hyper-Modal AI for XR/VR/Robotics
- Emphasizes sub-10ms latency, spatial awareness, multimodal fusion
- Stats dashboard: 24+ models across language/vision/audio/3D/video
- Streamlined overview (detailed models → models.html)
- CTAs to Models and Research pages

README Updated:
- Complete documentation of site structure
- All 24 models listed with descriptions
- Development & deployment instructions
- Citation information
- XR/VR/Robotics mission front and center

Navigation:
- Consistent across all pages: Home | Models | Research
- Active states for current page

Technical:
- All LaTeX papers compiled with pdflatex
- PDFs organized in docs/papers/
- GitHub Pages auto-deployment configured
- Clean separation: homepage (overview) → models page (catalog) → research page (papers)
2025-10-23 18:58:48 -07:00
Hanzo Dev cfee515772 feat: clean repo and enhance site with icons
- Remove all model files/dirs from repo (moved to parent)
- Add GitHub and HuggingFace icons to header
- Remove card animation for immediate visibility
- Update copyright to Zen Authors
- Enhanced .gitignore to prevent future clutter
- Repo now contains only docs site and workflows
2025-10-23 15:55:30 -07:00
Hanzo Dev d5dbc3cd4a style: remove tagline from header 2025-10-23 15:52:47 -07:00
Hanzo Dev 40439bbecd feat: add GitHub Pages workflow and update branding to Zen LM
- Add GitHub Actions workflow for automated Pages deployment
- Change all branding from Zen AI to Zen LM
- Remove Japanese character (禅) from site
- Update meta tags and page titles
- Ready for deployment to zenlm.org
2025-10-23 15:49:07 -07:00
Hanzo Dev 249627542f feat: zen ai docs site for zenlm.org
- Comprehensive docs for all 24 zen models
- Core models: nano, eco, omni, pro, coder, next
- Multimodal: designer, artist, video, 3d, world, voyager, musician, foley, scribe, director
- Specialized: agent, code, guard, embedding
- Infrastructure: engine, gym, family, blog
- Black theme optimized for researchers
- Official zen logo and favicon
- Clean repo with no large files or model weights
2025-10-23 15:46:08 -07:00