Skip to content

Commit f007831

Browse files
committed
Update default value of no_cache to True in main function
1 parent 537726c commit f007831

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

llm-complete-guide/gh_action_rag.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@
3838
"--no-cache",
3939
"no_cache",
4040
is_flag=True,
41-
default=False,
41+
default=True,
4242
help="Disable cache.",
4343
)
4444
@click.option(
@@ -81,7 +81,7 @@
8181
required=False,
8282
)
8383
def main(
84-
no_cache: bool = False,
84+
no_cache: bool = True,
8585
config: Optional[str] = "rag_local_dev.yaml",
8686
create_template: bool = False,
8787
service_account_id: Optional[str] = None,

0 commit comments

Comments
 (0)