Skip to content

Commit

Permalink
Merge pull request PromtEngineer#141 from Tchekda/fix/default-show-so…
Browse files Browse the repository at this point in the history
…urces

fix(run): show_sources default value + description
  • Loading branch information
PromtEngineer authored Jun 13, 2023
2 parents e1b9f9b + fea5eba commit aae4490
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions run_localGPT.py
Original file line number Diff line number Diff line change
Expand Up @@ -112,14 +112,14 @@ def load_model(device_type, model_id, model_basename=None):
)
@click.option(
"--show_sources",
default=True,
default=False,
type=click.Choice(
[
False,
True,
]
),
help="Show sources along with answers (Default is Fals)",
help="Show sources along with answers (Default is False)",
)
def main(device_type, show_sources):
'''
Expand Down

0 comments on commit aae4490

Please sign in to comment.