初始化项目,由ModelHub XC社区提供模型

Model: Dev4285/MiniArt-2.0
Source: Original Platform
This commit is contained in:
ModelHub XC
2026-08-28 05:40:26 +08:00
commit 8ffc55bc71
25 changed files with 1032 additions and 0 deletions

28
upload_to_github.py Normal file
View File

@@ -0,0 +1,28 @@
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()