From 9b86678d61b089ce4742d08445a033783dd5074d Mon Sep 17 00:00:00 2001 From: --Explosion-- Date: Sun, 25 Jun 2023 05:43:56 -0500 Subject: [PATCH] Allow model string to be changed (Fixes #328) (#329) * I think this would do it * Update main.py --- gpt_engineer/main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gpt_engineer/main.py b/gpt_engineer/main.py index 7e78ae1..9dea702 100644 --- a/gpt_engineer/main.py +++ b/gpt_engineer/main.py @@ -19,7 +19,7 @@ app = typer.Typer() def main( project_path: str = typer.Argument("example", help="path"), delete_existing: bool = typer.Argument(False, help="delete existing files"), - model: str = "gpt-4", + model: str = typer.Argument("gpt-4", help="model id string"), temperature: float = 0.1, steps_config: steps.Config = typer.Option( steps.Config.DEFAULT, "--steps", "-s", help="decide which steps to run"