opencode/.gitignore
Кирилл Блинов 95093736da Add dimension QC, DZI generator, web viewer, and fix RAG query bug
- dimension_qc_checker.py: rules-based QC for dimension chains, overlaps, crowding
- generate_dzi.py: Deep Zoom Image tile pyramid generator for OpenSeadragon
- generate_web_viewer.py: OpenSeadragon viewer with SVG overlays and issue feedback buttons
- rag_query.py: fix LightRAG remove_think_tags crash on None response from LLM
- .gitignore: add *.pdf, *.db, backend/uploads/, backend/outputs/
2026-06-01 12:30:07 +03:00

28 lines
267 B
Plaintext

# Generated outputs
output/
output_123/
lightrag_cache/
vlm_descriptions.json
full_ocr_results.json
# Python
__pycache__/
*.pyc
# Secrets
.env
# Database
*.db
*.sqlite
*.sqlite3
# PDFs and uploads
*.pdf
backend/uploads/
backend/outputs/
# OS
.DS_Store
Thumbs.db