fix: 模型文件不进 git (加 .gitignore, 从索引移除 3.2GB gguf)

模型文件通过 model_manager.rs 清单里的 URL 在线下载,
不随 git 仓库分发。.gitignore 新增 model_download/ model_store/。
This commit is contained in:
2026-07-06 12:34:30 +08:00
parent 0ac4aa31c8
commit 0c625a0c9a

7
.gitignore vendored
View File

@@ -3,3 +3,10 @@ target/
*.swp *.swp
*.swo *.swo
*~ *~
# 模型文件不进 git只保留下载链接在 model_manager.rs 清单里
model_download/
model_store/
# 测试脚本
.test_*.sh
.chat_req.json