cache_files.py 586 B

12345678910111213141516171819202122
  1. #!/usr/bin/env python
  2. # -*- coding: utf-8 -*-
  3. """
  4. 预定义缓存子目录
  5. 添加新子目录:
  6. 新子目录名 = "子目录路径"
  7. """
  8. # 子目录定义
  9. SUBDIRS = {
  10. "document_temp": "document_temp",
  11. "ai_review_engine": "ai_review_engine",
  12. "ai_response_debug": "ai_response_debug",
  13. "entity_bfp_recall": "entity_bfp_recall",
  14. "filtered_chunks": "filtered_chunks",
  15. "final_result": "final_result",
  16. "outline_result_temp": "outline_result_temp",
  17. "prep_basis_reviewer_temp": "prep_basis_reviewer_temp",
  18. "check_completeness": "check_completeness",
  19. }