Spaces:
Sleeping
Sleeping
feat: markdown upload support — app/config.py
Browse files- 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 |
|