From da97b2cf145c86ed577be698ae837b3dc26f6921 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Chlo=C3=A9=20Daems?= <73901882+chloedia@users.noreply.github.com> Date: Tue, 12 Nov 2024 22:35:41 +0100 Subject: [PATCH] fix: modify megaparse strategy (#3474) --- core/quivr_core/config.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/quivr_core/config.py b/core/quivr_core/config.py index 939fe5bebb5d..8ae95d757b74 100644 --- a/core/quivr_core/config.py +++ b/core/quivr_core/config.py @@ -33,7 +33,7 @@ def from_yaml(cls, file_path: str): class MegaparseConfig(MegaparseBaseConfig): method: ParserType = ParserType.UNSTRUCTURED - strategy: StrategyEnum = StrategyEnum.AUTO + strategy: StrategyEnum = StrategyEnum.FAST check_table: bool = False parsing_instruction: str | None = None model_name: str = "gpt-4o"