Files
projectAIpopular/.gitignore
T

77 lines
1.3 KiB
Plaintext

# Python
__pycache__/
*.py[cod]
*.egg-info/
.venv/
venv/
.pytest_cache/
.coverage
htmlcov/
# Env / secrets
.env
*.env
api_keys*.json
config/settings.json
# Models / data / runtime
models/
data/
bin/
runs/
*.bin
*.gguf
*.safetensors
cached_results/
# OS / editor
.DS_Store
Thumbs.db
.idea/
.vscode/
# 模型池与智能体运行时
config/model_pool.json
agent_runs/
agent_workspace/
# 智能体工作目录:仅保留标注 README,工作产物不入库
AI代理功能开发/*
!AI代理功能开发/README.md
!AI代理功能开发/方案_校园AI代理层.md
!AI代理功能开发/实施方案_代理层与缓存层.md
# 代理层:课程前缀资料(内容属课程方)与压测原始产物不入库
AI代理功能开发/prefix/
# 参考仓库(本地查阅用,不入库)
deepseek-harness/
research/_refs/
# 工具与网关运行时状态
.mimosa/
.zcode/
_gateway.pid
_gateway.out.log
_gateway.err.log
# 临时调试产物(历次会话残留,保留磁盘文件但隐身)
_check.txt
_diag.txt
_t.txt
_test_out.txt
_run_out.txt
deepseek_reply.txt
response_check.txt
response_output.txt
check_response.py
check_spa.py
e2e_test.py
test_backend_models.py
test_deepseek.py
test_models.py
# e2e 工程 node_modules(源文件入库)
tests/e2e/node_modules/
!AI代理功能开发/实施方案_语义分析器与三级分级.md