From f0078319b112f19341b03850df5f064b0dbfd865 Mon Sep 17 00:00:00 2001 From: Hamza Tahir Date: Tue, 12 Nov 2024 00:10:47 +0100 Subject: [PATCH] Update default value of no_cache to True in main function --- llm-complete-guide/gh_action_rag.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/llm-complete-guide/gh_action_rag.py b/llm-complete-guide/gh_action_rag.py index 326f100d..cb71ce54 100644 --- a/llm-complete-guide/gh_action_rag.py +++ b/llm-complete-guide/gh_action_rag.py @@ -38,7 +38,7 @@ "--no-cache", "no_cache", is_flag=True, - default=False, + default=True, help="Disable cache.", ) @click.option( @@ -81,7 +81,7 @@ required=False, ) def main( - no_cache: bool = False, + no_cache: bool = True, config: Optional[str] = "rag_local_dev.yaml", create_template: bool = False, service_account_id: Optional[str] = None,