Skip to content

Commit

Permalink
"--model" now option and not argument
Browse files Browse the repository at this point in the history
  • Loading branch information
ATheorell committed May 22, 2024
1 parent bdc7736 commit 15b559e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion gpt_engineer/applications/cli/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -249,7 +249,7 @@ def prompt_yesno() -> bool:
)
def main(
project_path: str = typer.Argument(".", help="path"),
model: str = typer.Argument("gpt-4o", help="model id string"),
model: str = typer.Option("gpt-4o", "--model", "-m", help="model id string"),
temperature: float = typer.Option(
0.1,
"--temperature",
Expand Down

0 comments on commit 15b559e

Please sign in to comment.