Skip to content

Commit

Permalink
Update default value of no_cache to True in main function
Browse files Browse the repository at this point in the history
  • Loading branch information
htahir1 committed Nov 11, 2024
1 parent 537726c commit f007831
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions llm-complete-guide/gh_action_rag.py
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@
"--no-cache",
"no_cache",
is_flag=True,
default=False,
default=True,
help="Disable cache.",
)
@click.option(
Expand Down Expand Up @@ -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,
Expand Down

0 comments on commit f007831

Please sign in to comment.