Skip to content

Commit

Permalink
Removed default.
Browse files Browse the repository at this point in the history
  • Loading branch information
emeryberger committed Mar 23, 2024
1 parent 6b3bf0b commit c26d957
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/coverup/coverup.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,6 @@


PREFIX = 'coverup'
DEFAULT_MODEL='' # Model logic now in main()

# Turn off most logging
litellm.set_verbose = False
Expand Down Expand Up @@ -49,7 +48,7 @@ def Path_dir(value):
ap.add_argument('--no-checkpoint', action='store_const', const=None, dest='checkpoint', default=argparse.SUPPRESS,
help=f'disables checkpoint')

ap.add_argument('--model', type=str, default=DEFAULT_MODEL,
ap.add_argument('--model', type=str,
help='OpenAI model to use')

ap.add_argument('--model-temperature', type=str, default=0,
Expand Down

0 comments on commit c26d957

Please sign in to comment.