appQQQ commited on
Commit
ea66b14
·
verified ·
1 Parent(s): 882babf

feat: markdown upload support — app/config.py

Browse files
Files changed (1) hide show
  1. app/config.py +2 -2
app/config.py CHANGED
@@ -104,8 +104,8 @@ class Settings(BaseSettings):
104
  llm_cache_size: int = 200
105
 
106
  # ========== 解析器 ==========
107
- parser_primary: Literal["docling", "marker", "mineru", "vlm"] = "docling"
108
- parser_fallback: Literal["docling", "marker", "mineru", "vlm"] = "marker"
109
  parser_enable_ocr: bool = True
110
  parser_table_structure: bool = True
111
 
 
104
  llm_cache_size: int = 200
105
 
106
  # ========== 解析器 ==========
107
+ parser_primary: Literal["docling", "marker", "mineru", "vlm", "simple", "markdown"] = "docling"
108
+ parser_fallback: Literal["docling", "marker", "mineru", "vlm", "simple", "markdown"] = "marker"
109
  parser_enable_ocr: bool = True
110
  parser_table_structure: bool = True
111