20 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
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