소스 검색

feat(llm_aided): add reasonability check and fine-tuning guidelines

- Added instructions for checking the reasonability of heading levels
- Included guidelines for making fine adjustments based on context and logic
- Emphasized the importance of aligning the final result with the document's actual structure
myhloli 10 달 전
부모
커밋
d986e39313
1개의 변경된 파일5개의 추가작업 그리고 0개의 파일을 삭제
  1. 5 0
      magic_pdf/post_proc/llm_aided.py

+ 5 - 0
magic_pdf/post_proc/llm_aided.py

@@ -115,6 +115,11 @@ def llm_aided_title(pdf_info_dict, title_aided_config):
     - 标题层级最多为4级,不要添加过多的层级
     - 优化后的标题只保留代表该标题的层级的整数,不要保留其他信息
     
+5. 合理性检查与微调:
+    - 在完成初步分级后,仔细检查分级结果的合理性
+    - 根据上下文关系和逻辑顺序,对不合理的分级进行微调
+    - 确保最终的分级结果符合文档的实际结构和逻辑
+    
 IMPORTANT: 
 请直接返回优化过的由标题层级组成的json,格式如下:
 {{"0":1,"1":2,"2":2,"3":3}}