模型文件通过 model_manager.rs 清单里的 URL 在线下载, 不随 git 仓库分发。.gitignore 新增 model_download/ model_store/。
13 lines
182 B
Plaintext
13 lines
182 B
Plaintext
target/
|
||
.claude/
|
||
*.swp
|
||
*.swo
|
||
*~
|
||
# 模型文件不进 git,只保留下载链接在 model_manager.rs 清单里
|
||
model_download/
|
||
model_store/
|
||
# 测试脚本
|
||
.test_*.sh
|
||
.chat_req.json
|
||
|