diff --git a/biochatter/llm_connect.py b/biochatter/llm_connect.py index 893b99ec..d4b2fc1b 100644 --- a/biochatter/llm_connect.py +++ b/biochatter/llm_connect.py @@ -77,7 +77,7 @@ def __init__( self, model_name: str, prompts: dict, - correct: bool = True, + correct: bool = False, split_correction: bool = False, use_ragagent_selector: bool = False, ): @@ -458,7 +458,7 @@ def __init__( self, model_name: str, prompts: dict, - correct: bool = True, + correct: bool = False, split_correction: bool = False, ): """ @@ -523,7 +523,7 @@ def __init__( base_url: str, prompts: dict, model_name: str = "auto", - correct: bool = True, + correct: bool = False, split_correction: bool = False, ): """ @@ -891,7 +891,7 @@ def __init__( base_url: str, prompts: dict, model_name: str = "llama3", - correct: bool = True, + correct: bool = False, split_correction: bool = False, ): """ @@ -1095,7 +1095,7 @@ def __init__( self, model_name: str, prompts: dict, - correct: bool = True, + correct: bool = False, split_correction: bool = False, ): """ @@ -1317,7 +1317,7 @@ def __init__( self, model_name: str, prompts: dict, - correct: bool = True, + correct: bool = False, split_correction: bool = False, ): """ @@ -1478,7 +1478,7 @@ def __init__( deployment_name: str, model_name: str, prompts: dict, - correct: bool = True, + correct: bool = False, split_correction: bool = False, version: Optional[str] = None, base_url: Optional[str] = None,