Files
AIclinicalresearch/extraction_service/.dockerignore
HaHafeng 06028c6952 feat(pkb): implement complete batch processing workflow and frontend optimization
- Frontend V3 architecture migration to modules/pkb
- Implement three work modes: full-text reading, deep reading, batch processing
- Complete batch processing: template selection, progress display, result export (CSV)
- Integrate Ant Design X Chat component with streaming support
- Add document upload modal with drag-and-drop support
- Optimize UI: multi-line table display, citation formatting, auto-scroll
- Fix 10+ technical issues: API mapping, state sync, form clearing
- Update documentation: development records and module status

Performance: 3 docs batch processing ~17-28s
Status: PKB module now production-ready (90% complete)
2026-01-07 18:23:43 +08:00

70 lines
381 B
Plaintext

# Python
__pycache__/
*.py[cod]
*$py.class
*.so
.Python
venv/
env/
ENV/
.venv
# 测试
.pytest_cache/
.coverage
htmlcov/
*.log
# IDE
.vscode/
.idea/
*.swp
*.swo
# 文档
*.md
docs/
# Git
.git/
.gitignore
# 环境变量
.env
.env.local
# 临时文件
*.tmp
temp/
tmp/
uploads/
# 模型缓存 (避免打包Nougat模型)
.cache/
models/
*.pth
*.pt
*.onnx