mirror of
https://github.com/zenlm/zen-family.git
synced 2026-07-27 03:09:31 +00:00
- Add LaTeX whitepapers for zen-artist, zen-coder, zen-eco, zen-nano, zen-next, zen-omni - Add Dockerfile, Makefile, docker-compose.yml deployment files - Add docs content: guides, models, architecture reference - Add training/scripts/tools utilities - Update .gitignore: exclude models/, archive/, generated files - Remove AI-generated slop status files
29 lines
845 B
Bash
Executable File
29 lines
845 B
Bash
Executable File
#!/bin/bash
|
|
# Zen Family GitHub Upload Script
|
|
|
|
echo "🚀 Uploading Zen Family to GitHub..."
|
|
|
|
# Add all new files
|
|
git add docs/
|
|
git add ZEN_FAMILY.md
|
|
git add README.md
|
|
git add complete_zen_family_setup.py
|
|
|
|
# Commit changes
|
|
git commit -m "feat: Complete Zen AI Model Family with 10 models and documentation
|
|
|
|
- Added Zen-Artist (text-to-image) and Zen-Artist-Edit (image editing)
|
|
- Added Zen-Scribe (ASR/speech recognition)
|
|
- Created comprehensive LaTeX whitepapers for all 10 models
|
|
- Generated family overview documentation
|
|
- Updated README with complete model lineup
|
|
- Added technical papers in LaTeX and PDF formats
|
|
- Structured documentation in docs/papers/
|
|
- Linked all HuggingFace repositories"
|
|
|
|
# Push to GitHub
|
|
git push origin main
|
|
|
|
echo "✅ Successfully uploaded Zen Family to GitHub!"
|
|
echo "📚 View at: https://github.com/zenlm/zen"
|