Files
MiniArt-2.0/upload_to_github.py
ModelHub XC 8ffc55bc71 初始化项目,由ModelHub XC社区提供模型
Model: Dev4285/MiniArt-2.0
Source: Original Platform
2026-08-28 05:40:26 +08:00

29 lines
756 B
Python

import os
import sys
def main():
print("=" * 65)
print("GITHUB REPOSITORY RELEASE - Dev4285/MiniArt-2.0")
print("=" * 65)
gh_repo = "Dev4285/MiniArt-2.0"
print(f"[*] Target GitHub Repo: https://github.com/{gh_repo}")
cmds = [
"git init",
"git add .",
'git commit -m "Release MiniArt 2.0 (Reasoning + Vision SLM < 1GB)"',
"git branch -M main",
f"git remote add origin https://github.com/{gh_repo}.git",
"git push -u origin main"
]
print("\n[>] GitHub Release Commands:")
for c in cmds:
print(f" {c}")
print("\n[SUCCESS] Project structure ready for GitHub release!")
if __name__ == "__main__":
main()